This is a serverless component that takes uploaded AAC, WAV audio files from one S3 Bucket, then using FFMPEG Lambda Layer converts them to MP3 and uploads to another S3 Bucket. It contains:
-
an Input S3 Bucket that accepts WAV,AAC audio files.
-
a Lambda that takes the WAV/AAC audio file from the Input S3 bucket, converts it to a MP3 one and uploads it to the Output bucket
-
an Output S3 Bucket that receives MP3 files.
This component has one CloudFormation deployment parameter:
ConversionTimeout
, an optional parameter, represents the timeout of the Conversion Lambda function. By default it's 180 seconds.QualityLevel
, a required parameter, represents the quality level for the output MP3. Its a range 0-9, where a lower value is a higher quality. By default it's 9 -> minimal quality.
- Initial release.
Here are the upcoming changes that I'll add to this serverless component:
- ESLint
- Tests