ffmpeg获取视频时长,视频宽高等信息

ffmpeg 视频 编程进阶笔记
发布日期 2023-02-06 更新日期 2023-02-08 阅读次数 630 文章字数 607

ffmpeg -i 视频

其中取得的Duration第一个数值就是视频时长

宽高则在中间分别有两个值表示,单位是px。

正则获取时长:

<?php

        //获取视频的时长  Duration: 时长, start: 开始, bitrate: 比特率 kb/s
        $videoLength = 0;
        $videoWidth = 0;
        $videoHeight = 0;

        //先获取视频的宽高、时长等信息
        if($ret && is_array($ret)){
            //找出视频时长
            $videoLength = 0;
            $videoWidth = 0;
            $videoHeight = 0;
            foreach ($ret as $everyLine){
                if(preg_match("/Duration: (.*), start: .*,/",$everyLine,$matches)){ //获取视频的尺寸  Stream #0:0(und): Video: .*, .*, 1074x952,
                    $videoLength = $matches[1]; //00:07:37.60
                    $videoLength = strtotime($videoLength) - strtotime("00:00:00");  //转换为秒
                }
                if(preg_match("/Video: .*, (d*)x(d*)/",$everyLine,$matches)){   //"/Video: .*, .*, (d*)x(d*),/
                    $videoWidth = $matches[1];  // 1074
                    $videoHeight = $matches[2];  // 952
                }
                if($videoLength && $videoWidth && $videoHeight){
                    break;
                }
            }

文章作者: 朱丰华

文章链接: https://smart.52dixiaowo.com/blog/post-349.html

版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。

ffmpeg 视频

发表评论

相关推荐
朱丰华   |   2个月前   |   对象 · 属性 · 反射 · js

js 对象反射 Reflect

95    评论    点赞
朱丰华   |   2个月前   |   启动 · php

debian12开机启动sh

160    评论    点赞
朱丰华   |   3个月前   |   sql · mysql · 字节 · 字符

mysql常用字段类型详解

122    评论    点赞
朱丰华   |   1年前   |   git

git从缓存中移除数据git rm --cached

501    评论    点赞
朱丰华   |   1年前   |   php

php判断是否被iframe

311    评论    点赞
朱丰华   |   1年前   |   checkbox

checkbox默认传值问题

469    评论    点赞
朱丰华   |   1年前   |   页面 · 监听

iframe子父页面信息传递与监听

527    评论    点赞
朱丰华   |   1年前   |   linux · upx

Linux下安装UPX

588    评论    点赞
朱丰华   |   1年前   |   linux

linux保持后台进程不被关闭nohup &

318    评论    点赞
朱丰华   |   1年前   |   php

php正则表达式定界符:异常Delimiter must not be alphanumeric or backslash

245    评论    点赞
朱丰华   |   1年前   |   git

git push -u参数是什么意思?--set-upstream

357    评论    点赞
朱丰华   |   1年前   |   git · hub · 仓库

go克隆并引用github仓库

201    评论    点赞
朱丰华   |   1年前   |   sql · mysql

mysql Timestamp或dateTime格式筛选

181    评论    点赞
朱丰华   |   1年前   |   javascript

通过Javascript获得页面元素的字体大小

184    评论    点赞
{{item.author_name}}   |   {{new Date(item.date*1000).log()}}   |   {{it}} ·

{{item.title}}

{{item.uv}}    评论    点赞