我在php中使用以下命令将所有视频转换为flv。它正常工作但转换后质量很差。我希望在转换后保持质量。
$wide=$file['video']['resolution_x'];
$tall=$file['video']['resolution_y'];
exec("ffmpeg -i test.anyformate -ar 22050 -ab 32 -f flv -s ".$wide."x".$tall." flvideo/$vid.flv");
答案 0 :(得分:0)
我相信你可以做到这一点,但你必须自己编译FFmpeg和x264(编解码器)并实现这样的无损转换:
ffmpeg -i input.avi -acodec libfaac -ab 96k -ac 2 -vcodec libx264 -vpre hq -crf 22 -threads 0 output.flv
步骤详述如下:http://ubuntuforums.org/showthread.php?t=1249838&p=7850605#post7850605