利用php获得flv视频长度的实例代码
发布:smiling 来源: PHP粉丝网 添加日期:2018-09-13 17:19:57 浏览: 评论:0
废话不多说了,直接给大家贴代码了,具体代码如下所示:
- 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 getFlvDuration($name){
- if(!file_exists($name)){
- return;
- }
- $flv_data_length=filesize($name);
- $fp = @fopen($name, 'r');
- $flv_header = fread($fp, 5);
- fseek($fp, 5, SEEK_SET);
- $frame_size_data_length = $this->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 = $this->BigEndian2Int(substr($this_tag_header, 5, 3));
- $timestamp = $this->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;
- }
- //转化为0:03:56的时间格式
- function getFlvTime($time){
- $num = $time; //phpfensi.com
- $sec = intval($num/1000);
- $h = intval($sec/3600);
- $m = intval(($sec%3600)/60);
- $s = intval(($sec%60));
- $tm = $h.':'.$m.':'.$s;
- return $tm;
- }
Tags: 长度 实例 代码
相关文章
- ·php判断字符串长度 strlen()与mb_strlen()函数(2014-07-26)
- ·php截取字符串长度函数详解(2014-07-26)
- ·php取得字段长度 mysql_field_len(2014-09-12)
- ·php截取一定长度的字符串(2014-09-18)
- ·php ob_get_length缓冲与获取缓冲长度(2014-09-19)
- ·php检测数组长度的函数sizeof count(2014-09-19)
- ·php 字符串长度函数(2014-09-19)
- ·php检测数组长度函数sizeof与count用法(2021-04-26)
- ·php手机号中间几位替换星号实例(2014-02-16)
- ·php 获取相对路径实例代码(2014-08-17)
- ·php利用openssl生成签名实例程序(2014-08-21)
- ·php 使用openssl_verify验证签名实例程序(2014-08-21)
- ·php中闭包函数的用法实例(2014-09-13)
- ·利用php中mail函数发送HTML邮件实例(2014-09-14)
- ·php flock函数实例(2014-09-19)
- ·php strtotime 函数与实例教程(2014-09-20)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)