我正在使用 ffmpeg 和 php 为动态视频创建缩略图。它将缩略图保存到特定文件,然后我使用 php 检索它。我想为所有类型的视频创建缩略图。iam 面临的 ffmpeg 问题是 iam 无法为具有 .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";
?>