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
0 answers

Amazon Transcribe Medical - Sample Rate Not Supported

I have a handfull of files with a sample rate of 8000hz and 11025hz. Amazon's own documentation indicates that the valid MediaSampleRateHertz is between 8000 - 48000 (inclusive, judging by examples). However running a media transcribe job (both via…
Gavin
  • 2,214
  • 2
  • 18
  • 26
1
vote
1 answer

Remove special characters from S3 object key for Transcribe job

This is the very first Lambda function I have created and I have never written a line of Python before today. I do have programming experience in Salesforce's APEX language so I can understand most of this. I have this Lambda function that grabs an…
Matt M
  • 127
  • 4
1
vote
1 answer

'Media Format' for '.caf' file in Amazon Transcribe

I have a React Native (Expo) app which captures audio using the expo-av library. It then uploads the audio file to Amazon S3, and then Transcribes that in Amazon Transcribe. For Android , i save the audio as a '.m4a' file, and call the Amazon…
Chakra
  • 2,525
  • 8
  • 43
  • 82
1
vote
1 answer

Best way to stream or load audio files into S3 bucket (contact centre recordings)

What is the best way to with reliability get our client to send audio files to our S3 bucket that will process the audio files (ML processes that will do speech-to-text-insights)? The files could be in .wav / mp3 other such audio formats. Also, some…
1
vote
2 answers

Aws Transribe unable to start_transcription_job without LanguageCode in boto3

I have an audio file in S3. I don't know the language of the audio file. So I need to use IdentifyLanguage for start_transcription_job(). LanguageCode will be blank since I don't know the language of the audio file. Envirionment Using Python 3.8…
ken
  • 2,426
  • 5
  • 43
  • 98
1
vote
0 answers

Is their any way for transcribe an large audio file by python and librosa?

I am trying to do by so many platform. Firstly i tried with speech recognition module but this is not working. Secondly i tried with wit.ai but it can't process large file. At lastly i tried with aws transcribe but I have a student account so I…
1
vote
1 answer

Streaming audio mic data to aws transcribe in node

I'm attempting to write a node application that transcribes audio from a microphone via AWS' streaming transcription service. What I have so far can be found in this repository (it's small). Unfortunately the above doesn't work. I believe there's…
1
vote
1 answer

trying to get AWS Transcribe output into readable format

I'm trying to use t.scribe to transcribe an AWS transcription. pip install tscribe Successfully installed aws-transcribe-transcript-master istrauss$ tscribe.write("gabi.json", format="docx") -bash: syntax error near unexpected token…
codi6
  • 516
  • 1
  • 3
  • 18
1
vote
2 answers

AWS transcribe: How to give a path to output folder

I am using aws transcribe to get the text of the video using node js. I can specify the particular destination bucket in params but not the particular folder. Can anyone help me with this ? This is my code var params = { LanguageCode:…
Haris George
  • 291
  • 5
  • 16
1
vote
1 answer

AWS Transcribe API: 400 Bad Request

I have a problem with AWS Transcribe I try use it by PHP. My credentials have the full access for AWS tools. I have the this code: $response = $this->client->startTranscriptionJob([ 'LanguageCode' => 'en-US', 'Media' => [ …
Aro
  • 1,078
  • 1
  • 7
  • 26
1
vote
1 answer

AWS Transcribe Java SDK: Internal Failure. Please try your request again

I have integrated AWS Java SDK in my applcaition.Unfoutunately am getting "Internal Failure. Please try your request again" as the response. This is how I have implemeneted it. Using Maven, added this in pom.xml
Abin George
  • 644
  • 6
  • 21
1
vote
1 answer

AWS Transcribe stuck in getTranscriptionJob in iOS

I'm trying to use AWS Transcribe in an iOS app using the aws-sdk-ios. The app starts a transcription job and I can see the job on the AWS console. But the app can't list the jobs, or get a specific job, because it gets stuck in the request to…
João Souza
  • 4,032
  • 3
  • 25
  • 38
1
vote
1 answer

CloudWatch Events trigger on Amazon Transcribe event

I'm working with the Amazon Transcribe service and trying to get CloudWatch Events to fire a Lambda function that executes a POST request to my API. Here's the Lambda function var querystring = require('querystring'); var http =…
Steven Grant
  • 1,236
  • 3
  • 15
  • 32
1
vote
2 answers

How to improve the transcription quality in AWS Transcribe

I have the few audio files which are the conversation between Customer and Agent stored successfully in S3. I try to convert the audio files as text using AWS transcribe and it is converting successfully. But the weird part is, It is not even 60 %…
Harry
  • 3,072
  • 6
  • 43
  • 100
1
vote
0 answers

Add throttling exception handling

I need to add some code to handle throttling limit exceeded exceptions that would implement a wait time between retry attempts. For example, a 60 second wait before retrying to start the transcription job. I have tried by increasing retry attempts…
Roy Ludwig
  • 11
  • 2