PHP调用ffmpeg对视频截图并拼接脚本

PHP脚本调用ffmpeg对视频截图并拼接,供大家参考,具体内容如下

目前支持MKV,MPG,MP4等常见格式的视频,其他格式有待测试

12P 一张截图平均生成时间  1.64s     100个视频,大概需要2分半左右

9P  一张截图平均生成时间  1.13s      100个视频,大概需要2分钟左右

6P  一张截图平均生成时间  0.86s      100个视频,大概需要1分半左右

3P  一张截图平均生成时间  0.54s      100个视频,大概需要1分钟左右

<?php
define('DS', DIRECTORY_SEPARATOR);
date_default_timezone_set("Asia/Shanghai");
class FileLoader
{
  //路径变量
  private $rootdir    = '';
  private $tmp      = "tmp";      //tmp 目录
  private $source     = "mpg";      //source 目录
  private $destination  = "screenshoot";  //目标截图路径
  private $emptyImageName = "empty.jpg";   //合成的背景图
  //文件数组
  private $maxShoots   = 12;        //最大的截图数
  private $videoInfo   = NULL;
  private $files     = array();     //文件数
  private $fileArray   = array();
  private $extensionArray = array("mpg","mkv","mp4","avi","3gp","mov");  //支持的格式
  private $timeArray   = array("00:00:10","00:00:20","00:00:30","00:01:00","00:01:30","00:02:00","00:02:30","00:03:00","00:03:30","00:03:40","00:03:50","00:04:00");
  //统计变量
  private $timeStart   = 0;
  private $timeEnd    = 0;
  private $fileCount   = 0;
  private $successCount  = 0;
  private $failedCount  = 0; 

  /**
  *  初始化信息
  */
   function __construct()
  {
    file_put_contents("log.txt","");
    $this->rootdir = dirname(__FILE__);
    $count = count($this->timeArray); 

    for($i=1;$i<=$count;$i++)
    {
      $ii = $i-1;
      $this->fileArray[$ii] = $this->tmp.DS.$i.".jpg";
    }
  } 

  /**
  *  当前时间,精确到小数点
  */
  private static function microtime_float()
  {
    list($usec, $sec)= explode(" ", microtime());
    return ((float)$usec + (float)$sec);
  } 

  /**
  *  00:00:00 时间转秒
  */
  private static function timeToSec($time)
  {
     $p = explode(':',$time);
     $c = count($p);
     if ($c>1)
     {
        $hour  = intval($p[0]);
        $minute = intval($p[1]);
        $sec   = intval($p[2]);
     }
     else
     {
        throw new Exception('error time format');
     }
     $secs = $hour * 3600 + $minute * 60 + $sec;
     return $secs;
  } 

  /**
  *  00:00:00 时间转秒
  */
  private static function secToTime($time)
  { 

    $hour = floor($time/3600);
    $min = floor(($time - $hour * 3600)/60);
    $sec = $time % 60;
    $timeStr = sprintf("%02d:%02d:%02d",$hour,$min,$sec);
    return $timeStr;
  } 

  /**
  *  获取全部文件
  */
   private function getFiles($dir)
  {
    $files = array();
    $dir = rtrim($dir, "/\\") . DS;
    $dh = opendir($dir);
    if ($dh == false) { return $files; } 

    while (($file = readdir($dh)) != false)
    {
      if ($file{0} == '.') { continue; } 

      $path = $dir . $file;
      if (is_dir($path))
      {
        $files = array_merge($files, $this->getFiles($path));
      }
      elseif (is_file($path))
      {
        $files[] = $path;
      }
    }
    closedir($dh);
    return $files;
  } 

  /**
  *  搜索路径
  */
  public function searchDir($sourcePath = NULL)
  { 

    $this->timeStart = $this->microtime_float(); 

    if ($sourcePath)
    {
      $this->rootdir = $sourcePath;
    }  

    if (file_exists($this->rootdir) && is_dir($this->rootdir))
    {
      $this->files = $this->getFiles($this->rootdir.DS.$this->source);
    } 

    $this->fileCount = count($this->files); 

    foreach ($this->files as $path)
    {
      $fi = pathinfo($path);
      $flag = array_search(strtolower($fi['extension']),$this->extensionArray);
      if (!$flag) continue;
      $this->getScreenShoot(basename($path));
    } 

    $this->timeEnd = $this->microtime_float();
    $time = $this->timeEnd - $this->timeStart; 

    if($this->fileCount > 0)
    {
      $str = sprintf("[TOTAL]: Cost Time:%8s | Total File:[%d] | Successed:[%d] | Failed:[%d] | Speed:%.2fs per file\n",$this->secToTime($time),$this->fileCount,$this->successCount,$this->failedCount,$time/$this->fileCount);
      file_put_contents("log.txt",$str,FILE_APPEND);
    }
    else
    {
      $str = sprintf("[TOTAL]: Cost Time:%8s | Total File:[%d] | Successed:[%d] | Failed:[%d] | Speed:%.2fs per file\n",$this->secToTime($time),$this->fileCount,$this->successCount,$this->failedCount,0);
      file_put_contents("log.txt",$str,FILE_APPEND);
    }   

  } 

  /**
  *  获取视频信息
  */
  private function getVideoInfo($file){
      $re = array();
      exec(".".DS."ffmpeg -i {$file} 2>&1", $re);
      $info = implode("\n", $re); 

      if(preg_match("/No such file or directory/i", $info))
      {
        return false;
      } 

      if(preg_match("/Invalid data/i", $info)){
        return false;
      } 

      $match = array();
      preg_match("/\d{2,}x\d+/", $info, $match);
      list($width, $height) = explode("x", $match[0]); 

      $match = array();
      preg_match("/Duration:(.*?),/", $info, $match);
      if($match)
      {
        $duration = date("H:i:s", strtotime($match[1]));
      }else
      {
        $duration = NULL;
      }   

      $match = array();
      preg_match("/bitrate:(.*kb\/s)/", $info, $match);
      $bitrate = $match[1]; 

      if(!$width && !$height && !$duration && !$bitrate){
        return false;
      }else{
        return array(
          "file" => $file,
          "width" => $width,
          "height" => $height,
          "duration" => $duration,
          "bitrate" => $bitrate,
          "secends" => $this->timeToSec($duration)
        );
      }
    } 

  /**
  *  设置截图时间
  */
  private function setShootSecends($secends,$useDefault = NO)
  {   

    if($useDefault)
    {
      if($secends<18)
      {
        $time = 1;
      }else
      {
        $time = 5;
      }   

      $range = floor(($secends - $time)/ ($this->maxShoots));
      if ($range < 1)
      {
        $range = 1;
      } 

      $this->timeArray = array();
      for($i=0;$i<$this->maxShoots;$i++)
      {
        $this->timeArray[$i] = $this->secToTime($time);
        $time = $time + $range;
        if ($time > $secends) break;
      }
    }
  } 

  /**
  *  拼接图片
  */
  private function getFixedPhoto($fileName)
  { 

    $target = $this->rootdir.DS.$this->emptyImageName;//背景图片
    $target_img = Imagecreatefromjpeg($target);
    $source= array(); 

    foreach ($this->fileArray as $k=>$v)
    {
      $source[$k]['source'] = Imagecreatefromjpeg($v);
      $source[$k]['size'] = getimagesize($v);
    } 

    $tmpx=5;
    $tmpy=5;//图片之间的间距
    for ($i=0; $i< count($this->timeArray); $i++)
    {
      imagecopy($target_img,$source[$i]['source'],$tmpx,$tmpy,0,0,$source[$i]['size'][0],$source[$i]['size'][1]);
      $target_img = $this->setTimeLabel($target_img,$tmpx,$tmpy,$source[$i]['size'][0],$source[$i]['size'][1],$this->timeArray[$i]);
      $tmpx = $tmpx+ $source[$i]['size'][0];
      $tmpx = $tmpx+5;
      if(($i+1) %3 == 0){
        $tmpy = $tmpy+$source[$i]['size'][1];
        $tmpy = $tmpy+5;
        $tmpx=5;
      }
    } 

    $target_img = $this->setVideoInfoLabel($target_img,$tmpx,$tmpy,$this->videoInfo);
    Imagejpeg($target_img,$this->rootdir.DS.$this->destination.DS.$fileName.'.jpg');
  } 

  /**
  *  设置时间刻度标签
  */
  private function setTimeLabel($image,$image_x,$image_y,$image_w,$image_h,$img_text)
  {
     imagealphablending($image,true);
     //设定颜色
     $color=imagecolorallocate($image,255,255,255);
     $ttf_im=imagettfbbox(30 ,0,"Arial.ttf",$this->img_text);
     $w = $ttf_im[2] - $ttf_im[6];
     $h = $ttf_im[3] - $ttf_im[7];
     unset($ttf_im); 

     $txt_y   =$image_y+$image_h+$h-5;
     $txt_x   =$image_x+$w+5; 

     imagettftext($image,30,0,$txt_x,$txt_y,$color,"Arial.ttf",$img_text);
     return $image;
   } 

  /**
  *  设置视频信息标签
  */
   private function setVideoInfoLabel($image,$txt_x,$txt_y,$videoInfo)
   {
     imagealphablending($image,true); 

     $color=imagecolorallocate($image,0,0,0); 

     imagettftext($image,32,0,100,2000+30,$color,"FZLTHJW.ttf","FileName:".basename($videoInfo["file"]));
     imagettftext($image,32,0,1600,2000+30,$color,"Arial.ttf","Size:".$videoInfo["width"]."x".$videoInfo["height"]);
     imagettftext($image,32,0,100,2000+120,$color,"Arial.ttf","Duration:".$videoInfo["duration"]);
     imagettftext($image,32,0,1600,2000+120,$color,"Arial.ttf","Bitrate:".$videoInfo["bitrate"]);
     return $image;
  } 

  /**
  *  屏幕截图
  */
  public function getScreenShoot($fileName)
  {
    $fi = pathinfo($fileName);
    $this->videoInfo = $this->getVideoInfo($this->rootdir.DS.$this->source.DS.$fileName);
    if($this->videoInfo)
    {
      $this->setShootSecends($this->videoInfo["secends"]); 

      for ($i=0; $i< count($this->timeArray); $i++ )
      {
        $cmd=".".DS."ffmpeg -ss ". $this->timeArray[$i] ." -i ". $this->rootdir.DS.$this->source.DS.$fileName ." -y -f image2 -s 720*480 -vframes 1 ".$this->rootdir.DS.$this->fileArray[$i];
        exec($cmd,$out,$status);
      }
      $this->getFixedPhoto($fileName); 

      $str = sprintf("[%s]:OK...........[%s][%2dP]%-30s\n",date("y-m-d h:i:s",time()),$this->videoInfo["duration"],count($this->timeArray),$fileName);
      file_put_contents("log.txt",$str,FILE_APPEND);
      $this->successCount += 1;
    }else
    {
      $str = sprintf("[%s]:FAILED.................................[%s][%2dP]%-30s\n",date("y-m-d h:i:s",time()),$this->videoInfo["duration"],count($this->timeArray),$fileName);
      file_put_contents("log.txt",$str,FILE_APPEND);
      $this->failedCount += 1;
    }
  } 

  /**
  *  TODO:
  *  截取图片,
  *  需要配置ffmpeg-php,比较麻烦,
  *  但是这个类确实挺好用的。
  */
  public function getScreenShoot2($fileName)
  {
    if(extension_loaded('ffmpeg')){//判断ffmpeg是否载入
      $mov = new ffmpeg_movie($this->rootdir.DS.$this->source.DS.$fileName);//视频的路径
      $count = $mov->getFrameCount();
      $ff_frame = $mov->getFrame(floor($count/2));
      if($ff_frame)
      {
        $gd_image = $ff_frame->toGDImage();
        $img=$this->rootdir.DS."test.jpg";//要生成图片的绝对路径
        imagejpeg($gd_image, $img);//创建jpg图像
        imagedestroy($gd_image);//销毁一图像
      }
    }else{
      echo "ffmpeg没有载入";
    }
  }
} 

$fileLoader = new FileLoader();
$fileLoader->searchDir();
?>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

您可能感兴趣的文章:

  • php利用ffmpeg提取视频中音频与视频画面的方法详解
  • php 调用ffmpeg获取视频信息的简单实现
  • php使用FFmpeg接口获取视频的播放时长、码率、缩略图以及创建时间
  • PHP使用FFmpeg获取视频播放总时长与码率等信息
  • php使用ffmpeg向视频中添加文字字幕的实现方法
  • php使用ffmpeg获取视频信息并截图的实现方法
  • PHP使用ffmpeg给视频增加字幕显示的方法
  • PHP中使用php5-ffmpeg撷取视频图片实例
  • PHP+FFMPEG实现将视频自动转码成H264标准Mp4文件
  • PHP中使用FFMPEG获取视频缩略图和视频总时长实例
(0)

相关推荐

  • PHP使用FFmpeg获取视频播放总时长与码率等信息

    请注意:这篇文章中会用到passthru,可能部分虚拟主机会将此命令禁用. 代码如下: PHP <?php define('FFMPEG_PATH', '/usr/local/ffmpeg2/bin/ffmpeg -i "%s" 2>&1'); function getVideoInfo($file) { $command = sprintf(FFMPEG_PATH, $file); ob_start(); passthru($command); $info = o

  • PHP中使用FFMPEG获取视频缩略图和视频总时长实例

    复制代码 代码如下: //获得视频文件的缩略图function getVideoCover($file,$time,$name) {     if(empty($time))$time = '1';//默认截取第一秒第一帧     $strlen = strlen($file);     // $videoCover = substr($file,0,$strlen-4);     // $videoCoverName = $videoCover.'.jpg';//缩略图命名     //exe

  • php使用ffmpeg向视频中添加文字字幕的实现方法

    这篇文章主要介绍了PHP使用ffmpeg给视频增加字幕显示的方法,实例分析了php操作ffmpeg给视频增加字母的技巧,具有一定参考借鉴价值,需要的朋友可以参考下. 本文实例讲述了PHP使用ffmpeg给视频增加字幕显示的方法.分享给大家供大家参考.具体实现方法如下: <?php $dir = './'; // set to current folder if ($handle = opendir($dir)) { while(false!== ($file = readdir($handle)

  • php使用FFmpeg接口获取视频的播放时长、码率、缩略图以及创建时间

    FFmpeg是一个视频插件,我们可以利用调用FFmpeg接口来获取视频的相关信息,包括视频的播放时长,视频的码率,视频的缩略图以及视频创建时间,本文章向大家介绍php如何使用FFmpeg接口获取视频信息,需要的朋友可以参考一下. FFmpeg获得视频文件的缩略图: function getVideoCover($file,$time,$name) { if(empty($time))$time = '1';//默认截取第一秒第一帧 $strlen = strlen($file); // $vid

  • PHP+FFMPEG实现将视频自动转码成H264标准Mp4文件

    配置php.ini文件 复制代码 代码如下: file_uploads = on ;//是否允许通过HTTP上传文件的开关.默认为ON即是开 upload_tmp_dir ;//文件上传至服务器上存储临时文件的地方,如果没指定就会用系统默认的临时文件夹 upload_max_filesize = 1024m ;//望文生意,即允许上传文件大小的最大值.默认为2M,我们设置为1G post_max_size = 1024m ;//指通过表单POST给PHP的所能接收的最大值,我们也设置为1G ma

  • php 调用ffmpeg获取视频信息的简单实现

    ffmpeg是一套可以用来记录.转换数字音频.视频,并能将其转化为流的开源计算机程序,包含了libavcodec,保证高可移值性和编解码质量. 本文将介绍使用php调用ffmpeg获取视频信息,调用ffmpeg首先需要服务器上安装了ffmpeg,安装方法很简单,可自行搜索. 代码如下: <?php // 定义ffmpeg路径及命令常量 define('FFMPEG_CMD', '/usr/local/bin/ffmpeg -i "%s" 2>&1'); /** *

  • php利用ffmpeg提取视频中音频与视频画面的方法详解

    前言 FFmpeg的名称来自MPEG视频编码标准,前面的"FF"代表"Fast Forward",FFmpeg是一套可以用来记录.转换数字音频.视频,并能将其转化为流的开源计算机程序.可以轻易地实现多种视频格式之间的相互转换. FFmpeg的用户有Google,Facebook,Youtube,优酷,爱奇艺,土豆等. 组成 1.libavformat:用于各种音视频封装格式的生成和解析,包括获取解码所需信息以生成解码上下文结构和读取音视频帧等功能,包含demuxer

  • php使用ffmpeg获取视频信息并截图的实现方法

    本文实例讲述了php使用ffmpeg获取视频信息并截图的方法.分享给大家供大家参考,具体如下: $movie = new ffmpeg_movie('4.mp4'); $width=$movie->getFrameWidth(); $height=$movie->getFrameHeight(); $count= $movie->getFrameCount(); print $count . ''; $n = round ( $count/16 ); print $n . ''; for

  • PHP使用ffmpeg给视频增加字幕显示的方法

    本文实例讲述了PHP使用ffmpeg给视频增加字幕显示的方法.分享给大家供大家参考.具体实现方法如下: 复制代码 代码如下: <?php $dir = './'; // set to current folder if ($handle = opendir($dir)) {  while(false!== ($file = readdir($handle))) {  if ( is_file($dir.$file) ){  if (preg_match("'\.(avi)$'",

  • PHP中使用php5-ffmpeg撷取视频图片实例

    前几天在玩 FFmpeg 的时后,突然发现 Ubuntu 上多了 php5-ffmpeg 这个扩充套件,就想来玩玩看,看好不好用,有两个结论: 读取影片取决于 FFmpeg 的支援性,如果想要什么格式都支援的话,建议自己重新编译 FFmpeg. 效率并没有我想像中的快,两分钟的影片取十张图,大约 30 秒. 安装方法: 复制代码 代码如下: sudo apt-get install ffmpeg php5-ffmpeg php5-gd 撷图测试范例: 复制代码 代码如下: <?php    $p

随机推荐