I have a social media website, and I think it will attract a lot of visitors. It allows users to upload images and video. For video, it uploads with PHP then converts it to the right format using Elastic Transcoder. It then stores the files into S3 Buckets. When I upload small videos (less than around 80mb) it works fine. But if I upload like a 150 or 300mb file, the job fails. Can anyone tell me why it happens and how to fix this? I have been stuck on this for the past 2 months.
Asked
Active
Viewed 567 times
0

John Rotenstein
- 241,921
- 22
- 380
- 470

Thomas Lai
- 875
- 4
- 11
- 19
-
what 'fails' upload?, transcodeing? storing? – Jan 07 '14 at 02:46
-
it uploads, but doesn't transcode successfully – Thomas Lai Jan 07 '14 at 03:11
-
This sounds like a question for the [Amazon Transcoder forum](https://forums.aws.amazon.com/forum.jspa?forumID=147) or perhaps [AWS Support](https://aws.amazon.com/support), not one that can be solved on Stack Overflow. – Jeremy Lindblom Jan 07 '14 at 05:53
-
sure, I'll ask there too – Thomas Lai Jan 07 '14 at 06:06
-
Did you got the answer? I'm facing the same issue. – Asad Zaman Sep 30 '20 at 07:27
1 Answers
0
Could be a few issues;
- Your PHP script is timing out, do you need to set a higher time out limit for that script?
- Max POST size is too small, you may need to edit the PHP config to increase POST OR Memory limits.
Also you should check the PHP and Apache logs to see if anything odd is occurring.

Harry Beasant
- 1,014
- 8
- 18
-
sorry, neither of those is it. I forgot to mention, it uploads the uploaded file to an S3 bucket first and elastic transcoder pulls it from there. I can see it in the s3 bucket – Thomas Lai Jan 07 '14 at 03:11