plz tell code to convert big lenght movies from any format to .mp4 format.... thnks

link|improve this question
Exactly like short length movies. If you have a problem converting movies, please describe it in more detail – Pekka Apr 21 '11 at 7:41
Have you tried googling php ffmpeg? Try. – bažmegakapa Apr 21 '11 at 7:41
feedback

closed as not a real question by Pekka, bažmegakapa, Treffynnon, mario, Graviton Apr 21 '11 at 8:43

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

exec('ffmpeg -i source_video.avi -b 300 -s 320x240 -vcodec xvid -ab 32 -ar 24000 -acodec aac final_video.mp4');

Consider providing more information.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.