FLV 是FLASH VIDEO的簡稱,FLV串流格式是一種新的視訊格式,全稱為Flash Video。由於它形成的檔案極小、載入速度極快,使得網路觀看影片檔案成為可能,它的出現有效地解決了影片檔案匯入Flash後,使匯出的SWF檔案體積龐大,無法在網路上很好的使用等缺點
FLV就是隨著Flash MX的推出發展而來的影片格式,目前被許多新一代影片分享網站所採用,是目前成長最快、最為廣泛的影片傳播格式。是在sorenson 公司的壓縮演算法的基礎上開發出來的。 FLV格式不僅可以輕鬆的導入Flash 中,速度極快,並且能起到保護版權的作用,並且可以不透過本地的微軟或REAL播放器播放影片。
FLV 是一種全新的串流影片格式,它利用了網頁上廣泛使用的Flash Player 平台,將影片整合到Flash 動畫中。也就是說,網站的訪客只要能看Flash動畫,自然也能看FLV 格式視頻,而無需再額外安裝其它視頻插件,FLV視頻的使用給視頻傳播帶來了極大便利。
這篇文章主要介紹了PHP實現獲取FLV檔案的時間,本文直接給出實現程式碼和使用方法,需要的朋友可以參考下
PHP如何取得FLV檔案時間呢,答案是fopen檔後查看FLV檔是HEX資料,並轉換為number。
程式碼如下:
<?php functionBigEndian2Int($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; } functiongetTime($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; } functionget_flv_file_time($time) { $time=getTime($time); $num=$time; $sec=intval($num/1000); $h =intval($sec/3600); $m =intval(($sec%3600)/60); $s =intval(($sec%60)); $tm =$h.':'.$m.':'.$s; return$tm; } ?>
直接使用get_flv_file_time(「你的FLV.flv」)即可。
以上是php 取得FLV檔案的時間範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!