
20.01.2009, 21:30
|
|
Pagan Heart
Регистрация: 12.08.2004
Сообщений: 3,791
Провел на форуме: 6490435
Репутация:
2290
|
|
PHP код:
function video_convert_to_flv($input, $output="output.flv", $custom=false) {
if (!$custom) {
$custom = array(56, 300, 320, 240);
}
$command = sprintf('mencoder "%s" -o "%s" -of lavf -oac mp3lame -lameopts ' .
'abr:br=%d -srate 22050 -ovc lavc -lavcopts vcodec=flv:vbitrate=%d:mbd=2:' .
'mv0:trell:v4mv:cbp:last_pred=3 scale=%d:%d',
$input, $output, $custom[0], $custom[1], $custom[2], $custom[3]);
run($command);
run("flvtool2 -UP \"$output\""); // update metadata
}
|
|
|