mysoogal Posted April 18, 2009 Share Posted April 18, 2009 hi all, I'm using this tiny script I found online, to convert video.avi to video.flv , I want to change this script little so it encodes every video found in the directory, I also like to change the video format into libx264 and ACC audio output container will be in ogm. Also after videos have been encoded every video will be deleted. so only the encoded video.ogm will be left. can anybody with ffmpeg php experience help me out as much as you can. <?php convertToFlv( "video.avi", "video.flv" ); function convertToFlv( $input, $output ) { echo "Converting $input to $output<br />"; $command = "ffmpeg -i $input -s 320x240 -ar 44100 -r 12 $output"; echo "$command<br />"; shell_exec( $command ); echo "Converted<br />"; } ?> Quote Link to comment Share on other sites More sharing options...
mysoogal Posted April 18, 2009 Author Share Posted April 18, 2009 ops audio should be AAC Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.