when i Upload any vid, it just copy it to the video folder with the same extention, no convertion are released, and no thumb.

Ok i was reading the posts, and i make the convert.php test.

Here is what i got from my server

Warning: system() has been disabled for security reasons in /home/bside79/public_html/convert.php on line 3
Last line of the output: Return value:


here what i have on debug.txt ( templates_c )

CONVERT COMMAND:

/usr/local/bin/ffmpeg -i /home/bside79/public_html/video/12.wmv -acodec mp3 -ar 22050 -ab 32 -f flv /home/bside79/public_html/flvideo/12.flv


UPDATE VIDEO SQL:
update video set

vdoname='12.wmv',

flvdoname='12.flv',

duration='70.346' WHERE VID=12


------------------------------------------
here is my video_conversion.php

--- start video_conversion.php -----------

<?php

$cmd_ffmpeg = "$config[ffmpeg] -i $video_src -acodec mp3 -ar 22050 -ab 32 -f flv $video_flv";

$cmd_all = $cmd_ffmpeg;


$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;
?>

-- end video_conversion.php ----------------------------



Im using a ffmpeg ready hosting

http://enetlogic.com/ffmpeg-hosting.htm



my site is

http://www.estutorial.com


Any idea ?

Thanks in advance