• 技术文章 >php教程 >PHP源码

    php 读取视频文件播放时间长度

    2016-06-08 17:28:32原创1814

    function BigEndian2Int($byte_word, $signed = false) {
    $int_value = 0;
    $byte_wordlen = strlen($byte_word);
    for ($i = 0; $i < $byte_wordlen; $i++) {
    $int_value += ord($byte_word{$i}) * pow(256, ($byte_wordlen - 1 - $i));
    }
    if ($signed) {
    $sign_mask_bit = 0x80 << (8 * ($byte_wordlen - 1));
    if ($int_value & $sign_mask_bit) {
    $int_value = 0 - ($int_value & ($sign_mask_bit - 1));
    }
    }
    return $int_value;
    }
    function getTime($name){
    if(!file_exists($name)){
    echo "文件不存在";exit;
    }
    $flv_data_length=filesize($name);
    $fp = @fopen($name, 'rb');
    $flv_header = fread($fp, 5);
    fseek($fp, 5, SEEK_SET);
    $frame_size_data_length =BigEndian2Int(fread($fp, 4));
    $flv_header_frame_length = 9;
    if ($frame_size_data_length > $flv_header_frame_length) {
    fseek($fp, $frame_size_data_length - $flv_header_frame_length, SEEK_CUR);
    }
    $duration = 0;
    while ((ftell($fp) + 1) < $flv_data_length) {
    $this_tag_header = fread($fp, 16);
    $data_length = BigEndian2Int(substr($this_tag_header, 5, 3));
    $timestamp = BigEndian2Int(substr($this_tag_header, 8, 3));
    $next_offset = ftell($fp) - 1 + $data_length;
    if ($timestamp > $duration) {
    $duration = $timestamp;
    }
    fseek($fp, $next_offset, SEEK_SET);
    }
    fclose($fp);
    return $duration;
    }
    if($_GET['submit'])
    {
    echo date('i分s秒',getTime($_GET['filepath'])/1000);
    }
    ?>




    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:quot length value header data
    上一篇:php 自动加载函数 __autoload() 下一篇:自己动手写 PHP MVC 框架(40节精讲/巨细/新人进阶必看)

    相关文章推荐

    • 检测移动设备的php代码(手机访问)• php实用图片水印效果代码• 用PHP实现小写金额转换大写金额【精确到分】• PHP求天数常犯的错误详解• 极简的创建文件夹函数
    1/1

    PHP中文网