<html>
<body bgcolor="Black" text="White">
<?php

$convert_command = "/usr/bin/mencoder '/home/rpgnstre/public_html/video/doawins2.avi' -o /home/rpgnstre/public_html/flvideo/11881589291825703661.flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:l ast_pred=3 -srate 22050 -lavfopts i_certify_that_my_video_stream_does_not_use_b_fram es";

$var = exec($convert_command,$exec_result);

echo "<pre>";
for($i=0;$i<count($exec_result);$i++){
echo $exec_result[$i] . "
";
}


?>
</body>
</html>
Is what is in there.