Topic: https://intoli.com/blog/transcoding-on-aws-lambda/?utm_source=last_week_in_AWS
hide preview

What's next? verify your email address for reply notifications!

unverified 6y, 167d ago

This is a really well-written article that gets deep into the tech, thanks. The Exodus tool looks like it will be very helpful for our own binary-bundling for Lambda.

We're using ElasticTranscoder extensively for audio and video on https://images.nasa.gov/ and would love to use FFmpeg on Lambda, but the sizes of our files -- especially video -- are likely to be too large to fit in Lambda's /tmp/ storage. Unfortunately, there's no way to do an NFS mount to something like EFS, nor an S3Fuse to mount S3 objects; curses, foiled again! We've been thinking of having a Lambda launch a Docker to do this work for large files, and your Exodus bundling will come in handy there.

remark link
hide preview

What's next? verify your email address for reply notifications!

evan 6y, 163d ago

Very cool! Could you possibly use a Range request header to download and process different chunks of the video in different function invocations?

hide preview

What's next? verify your email address for reply notifications!