Is there a way to setup a trigger so that when a new file is uploaded in "Bucket A", AWS will transcribe the audio immediately?
Currently, I will have to manually transcribe which is not ideal.
Thanks!
Is there a way to setup a trigger so that when a new file is uploaded in "Bucket A", AWS will transcribe the audio immediately?
Currently, I will have to manually transcribe which is not ideal.
Thanks!
I don't believe there is any native support for this today, but you could set this up pretty easily using S3 Bucket Notifications to trigger a Lambda function that then calls AWS transcribe.
S3 Bucket -> Uploaded Object -> S3 Bucket Notification -> Lambda -> AWS Transcribe
Setting up Bucket notifications to Lambda: Using AWS Lambda with Amazon S3 - AWS Lambda
And then you'd simply call the AWS Transcribe API (JS SDK): Class: AWS.TranscribeService — AWS SDK for JavaScript