code:<?php convertToFlv( "test.avi", "test.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 />"; } ?>