浏览文章

文章信息

unbuntu安装ffmpeg 12428

1、ffmpeg媒体处理模块

apt-get update

apt-get install ffmpeg

使用:

$file服务器视频绝对地址

$time截图的视频时间

$destFilePath目标存放位置

php代码示例:

$command = "/usr/bin/ffmpeg -i {$file} -y -f image2 -ss {$time} -vframes 1 -s 640x360 {$destFilePath}";
exec($command);


原创