This is a Text-to-Speech (TTS) application that converts input text into an MP3 file using AWS Polly and stores it in an S3 bucket. The application provides a REST API that accepts text as input and returns a presigned URL for the generated audio file.
The architecture consists of the following components:
-
Mobile Application: The user initiates the text-to-speech conversion by clicking the "Convert" button in the mobile application.
-
REST API: The mobile application communicates with a REST API, sending a JSON payload with the input text. The API triggers an AWS Lambda function to process the request.
-
AWS Lambda Function: The Lambda function receives the text input, uses AWS Polly to convert it into an MP3 file, and then uploads the file to an S3 bucket. It generates a presigned URL for the stored MP3 file and returns it to the mobile application.
-
Amazon Polly: AWS Polly is used for text-to-speech conversion.
-
Amazon S3: The generated MP3 files are stored in an S3 bucket.