标签: php ffmpeg snapshot
我使用ffmpeg拍摄视频快照 它在localhost中正常工作,但当视频在其他主机上时,它无法正常工作,并且不会显示错误。
这是我的代码。
$videos_file_name='http://test.com/test.mp4' $cmd = "ffmpeg -i $videos_file_name -an -y -f mjpeg -ss 00:00:04 -vframes 1 source/$image_file"; return exec($cmd);