Upload FFmpeg output directly to Amazon S3
I am using the fluent-ffmpeg library with node.js to transcode videos originally in a flash movie format to the mp3 format with multiple resolutions, 1080p, etc.. Once the transcoding is complete, I would like to move the transcoded video to an s3 bucket. I pull the original .flv file from a source s3 bucket and pass the stream to the ffmpeg constructor function. The issue is after the transcoding completes, how do I then get the stream of the mp4 data to send to s3. Here is the code I have so far: var params = { Bucket: process.env.SOURCE_BUCKET, Key: fileName }; s3.getObject(params, function