您好,登錄后才能下訂單哦!
本篇文章為大家展示了利用PHP怎么獲取視頻的時長,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
具體代碼如下所示:
//獲得視頻文件的總長度時間和創建時間 根據視頻長度判斷是否失效 public function getTime($url) { //獲取視頻重定向后的鏈接 $location = locationUrl($url); //獲取視頻Content-Length $responseHead = get_data($location); $list1 = explode("Content-Length: ", $responseHead); $list2 = explode("Connection", $list1[1]); $list = explode("x", $list2[0]); return $list[0]; } //獲取視頻重定向后的鏈接 function locationUrl($url){ $url_parts = @parse_url($url); if (!$url_parts) return false; if (!isset($url_parts['host'])) return false; if (!isset($url_parts['path'])) $url_parts['path'] = '/'; $sock = fsockopen($url_parts['host'], (isset($url_parts['port']) ? (int)$url_parts['port'] : '80'), $errno, $errstr, 30); if (!$sock) return false; $request = "HEAD " . $url_parts['path'] . (isset($url_parts['query']) ? '?'.$url_parts['query'] : '') . " HTTP/1.1\r\n"; $request .= 'Host: ' . $url_parts['host'] . "\r\n"; $request .= "Connection: Close\r\n\r\n"; fwrite($sock, $request); $response = ''; while(!feof($sock)) { $response .= fread($sock, 8192); } fclose($sock); if (preg_match('/^Location: (.+?)$/m', $response, $matches)){ if ( substr($matches[1], 0, 1) == "/" ){ return $url_parts['scheme'] . "://" . $url_parts['host'] . trim($matches[1]); } else{ return trim($matches[1]); } } else { return false; } } //審核視頻 curl function get_data($url){ $oCurl = curl_init(); //模擬瀏覽器 $header[] = "deo.com"; $user_agent = "Mozilla/4.0 (Linux; Andro 6.0; Nexus 5 Build) AppleWeb/537.36 (KHTML, like Gecko)"; curl_setopt($oCurl, CURLOPT_URL, $url); curl_setopt($oCurl, CURLOPT_HTTPHEADER,$header); curl_setopt($oCurl, CURLOPT_HEADER, true); curl_setopt($oCurl, CURLOPT_NOBODY, true); curl_setopt($oCurl, CURLOPT_USERAGENT,$user_agent); curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1 ); // 不用 POST 方式請求, 意思就是通過 GET 請求 curl_setopt($oCurl, CURLOPT_POST, false); $sContent = curl_exec($oCurl); // 獲得響應結果里的:頭大小 $headerSize = curl_getinfo($oCurl, CURLINFO_HEADER_SIZE); // 根據頭大小去獲取頭信息內容 $header = substr($sContent, 0, $headerSize); curl_close($oCurl); return $header; }
上述內容就是利用PHP怎么獲取視頻的時長,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。