hello all,
how to do video compression using ffmpeg
php ffmpeg compression video issue
Moderator: General Moderators
php ffmpeg compression video issue
Last edited by jeevanism on Sun Jan 29, 2012 12:35 am, edited 3 times in total.
Re: php ffmpeg compression video issue
What is the actual command you are using? You can convert one video after another using the && operator. You probably also want the process to fork so your php script doesn't have to wait for output. You can do that by adding "> /dev/null &" to the end.
Code: Select all
ffmpeg ... && ffmpeg ... > /dev/null &
Last edited by tr0gd0rr on Mon Jan 30, 2012 10:01 am, edited 1 time in total.
Re: php ffmpeg compression video issue
I will try this and post the result. thanx for the response.