Should look in your /include/settings/video_conversion.php file:
It should look like this:
Code:
<?php
# Allowed File Types
$file_types = array("flv","3gp","mp4","mov","asf","mpg","avi","mpeg","wmv","rm","dat");
$convert_all = "$config[mencoder] $video_src -o $video_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";
$convert_3gp = $convert_all;
$convert_mp4 = $convert_all;
$convert_mov = $convert_all;
$convert_asf = $convert_all;
$convert_mpg = $convert_all;
$convert_avi = $convert_all;
$convert_mpeg = $convert_all;
$convert_wmv = $convert_all;
$convert_rm = $convert_all;
$convert_dat = $convert_all;
Files that are supported are in this array:
$file_types = array("flv","3gp","mp4","mov","asf","mpg","avi","m peg","wmv","rm","dat")
Bookmarks