The Little Guy Posted March 3, 2008 Share Posted March 3, 2008 Why does my FFMPEG successfully convert some files to a flv format, but not others? it will convert some mpg file, but not others. Why? Does it have to do with my execution code? <?php // The following file names are examples: // $dir = directory name // $fileName = myfile.mpg (or some other video file name/extension) // $flvName = myfile.flv exec ("/usr/bin/ffmpeg -i '../../tzfiles.com/users/$dir/$fileName' -sameq -qmax 100 -s 320x240 -aspect 4:3 '../../tzfiles.com/users/$dir/$flvName'"); ?> Could it be that it doesn't have the codecs installed that the mpg files require? What happens, is when I upload the file, it will run the file successfully, Which it uploads the original mpg file, then converts it to a flv file, then deltes the mpg file. It does all of that, but the flv file is 0 bytes long. Any reason why this could happen? Link to comment https://forums.phpfreaks.com/topic/94180-ffmpeg-file-convert-problem/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.