- I have ffmpeg installed
- safe_mode is off
- when i do this:
$movie = new ffmpeg_movie('Bear.wmv');I can use getDuration(), getFilename().... wthout any problems, so it's all seems to be working - exec is working fine, cos when i do:
$output = exec('ls -lart');I get a nice little result.
but when I do this:
exec('ffmpeg -i Bear.wmv outputfile.flv')
nothing happens
if I add: $command_output, $result
the only result i guess is: array { }
I have tried everything I could think of:
exec('ffmpeg -i Bear.wmv outputfile.flv')
exec('ffmpeg.so -i Bear.wmv outputfile.flv')
exec('/usr/lib/php5/20090626/ffmpeg -i Bear.wmv outputfile.flv')
I've tried all sizes and folders and codecs but still don't get anything back
All i wanna do is convert that video, Bear.wmv to an flv file.
I'm very close to crying like a baby and/or jumping out of the window (im only on the first floor but still lol) so Please help!!??!