浏览文章

文章信息

Php 视频截图 12659

1、简单示例

1、ffmpeg媒体处理模块
apt-get update
apt-get install ffmpeg
使用:
$file服务器视频绝对地址
$time截图的视频时间
$destFilePath目标存放位置
$command = "/usr/bin/ffmpeg -i {$file} -y -f image2 -ss {$time} -vframes 1 -s 640x360 {$destFilePath}";
exec($command);


原创