我正在尝试使用thumbnail
MP4
库从ffmpeg
文件创建php
图片。
我有
$ffmpeg ="/usr/bin/ffmpeg";
$image_source_path = '/project/a1/a1.mp4';
$ALL_PLACE_WIDTH = 300;
$ALL_PLACE_HEIGHT = 270;
$image_cmd = " -r 1 -r 0.0001 -s ".$ALL_PLACE_WIDTH."x".$ALL_PLACE_HEIGHT." -f image2 ";
$dest_image_path = '/project/a1/foo-%03d.png';
$str_command= $ffmpeg ." -i " . $image_source_path . $image_cmd .$dest_image_path;
shell_exec($str_command);
我只需要视频的第一帧,但我的代码会生成2个视频图像,这不是我想要的。任何人都可以帮我解决这个问题吗?
非常感谢!