It sounds like there is something wrong with your video_conversion.php file. That is also why you recived the "uploaded successfully" message. Can you copy and past the /include/settings/video_conversion.php code or upload the file so that I can check.

Also....

1. What dose the status say in your Process Queue in your admin panel?

2. Did you add the code below at the end of your video_conversion.php file?

Code:
$convert_flv = $cmd_all;

3. The
/include/settings/flvid.log file is a more detail conversion log that is created during the video conversion and for some reason it is not being created.


This is my video_conversion.php file code

Code:
<?php

//ffmpegflv - ffmpeg codec 11-2-10 converts to .flv With Watermark
$cmd_ffmpegflv = "$config[ffmpeg] -i '$video_src' -s 320x240 -f flv -b 600k -acodec libfaac -ab 16k -vf 'movie=0:png:/home/YOUR CPANEL NAME/public_html/include/settings/watermark_flvideo.png [wm];[in][wm] overlay=1:0:0 [out]' $video_flv > /home/YOUR CPANEL NAME/public_html/include/settings/flvid.log 2>&1 ";

$cmd_all = $cmd_ffmpegflv;

$convert_3gp = $cmd_all;
$convert_mp4 = $cmd_all;
$convert_mov = $cmd_all;
$convert_asf = $cmd_all;
$convert_mpg = $cmd_all;
$convert_avi = $cmd_all;
$convert_mpeg = $cmd_all;
$convert_wmv = $cmd_all;
$convert_rm = $cmd_all;
$convert_dat = $cmd_all;
$convert_flv = $cmd_all;