Speech to Text using AWS Transcribe, S3 and Lambda

By Medium - 2021-02-18

Description

Speech to text is the process of converting audio to text. For computer software and programs, audio files are near impossible to be used for visualization/analysis or to harvest data out of it in a…

Summary

  • Speech to text using AWS Transcribe, S3, Lambda, and output notifications using SNS and CloudWatch Events.
  • Send an email with the transcription job details when the transcription is completed using CloudWatch events.
  • Select Python as the Runtime and on the Execution role select the role we created above.
  • AWS S3 Event Trigger The main idea is to trigger our SNS topic whenever there is a new file uploaded by the AWS Transcribe Service to our output S3 bucket.

 

Topics

  1. Backend (0.24)
  2. NLP (0.17)
  3. Coding (0.07)

Similar Articles

How to Build a Serverless Application Using AWS SAM

By freeCodeCamp.org - 2020-10-19

In my previous article, I talked about how AWS Chalice helps you quickly build a Python-based serverless application and deploy it on AWS within a few minutes. While it was a quick and fun prototype, ...