Questions tagged [amazon-transcribe]

Amazon Transcribe is a speech recognition service within AWS for speech-to-text-capability. Using the Amazon Transcribe API, you can analyze audio files stored in Amazon S3 and have the service return a text file of the transcribed speech.

Amazon Transcribe is an automatic speech recognition (ASR) service that makes it easy for developers to add speech-to-text capability to their applications. Using the Amazon Transcribe API, you can analyze audio files stored in Amazon S3 and have the service return a text file of the transcribed speech.

Amazon Transcribe can be used for lots of common applications, including the transcription of customer service calls and generating subtitles on audio and video content. The service can transcribe audio files stored in common formats, like WAV and MP3, with time stamps for every word so that you can easily locate the audio in the original source by searching for the text. Amazon Transcribe is continually learning and improving to keep pace with the evolution of language.

Resources:

144 questions
1
vote
2 answers

Lambda automatically deletes transcribe job upon completion

I am looking to edit my lambda so it will delete the transcription job when it's job status reads "Complete". I have the following code: import json import time import boto3 from urllib.request import urlopen def…
1
vote
1 answer

How to delete all AWS Transcribe Jobs at once through CLI?

I am trying to delete all of my AWS Transcribe jobs at the same time. I know I can go through and delete them one by one through the console, and I can also delete them all through the CLI through the following command: $ aws transcribe…
1
vote
1 answer

Problem configuring output S3 bucket for allowing AWS Transcribe to store transcription results

I am trying to configure a job transcription within AWS Transcribe so that the result is automatically stored in a S3 Bucket. aws transcribe start-transcription-job --transcription-job-name testingTranscription \ --language-code pt-BR…
jmhal
  • 11
  • 4
1
vote
1 answer

Importing JSON file into DynamoDB

I am new to AWS, DynamoDB, and Python so I am struggling with accomplishing this task. I am using Amazon Transcribe with video and getting output in a JSON file. I then wish to store this data in DynamoDB. Currently I am using a Lambda function to…
1
vote
0 answers

How to sign AWS transcribestreaming request

Can you tell me is there any documentation about how a request signature should be generated, for the transcribestreaming service? Wondering specifically about how the payload body should be evaluated. Should it be based on the first frame of…
1
vote
1 answer

IAM policy on S3 bucket

I always get confused in two but I wanted to add a IAM policy on S3 bucket. Basically I have created an output bucket for Amazon transcriptions but it seems I need to add IAM role to allow Transcription job to write to the bucket. I think if I can…
1
vote
1 answer

AWS Transcribe through AWS CLI

I am able to use AWS S3 service through the AWS CLI like so: aws s3 cp FileToUpload.txt s3://MyBucketName/file.txt How can I make use of AWS transcribe service? Looking through google takes me…
Tono Nam
  • 34,064
  • 78
  • 298
  • 470
1
vote
1 answer

AWS Transcribe PHP API 3.0 - Can't Initialize API

I am trying to initialize API for AWS Transcribe, but the documentation doesn't seem to be clear. My code is:
David Eisen
  • 281
  • 4
  • 13
1
vote
1 answer

AWS SDK for PHP Wait for Transcribe job until the status is "COMPLETED"

So i've been looking into the Promises and Waiters, and i was wondering if there is a way to start a Transcription Job, while providing a callback, so it would tick (periodically check by itself) until the result of the Transcription would be …
1
vote
2 answers

AWS Transcribe javascript API UnexpectedParameter: Unexpected key 'OutputBucketName' found in params

I am calling the AWS Transcribe service from a Lambda Lambda code: module.exports.createTranscribeJob = (event, context, callback) => { const region = event.Records[0].awsRegion; const bucket = event.Records[0].s3.bucket.name; const key =…
1
vote
1 answer

Check the transcription job status

I encounter an exception with Amazon Transcribe when I try to get the transcription result. I haven't found a way to pass a callback or receive a notification when the transcription is done. So I regularly check if the result is available. Here is…
Jeankowkow
  • 814
  • 13
  • 33
1
vote
1 answer

Getting aws transcribe responses before Lambda Function times out

I hava a AWS Lambda function written in Java. This function starts a TranscriptionJob and then wait for the response like so: while( true ){ transcriptionJob = awsClient.getTranscriptionJob(getJobRequest).getTranscriptionJob(); if(…
Sip
  • 373
  • 1
  • 6
  • 22
0
votes
0 answers

startTranscriptionJob error: "The specified S3 bucket can't be accessed. Make sure you have write permission on the bucket and try your request again"

I have a lambda in account A that tries transcribing a recording in account B. I attempted to perform this action via console and it works but when I try to do it via AWS SDK v3 (node js) I get the following error: The specified S3 bucket can't be…
0
votes
0 answers

How to get audio stream from Twilio Video and send it to AWS Transcribe?

I'm trying to create a Voice to text app using the Twilio Video service with AWS Transcribe. I saw examples with Twilio Calls + Twilio Media Stream + Google\AWS Transcribe, but I'm not sure that media stream will work with Twilio Video. Is there any…
0
votes
0 answers

AWS Transcribe : Word to Word Synchronisation

I am using stream processing to transcribe the audio to text which is working fine. Now I want to have the word to word synchronisation so that transcribe should be in sync with the audio coming in. Say at 1 sec is "Hello" 1.4sec "How" etc var st…
Prany
  • 2,078
  • 2
  • 13
  • 31