I am processing some video with ffmpeg and then firing the video up to S3 with the aws_s3 gem. I use the following code:
S3Object.store("testme.mp4", open(file), 'blah', :access => :public_read)
Everything works great but with files of 1GB and over I receive the following error:
"Timeout::Error: execution expired".
This only happens after ffmpeg has processed the file however. If I send the file on its own, without processing, then everything is fine.
Has anyone come across a similar issue?
Thanks,
SLothistype