Support AWS's Transcribe Service
xelldran1 opened this issue · 4 comments
xelldran1 commented
Is your feature request related to a problem? Please describe.
I would like to use AWS's Transcribe as one of the STT APIs.
Describe the solution you'd like
Please implement AWS Transcribe as one of the STT APIs
Describe alternatives you've considered
There are other services which do this, including Google's Cloud Speech to Text.
Additional context
https://aws.amazon.com/transcribe/resources/
pietrop commented
Thanks @xelldran1 , was looking at the documentation do you know if they have a node SDK?
pietrop commented
found SDK
but seems like media can only be added as uri?
Media: { /* required */
MediaFileUri: 'STRING_VALUE'
},
pietrop commented
Raised as an issue on AWS SDK repo aws/aws-sdk-js#2374
pietrop commented
Otherwise the alternative might need to be that would need to write as part of the autoEdit2 adapter module that
- uses the sdk to upload to an S3 bucket(possibly even creating a new one?)
- upload the file
- and then when uploaded use the URL of the uploaded file to call the transcription service
- when transcription done delete the file from S3 bucket (and potentially S3 bucket as well?)