Home  >  Article  >  Backend Development  >  php使用memcoder将视频转成mp4格式的方法_php技巧

php使用memcoder将视频转成mp4格式的方法_php技巧

WBOY
WBOYOriginal
2016-05-16 20:21:211994browse

本文实例讲述了php使用memcoder将视频转成mp4格式的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:
convertTo( "some-input-video.avi", "output.mp4" );
function convertTo( $input, $output ) {
   echo "Converting $input to $output
";
   $command = "mencoder $input -o $output -af volume=10 -aspect 16:9 -of avi -noodml -ovc x264 -x264encopts bitrate=500:level_idc=41:bframes=3:frameref=2: nopsnr: nossim: pass=1: threads=auto -oac mp3lame";
   echo "$command
";
   shell_exec( $command );
   echo "Converted
";
}
?>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn