1.服务器上先安装FFmpeg
https://www.cnblogs.com/zhangyouwu/p/16312243.html
2.在php中使用FFmpeg截取视频封面图片(使用注意:如果php禁用了shell_exec函数,需要在php.ini中搜索"disable_functions"找到shell_exec后取消禁用)
function getVideoCover( $input, $output ) { $command = "ffmpeg -v 0 -y -i $input -vframes 1 -ss 5 -vcodec mjpeg -f rawvideo -s 286x160 -aspect 16:9 $output ";
// 视频 a.mp4 第一帧导出为 a.jpg
//ffmpeg -i a.mp4 -y -f image2 -frames 1 a.jpg
// 指定封面图大小
//ffmpeg -i a.mp4 -y -f image2 -s 640*480 -frames 1 a.jpg
shell_exec( $command ); } //使用方法(第一个参数是视频的路径,第二个参数是生成图片的路径) getVideoCover('./test.mp4','./test.jpg');