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 // +----------------------------------------------------------------------+ // | 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 讀取flv檔的播放時間長度詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!