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 />"; } ?> Link to comment https://forums.phpfreaks.com/topic/154678-ffmpeg-php-encoding/ Share on other sites More sharing options...
mysoogal Posted April 18, 2009 Author Share Posted April 18, 2009 ops audio should be AAC Link to comment https://forums.phpfreaks.com/topic/154678-ffmpeg-php-encoding/#findComment-813383 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.