ffmpeg视频中的随机图像,但按顺序

时间:2011-11-28 10:32:27

标签: php image ffmpeg

好的,我正在使用linux,我有ffmpeg工作,编码视频和制作图像

但我想要的是让ffmpeg从视频中制作10张图片。

我想知道我会怎么做。目前我使用以下图片。

//execute ffmepg to get picture
    exec("/usr/bin/ffmpeg -vframes 1 -ss ".$time_in_seconds." -i converted_vids/".$name.".".$type." video_images/".$name."_%02d.jpg -y 2> log/image_".$name.".txt");

1 个答案:

答案 0 :(得分:0)

通常,以下命令用于从视频生成图像:

//d is number of images you create from video
ffmpeg -i video.mpg image%d.jpg

//like
ffmpeg -i video.mpg image%10.jpg
//would produce 10 images from the video

Hope it's helpful to you