Page 1 of 1

php ffmpeg compression video issue

Posted: Thu Jan 26, 2012 8:36 pm
by jeevanism
hello all,

how to do video compression using ffmpeg

Re: php ffmpeg compression video issue

Posted: Fri Jan 27, 2012 1:14 pm
by tr0gd0rr
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 &

Re: php ffmpeg compression video issue

Posted: Sat Jan 28, 2012 3:28 am
by jeevanism
I will try this and post the result. thanx for the response.