我可以使用ffmpeg:
从视频中捕捉图像$cmd = "ffmpeg -i $video_source -an -ss $second -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg -s 40x25 " . escapeshellarg($video_thubmnail_destinaion) . " 2>&1";
但是,使用上述语法只会输出40x25图像。我有可能再指定一个图像尺寸吗?
答案 0 :(得分:0)
是的,可以将1个源转换/捕获到多个目的地 FFmpeg文档清楚地描述了http://ffmpeg.org/ffmpeg.html
您应该使用的语法是:
$cmd = "ffmpeg -i $video_source -an -ss $second -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg -s 40x25 " . escapeshellarg($video_thubmnail_destinaion) -r1 -y -vcodec mjpeg -f mjpeg -s 128x192 " . escapeshellarg($video_big_thubmnail_destinaion) . " 2>&1";