DEV Community

Discussion on: How we reduced costs by switching from AWS MediaConvert to a Golang service

Collapse
 
robzer profile image
robzer

I've built something similar but using ECS Fargate running a linux container and with a simple bash script I was able to read the source video file from S3, process it using ffmpeg CLI and then upload the output on another S3 bucket

I've done a few tests manually and it's working perfectly fine, but I'm not sure how robust it is on a bigger scale

Did you considered this option too ?