ffmpeg生成纵横比缩略图,但生成视频X秒

时间:2013-08-20 19:04:24

标签: php ffmpeg

因此,此命令适用于在视频中生成缩略图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秒。任何帮助都将非常感激。

2 个答案:

答案 0 :(得分:6)

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

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;

答案 1 :(得分:0)

@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;