I'm using FFMPEG to upload videos to my server,
I've tested on 1MB file and another one 5MB and it is working correctly, but then I've tested on 6MB and 50MB file and it try to upload but still with "processing" status with no change.
Here is the code which I use
exec("/usr/local/bin/ffmpeg -i ../uploadedvideo/".$image_name." -ab 56 -ar 44100 -b 200 -r 15 -s 240x180 -fs 314572800 -f flv ../uploadedvideo/".$image_namew.".flv");
What could be the problem?