http://www.grindplay.com/templates_c/debug.txt
The command used to convert video is
Code:
/usr/bin/mencoder /home/grind/public_html/video/7.mpg -o /home/grind/public_html/flvideo/7.flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -srate 22050 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames
Try running it from command prompt and see if that works.
If you don't have ssh access, create a PHP file with following text
Code:
<?php
$last_line = system("/usr/bin/mencoder /home/grind/public_html/video/7.mpg -o /home/grind/public_html/flvideo/7.flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -srate 22050 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames", $retval);
echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;
?>
Upload it to server and run to see if there is any error.
Bookmarks