博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ffmpeg获取视频封面图片
阅读量:6510 次
发布时间:2019-06-24

本文共 1020 字,大约阅读时间需要 3 分钟。

ffmpeg百度云盘下载地址:

提取码:4y2r

/** * ffmpeg百度云盘下载地址:https://pan.baidu.com/s/1Am_x0abBvXTrbCFPHs5e9Q * 提取码:4y2r * 获取视频封面图片 * @param string $inFile 视频文件地址 * @param int $time 截图的秒数 * @param int $width 图片宽度 * @param int $height 图片高度 */function getVideoCover($inFile, $time = 1, $width = 320, $height = 240){    //文件根目录    $rootPath = realpath(__ROOT__) . './Public';    //输入文件路径    $inFile = $rootPath . $inFile;    //输出文件名    $outFileName = uniqid('video_') . ".jpg";    //输出文件目录    $outFileDir = '/uploads/videocover/' . date("Ymd", time()) . '/';    if (!is_dir($rootPath . $outFileDir)) {        mkdir($rootPath . $outFileDir, 0777, true);    }    //输出文件路径    $outFile = $rootPath . $outFileDir . $outFileName;    //ffmpeg.exe文件路径    $ffmpeg = realpath(__ROOT__) . './ffmpeg/ffmpeg.exe';    //运行命令    $command = $ffmpeg . " -i " . $inFile . " -y -f image2 -t {
$time} -s {
$width}x{
$height} " . $outFile; system($command); return $outFileDir . $outFileName;}

 

转载于:https://www.cnblogs.com/jxl1996/p/10138964.html

你可能感兴趣的文章
表的约束
查看>>
2012年新浪微博用户密码泄露漏洞
查看>>
Spring boot 添加日志 和 生成接口文档
查看>>
原生JS实现百度搜索功能
查看>>
oracle,mongodb数据处理相关
查看>>
软件测试--测试用例
查看>>
Unity重置Animator到初始状态和重复播放同一个Animation
查看>>
【div】给div添加滚动条
查看>>
PHP百分号转小数
查看>>
POJ3259 SPFA判定负环
查看>>
结对项目电梯吐血总结
查看>>
离线安装Android开发环境的方法
查看>>
VC常用代码之创建进程
查看>>
对比语法错误、语义错误以及运行时错误
查看>>
Linux性能测试 uptime命令
查看>>
argparse–Parser for command-line options
查看>>
iphone three20详解 ppt
查看>>
winform 牛人
查看>>
正则表达式
查看>>
模块化Javascript代码的两种方式
查看>>