用PHP读取flv文件的播放时间长度


Posted in PHP onSeptember 03, 2009
<?php 
// +----------------------------------------------------------------------+ 
// | PHP version 4&5 | 
// +----------------------------------------------------------------------+ 
// | Copyright (c) 2007 JackieWangjackieit@hotmail.com | 
// +----------------------------------------------------------------------+ 
// | This source file's function is to get the time length of flv | 
// | main function getTime param:$name The flv file you want to get | 
// +----------------------------------------------------------------------+ 
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)){ 
return; 
} 
$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; 
} 
?>
PHP 相关文章推荐
在数据量大(超过10万)的情况下
Jan 15 PHP
Discuz! 5.0.0论坛程序中加入一段js代码,让会员点击下载附件前自动弹出提示窗口
Apr 18 PHP
PHP 文件上传进度条的两种实现方法的代码
Nov 25 PHP
fleaphp下不确定的多条件查询的巧妙解决方法
Sep 11 PHP
php curl 登录163邮箱并抓取邮箱好友列表的代码(经测试)
Apr 07 PHP
PHP读取网页文件内容的实现代码(fopen,curl等)
Jun 23 PHP
在php中判断一个请求是ajax请求还是普通请求的方法
Jun 28 PHP
Yii框架关联查询with用法分析
Dec 02 PHP
Opcache导致php-fpm崩溃nginx返回502
Mar 02 PHP
phpmailer简单发送邮件的方法(附phpmailer源码下载)
Jun 13 PHP
PHP页面跳转实现延时跳转的方法
Dec 10 PHP
php 浮点数比较方法详解
May 05 PHP
用php将任何格式视频转为flv的代码
Sep 03 #PHP
ajax php 实现写入数据库
Sep 02 #PHP
php 正则表达式小结
Aug 31 #PHP
自动把纯文本转换成Web页面的php代码
Aug 27 #PHP
PHP高级OOP技术演示
Aug 27 #PHP
php 获取可变函数参数的函数
Aug 26 #PHP
php download.php实现代码 跳转到下载文件(response.redirect)
Aug 26 #PHP
You might like
制作美丽的拉花
2021/03/03 冲泡冲煮
apache php模块整合操作指南
2012/11/16 PHP
php自动给文章加关键词链接的函数代码
2012/11/29 PHP
jquery ajax abort()的使用方法
2010/10/28 Javascript
jQuery EasyUI API 中文文档 - TimeSpinner时间微调器
2011/10/23 Javascript
javascript获得服务器端控件的ID的实现代码
2011/12/28 Javascript
JQuery获取各种宽度、高度(format函数)实例
2013/03/04 Javascript
extjs 时间范围选择自动判断的实现代码
2014/06/24 Javascript
Javascript URI 解析介绍
2015/03/15 Javascript
jQuery控制DIV层实现由大到小,由远及近动画变化效果
2015/10/09 Javascript
一道JS前端闭包面试题解析
2015/12/25 Javascript
JS动态创建元素的两种方法
2016/04/20 Javascript
js检查是否关闭浏览器的方法
2016/08/02 Javascript
使用Bootstrap Tabs选项卡Ajax加载数据实现
2016/12/23 Javascript
js自定义Tab选项卡效果
2017/06/05 Javascript
React中使用collections时key的重要性详解
2017/08/07 Javascript
浅谈Vue数据绑定的原理
2018/01/08 Javascript
JavaScript体验异步更好的解决办法
2018/01/08 Javascript
快速解决处理后台返回json数据格式的问题
2018/08/07 Javascript
详解mpvue scroll-view自动回弹bug解决方案
2018/10/01 Javascript
使用优化器来提升Python程序的执行效率的教程
2015/04/02 Python
详解Python中for循环的使用方法
2015/05/14 Python
Python批量按比例缩小图片脚本分享
2015/05/21 Python
解决Python2.7读写文件中的中文乱码问题
2018/04/12 Python
Python3爬虫mitmproxy的安装步骤
2020/07/29 Python
使用html5 canvas创建太空游戏的示例
2014/05/08 HTML / CSS
凯撒娱乐:Caesars Entertainment
2018/02/23 全球购物
优秀毕业生求职信范文
2014/01/02 职场文书
2014年庆元旦活动方案
2014/02/15 职场文书
网络技术专业推荐信
2014/02/20 职场文书
考博专家推荐信
2014/05/10 职场文书
2014年党支部学习材料
2014/05/19 职场文书
大学生党员个人剖析材料
2014/10/08 职场文书
教师学习党的群众路线教育实践活动心得体会
2014/10/31 职场文书
公司周年庆典致辞
2015/07/30 职场文书
SQL Server远程连接的设置步骤(图文)
2022/03/23 SQL Server