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
17
votes
4 answers

Amazon Transcribe Streaming service request in Node.js with Http/2 gives no response

I am trying to use Amazon Transcribe Streaming Service with a http2 request from Node.js, Here is the documentation links that I am following Streaming request format. According to this document end point is…
Manoj
  • 983
  • 12
  • 23
14
votes
4 answers

Amazon Transcribe Streaming API without SDK

I am trying to use Amazon's new streaming transcribe API from Go 1.11. Currently Amazon provides Java SDK only so I am trying the low-level way. The only relevant piece of documentation is here but it does not show the endpoint. I have found it in a…
shelll
  • 3,234
  • 3
  • 33
  • 67
11
votes
1 answer

Read a JSON from AWS S3 Using JavaScript

I have this link to an AWS S3 bucket, which automatically downloads the JSON I need. Just to clarify, the JSON isn't displayed on the web page itself. I want to load the data into JavaScript from the link I currently have. I've tried using the…
5
votes
0 answers

AWS Transcribtion Issue of file format

I am new for using Amazon Transcribe . I upload a audio in mp3 format and save it my bucket . But when i paste the link in Transcribtion Job . Always got error "The media format provided does not match the detected media format" but my in drop down…
4
votes
0 answers

How to use the TranscribeStreamingClient in the browser with credentials

I want to be able to offer a RT transcription in my browser app using AWS transcribe. I see there is the TranscribeStreamingClient which can have credentials for AWS which are optional - I assume these credentials are required for access to the s3…
4
votes
2 answers

AWS Transcribe Streaming BadRequestException: "Could not decode the audio stream..."

I'm building a Transcribe Streaming app in Dart/Flutter with websockets. When I stream the test audio (pulled from a mono, 16kHz, 16bit signed little endian WAV file), I get... BadRequestException: Could not decode the audio stream that you…
Hari Honor
  • 8,677
  • 8
  • 51
  • 54
4
votes
1 answer

How to get live Speech to Text using AWS Transcribe in android?

I want to convert the Live speech of the user to text using AWS Transcribe API. For some reason, there is no proper documentation on how it is to be done in android. This is the link to do it in an inefficient manner Speech to text by AWS service…
4
votes
1 answer

Amazon Transcribe and Golang SDK BadRequestException

I uploaded a .flac file to an Amazon S3 bucket but when I try to transcribe the audio using the Amazon Transcribe Golang SDK I get the error below. I tried making the .flac file in the S3 bucket public but still get the same error, so I don't think…
4
votes
2 answers

Amazon Transcribe Streaming Service Speech to text for .NET SDK

I am not able to find any references for transcribe streaming service (from speech to text ) in AWS .NET SDK . Is it available in .NET SDK Amazon Transcribe Streaming Service ? Any references would be helpful
4
votes
0 answers

Amazon Transcribe converting .json transcript

I'm trying to convert the Amazon Transcribe .json transcript into a more readable transcript (ie. one that separates the text by speaker), How can this be done?
4
votes
5 answers

How to delete a transcribe job in Amazon Transcribe

Do I need to delete a few transcribe jobs that I created using Amazon Transcribe service? I'm using amazon transcribe for the first time to get a text from the video, it works fine but I didn't find anything there how to delete the particular…
satya
  • 152
  • 2
  • 8
3
votes
1 answer

Getting BadRequestException in AWS Transcribe realtime

I am getting this response from amazon streaming api. Can anybody please help me on it what thing I am doing wrong over…
3
votes
1 answer

Amazon Transcribe on S3 Upload: "[ERROR] BadRequestException: URI provided doesn't point to an S3 object"

I'm trying out Amazon Transcribe on a collection of media files, adapting the sample docs code and using this series as a reference to fit with any upload to my designated media S3 folder, but having issues with my test file. UPLOAD BUCKET/FOLDER…
3
votes
0 answers

How to streaming data with POST request HTTP/2 AWS API in Nodejs?

I'm creating a NodeJs script to transcribe my recording file in real-time with Amazon Transcribe Service. They have AWS SDK for javascript (aws-sdk-js) Here But this js SDK hasn't yet implement start streaming transcription. However, they have a API…
2
votes
0 answers

Object is not async iterable error while using @aws-sdk/client-transcribe-streaming and React Native

Has anyone had any luck attempting to use client-transcribe-streaming in React native? I'm trying to stream audio from the device microphone to get a transcription from AWS. When I attempt to begin a transcription I get the error TypeError: Object…
1
2 3
9 10