音效素材网提供各类素材,打造精品素材网站!

站内导航 站长工具 投稿中心 手机访问

音效素材

PHP调用ffmpeg对视频截图并拼接脚本
日期:2021-09-06 20:01:48   来源:脚本之家

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(); 
?> 

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

    您感兴趣的教程

    在docker中安装mysql详解

    本篇文章主要介绍了在docker中安装mysql详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编...

    详解 安装 docker mysql

    win10中文输入法仅在桌面显示怎么办?

    win10中文输入法仅在桌面显示怎么办?

    win10系统使用搜狗,QQ输入法只有在显示桌面的时候才出来,在使用其他程序输入框里面却只能输入字母数字,win10中...

    win10 中文输入法

    一分钟掌握linux系统目录结构

    这篇文章主要介绍了linux系统目录结构,通过结构图和多张表格了解linux系统目录结构,感兴趣的小伙伴们可以参考一...

    结构 目录 系统 linux

    PHP程序员玩转Linux系列 Linux和Windows安装

    这篇文章主要为大家详细介绍了PHP程序员玩转Linux系列文章,Linux和Windows安装nginx教程,具有一定的参考价值,感兴趣...

    玩转 程序员 安装 系列 PHP

    win10怎么安装杜比音效Doby V4.1 win10安装杜

    第四代杜比®家庭影院®技术包含了一整套协同工作的技术,让PC 发出清晰的环绕声同时第四代杜比家庭影院技术...

    win10杜比音效

    纯CSS实现iOS风格打开关闭选择框功能

    这篇文章主要介绍了纯CSS实现iOS风格打开关闭选择框,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作...

    css ios c

    Win7如何给C盘扩容 Win7系统电脑C盘扩容的办法

    Win7如何给C盘扩容 Win7系统电脑C盘扩容的

    Win7给电脑C盘扩容的办法大家知道吗?当系统分区C盘空间不足时,就需要给它扩容了,如果不管,C盘没有足够的空间...

    Win7 C盘 扩容

    百度推广竞品词的投放策略

    SEM是基于关键词搜索的营销活动。作为推广人员,我们所做的工作,就是打理成千上万的关键词,关注它们的质量度...

    百度推广 竞品词

    Visual Studio Code(vscode) git的使用教程

    这篇文章主要介绍了详解Visual Studio Code(vscode) git的使用,小编觉得挺不错的,现在分享给大家,也给大家做个参考。...

    教程 Studio Visual Code git

    七牛云储存创始人分享七牛的创立故事与

    这篇文章主要介绍了七牛云储存创始人分享七牛的创立故事与对Go语言的应用,七牛选用Go语言这门新兴的编程语言进行...

    七牛 Go语言

    Win10预览版Mobile 10547即将发布 9月19日上午

    微软副总裁Gabriel Aul的Twitter透露了 Win10 Mobile预览版10536即将发布,他表示该版本已进入内部慢速版阶段,发布时间目...

    Win10 预览版

    HTML标签meta总结,HTML5 head meta 属性整理

    移动前端开发中添加一些webkit专属的HTML5头部标签,帮助浏览器更好解析HTML代码,更好地将移动web前端页面表现出来...

    移动端html5模拟长按事件的实现方法

    这篇文章主要介绍了移动端html5模拟长按事件的实现方法的相关资料,小编觉得挺不错的,现在分享给大家,也给大家...

    移动端 html5 长按

    HTML常用meta大全(推荐)

    这篇文章主要介绍了HTML常用meta大全(推荐),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参...

    cdr怎么把图片转换成位图? cdr图片转换为位图的教程

    cdr怎么把图片转换成位图? cdr图片转换为

    cdr怎么把图片转换成位图?cdr中插入的图片想要转换成位图,该怎么转换呢?下面我们就来看看cdr图片转换为位图的...

    cdr 图片 位图

    win10系统怎么录屏?win10系统自带录屏详细教程

    win10系统怎么录屏?win10系统自带录屏详细

    当我们是使用win10系统的时候,想要录制电脑上的画面,这时候有人会想到下个第三方软件,其实可以用电脑上的自带...

    win10 系统自带录屏 详细教程

    + 更多教程 +
    ASP编程JSP编程PHP编程.NET编程python编程