Quote:
Originally Posted by fris
what do you need help with?
|
I'm actually just trying to get a listing of video information onto a page, it's supposed to be just "ffmpeg -i file.flv" but I think that is only for ssh? I need something like:
Quote:
print exec("ffmpeg -i file.flv");
|
But that doesn't work, I do have this:
Quote:
print exec("mplayer -identify file.flv -ao null -vo null -frames 0 2>/dev/null | grep ^ID_");
|
But it will only print 1 value that I specify and not all the information.