Iam使用ffmpeg和php爲動態視頻創建縮略圖。它將縮略圖保存到特定文件,然後使用php檢索它。我想爲所有類型的視頻創建縮略圖。 iam面臨的ffmpeg問題是iam無法爲帶有.mp4擴展名的視頻創建縮略圖。 ?使用ffmpeg創建mp4的縮略圖
<?
$ffmpeg = '/usr/bin/ffmpeg/ffmpeg'; //to load the extension ffmpeg
$video = '/path/to/video'.$file_thumb; //path to the video
$image = '/store/it/here'; //path to store the thumbnail
$interval = 5;
$size = '640x480';
//It runs with the below command
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size
$image 2>&1";
>
上述命令做工精細。但我仍然無法創建MP4視頻的縮略圖。除mp4外,還爲所有其他視頻創建縮略圖。 – user1411837