当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现将视频转成MP4并获取视频预览图的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-16 11:53:00 浏览: 评论:0 

这篇文章主要介绍了PHP实现将视频转成MP4并获取视频预览图的方法,涉及php操作视频文件的技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现将视频转成MP4并获取视频预览图的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php 
  2. flv_convert_get_thumb('input.avi''output.jpg''output.ogm'); 
  3. // code provided and updated by steve of phpsnaps ! thanks 
  4. // accepts: 
  5. // 1: the input video file 
  6. // 2: path to thumb jpg 
  7. // 3: path to transcoded mpeg? 
  8. function flv_convert_get_thumb($in$out_thumb$out_vid
  9.   // get thumbnail 
  10.   $cmd = 'ffmpeg -v 0 -y -i '.$in.' -vframes 1 -ss 5 -vcodec mjpeg -f rawvideo -s 286x160 -aspect 16:9 '.$out_thumb
  11.   $res = shell_exec($cmd); 
  12.   // $res is the output of the command 
  13.   // transcode video 
  14.   $cmd = 'mencoder '.$in.' -o '.$out_vid.' -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'
  15.   $res = shell_exec($cmd); 
  16. ?> 

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

Tags: PHP视频转成MP4

分享到: