当前位置:首页 > PHP教程 > php函数 > 列表

php获取flv视频时间长度代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-09 15:05:12 浏览: 评论:0 
  1. function bigendian2int($byte_word$signed = false) {   
  2.    
  3.   $int_value = 0;   
  4.    
  5.   $byte_wordlen = strlen($byte_word);   
  6.    
  7.   for ($i = 0; $i < $byte_wordlen$i++)   
  8.    
  9.   {   
  10.    
  11.   $int_value += ord($byte_word{$i}) * pow(256, ($byte_wordlen - 1 - $i));   
  12.    
  13.   }   
  14.    
  15.   if ($signed)   
  16.    
  17.   {   
  18.    
  19.   $sign_mask_bit = 0x80 << (8 * ($byte_wordlen - 1));   
  20.    
  21.   if ($int_value & $sign_mask_bit)   
  22.    
  23.   {   
  24.    
  25.   $int_value = 0 - ($int_value & ($sign_mask_bit - 1));   
  26.    
  27.   }   
  28.    
  29.   }   
  30.    
  31.   return $int_value;   
  32.    
  33.   }   
  34.    
  35.   function gettime($name){   
  36.    
  37.   if(!file_exists($name)){   
  38.    
  39.   return;   
  40.    
  41.   }   
  42.    
  43.   $flv_data_length=filesize($name);   
  44.    
  45.   $fp = @fopen($name'rb');   
  46.    
  47.   $flv_header = fread($fp, 5);   
  48.    
  49.   fseek($fp, 5, seek_set);   
  50.    
  51.   $frame_size_data_length =bigendian2int(fread($fp, 4));   
  52.    
  53.   $flv_header_frame_length = 9;   
  54.    
  55.   if ($frame_size_data_length > $flv_header_frame_length) {   
  56.         //开源代码phpfensi.com 
  57.   fseek($fp$frame_size_data_length - $flv_header_frame_length, seek_cur);   
  58.    
  59.   }   
  60.    
  61.   $duration = 0;   
  62.    
  63.   while ((ftell($fp) + 1) < $flv_data_length) {   
  64.    
  65.   $this_tag_header = fread($fp, 16);   
  66.    
  67.   $data_length = bigendian2int(substr($this_tag_header, 5, 3));   
  68.    
  69.   $timestamp = bigendian2int(substr($this_tag_header, 8, 3));   
  70.    
  71.   $next_offset = ftell($fp) - 1 + $data_length;   
  72.    
  73.   if ($timestamp > $duration) {   
  74.    
  75.   $duration = $timestamp;   
  76.    
  77.   }   
  78.    
  79.   fseek($fp$next_offset, seek_set);   
  80.    
  81.   }   
  82.    
  83.   fclose($fp);   
  84.    
  85.   return $duration;   
  86.    
  87.   }   
  88.    
  89.   function fn($time){   
  90.    
  91.   $num = $time;   
  92.    
  93.   $sec = intval($num / 1000);   
  94.    
  95.   $h = intval($sec / 3600);  
  96.  
  97.   $m = intval(($sec % 3600) / 60);   
  98.    
  99.   $s = intval(($sec % 60 ));   
  100.    
  101.   $tm = $h . ':' . $m . ':' . $s ;   
  102.    
  103.   return $tm;   
  104.    
  105.   }     
  106.   echo gettime("27729.flv");//显示数字时间如236722     
  107.   echo fn(236722); //显示时间格式0:03:56 

Tags: php获取flv php视频时间长

分享到: