程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP中使用FFMPEG獲取視頻縮略圖和視頻總時長實例

PHP中使用FFMPEG獲取視頻縮略圖和視頻總時長實例

編輯:PHP綜合
復制代碼 代碼如下:
//獲得視頻文件的縮略圖
function getVideoCover($file,$time,$name) {
     if(empty($time))$time = '1';//默認截取第一秒第一幀
     $strlen = strlen($file);
     // $videoCover = substr($file,0,$strlen-4);
     // $videoCoverName = $videoCover.'.jpg';//縮略圖命名
     //exec("ffmpeg -i ".$file." -y -f mjpeg -ss ".$time." -t 0.001 -s 320x240 ".$name."",$out,$status);
     $str = "ffmpeg -i ".$file." -y -f mjpeg -ss 3 -t ".$time." -s 320x240 ".$name;
     //echo $str."</br>";
     $result = system($str);
     }

//獲得視頻文件的總長度時間和創建時間
function getTime($file){
     $vtime = exec("ffmpeg -i ".$file." 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//");//總長度
     $ctime = date("Y-m-d H:i:s",filectime($file));//創建時間
     //$duration = explode(":",$time);
     // $duration_in_seconds = $duration[0]*3600 + $duration[1]*60+ round($duration[2]);//轉化為秒
     return array('vtime'=>$vtime,
     'ctime'=>$ctime
     );
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved