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
0
votes
1 answer

AWS transcribe Unable to load credentials from any of the providers in the chain AwsCredentialsProviderChain

I am running a java program that uses AWS TranscribeStreaming. I have created(from AWS console) and downloaded AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY then set the environment variables. When I run the program I am getting error message: Unable…
sidibe
  • 51
  • 5
0
votes
1 answer

Is there another way around than using Amazon s3 storage for Amazon Transcribe?

I need to transcribe a series of videos to text for one of my applications. Is there any way of using local storage to proceed with a transcription job in Amazon transcribe?
0
votes
1 answer

Transcribing with Custom Language Model (python API) in AWS - ModelSettings error

I am trying to transcribe speech using Custom Language Model using Python API. I followed the example script available on the AWS webpage. However, it throws the following error, saying it doesn't support the 'LanguageModelName' parameter under…
eracube
  • 2,484
  • 2
  • 15
  • 18
0
votes
2 answers

Unable to import module 'lambda_function': No module named '_awscrt'

I'm working with this article Asynchronous Amazon Transcribe Streaming SDK for Python. I'm trying to create a lambda layer for the required libraries. I used the following command: pip3 install amazon-transcribe aiofile -t . But I get the following…
0
votes
1 answer

Custom vocabulary with AWS Transcribe- Japanese Language in AWS

While using aws transcriber, I want to create custom vocab but Not able to create custom vocabulary with Japanese words and nor able to find any sample of custom vocab phrases file. Tried character code from the table and the direct japanese words…
Lovika
  • 577
  • 2
  • 10
  • 21
0
votes
2 answers

AWS Transcript: file to text returns nonsense

This is a follow-on question to AWS Transcribe S3 .wav file to text. I use a stream to read and send a .wav file contents to AWS. Instead of getting back the correct transcript, I get nonsense like a bunch of "Yeah." statements. It looks like AWS…
thebiggestlebowski
  • 2,610
  • 1
  • 33
  • 30
0
votes
2 answers

AWS Transcribe S3 .wav file to text

I am trying to use aws Transcribe to convert a wav file to text. I have uploaded a wav file to S3, which is located here and it has public read/write permissions:…
0
votes
1 answer

Amazon Transcribe - Should I use audio pre-processing or does Amazon do that?

I'm currently experimenting with the Amazon Transcribe service and I'm wondering if I should pre-process the audio files before sending them to Amazon Transcribe. I couldn't find anything in the documentation so I would assume they don't apply any…
Shamshiel
  • 2,051
  • 3
  • 31
  • 50
0
votes
1 answer

Rails ActiveJob can't load aws-sdk-transcribeservice

In my Rails application, I need to use AWS Transcribe service. But, when I tried to create the AWS client from inside ActiveJob, the Sidekiq log always gives me NameError: uninitialized constant Aws::TranscribeService. But, when I tried to create…
0
votes
1 answer

AWS transcription job does not complete after lambda returns

I am trying to launch an async transcription job inside a lambda. I have a cloudwatch event configured that should trigger on completion of the transcription job; So that I can perform some action on job completion in a different lambda. But the…
ivish
  • 572
  • 11
  • 35
0
votes
0 answers

python tscribe module - KeyError: 'confidence' while exporting redacted content

I am facing the KeyError: 'confidence' while trying to export the redacted content to Word docx using python tscribe module. File "transcribe_script.py", line 124, in export_files tscribe.write(json_file_path, format="docx", save_as=…
Shufyan
  • 21
  • 5
0
votes
1 answer

Is their any way to connect vocareum (aws student portal) with Python?

I have tried to do with boto3 but boto3 redirected to the main portal of AWS not on vocareum. first it give me error that couldn't connect to the server and now it is ClientError: An error occurred (InvalidAccessKeyId) when calling the ListBuckets…
0
votes
1 answer

aws Transcribe medical - The requested language doesn't support the specified sample rate. Use the correct sample rate then try again

I am attempting to use web-sockets to convert in real time medical conversations to text. I have based my work off of https://github.com/aws-samples/amazon-transcribe-websocket-static. It is working great until I change to the medical endpoint. At…
Tim Long
  • 393
  • 1
  • 5
  • 17
0
votes
1 answer

how to transcribe from s3 server side encryption customer provided key

I am using boto3 with my flask application to upload file in a s3 bucket with server side encryption customer provided key. I tried start_transcription_job from encrypted s3 file but i have an exception s3_client.upload_file(filename, BUCKET,…
0
votes
1 answer

Correct way to send an mp3 file in Python without losing any meta-data. (Base64 or otherwise) |AWS Lambda | S3 | Transcribe | Base64 |

I'm trying to make a simple pipeline using AWS Transcribe, a speech to text service provided by Amazon. It takes as an input an mp3 or wav (among other formats). While trying to build a kind of API that could take an MP3 from a frontend, I…
fibonachoceres
  • 727
  • 4
  • 14