2

因此,此命令适用于在视频中生成 5 秒的缩略图,大小为 300x300:

$cmd = '/usr/local/bin/ffmpeg -i '.$this->getUploadRootDir().'/'.$fname.' -ss 00:00:05 -f image2 -vframes 1 -s 300x300 '.$this->getUploadRootDir().'/thumb_'.$output;

但是,我想保持纵横比,所以我将代码更改为:

$cmd = "/usr/local/bin/ffmpeg -i ".$this->getUploadRootDir()."/".$fname." -ss 00:00:5 -f image2 scale='min(300\, iw):-1' ".$this->getUploadRootDir()."/thumb_".$output;

上面的代码正确地调整了图像的大小,但是它是视频中的第一帧。我需要缩略图为 5 秒。任何帮助将不胜感激。

4

2 回答 2

7

您可以使用类似于以下的命令行来执行此操作:

ffmpeg -i inputVideo -vf scale='min(300,iw)':-1 -ss 00:00:05 -f image2 -vframes 1 thumbnail.jpg

因此,在您的脚本中,-vf在缩放和重新排序输入和输出参数之前添加(视频过滤器),如下所示:

$cmd = "/usr/local/bin/ffmpeg -i ".$this->getUploadRootDir()."/".$fname." -vf scale='min(300\, iw):-1' -ss 00:00:5 -f image2 -vframes 1 ".$this->getUploadRootDir()."/thumb_".$output;
于 2013-09-19T22:05:31.653 回答
-1

@alexbuisson 有正确的答案,但只是为了确认我今天正在玩 ffmpeg:

这对我有用:

ffmpeg -i "my_video.mp4" -ss 00:00:05 -f image2 -vf scale="min(300\, iw):-1" -vframes 1 "capture.jpg"

我得到一个 300 像素宽的 Jpeg,图像比例正确。

因此适应您的代码,这变成:

$cmd = "/usr/local/bin/ffmpeg -i ".$this->getUploadRootDir()."/".$fname." -ss 00:00:05 -f image2 -vf scale='min(300\, iw):-1' ".$this->getUploadRootDir()."/thumb_".$output;
于 2013-09-24T15:38:24.423 回答