js + php 讀取、播放視頻流 兼容firefox,chrome,ie,mac的safari,ios的safari,ios的微信瀏覽器(文件讀取文件流篇) 分類: php javascript j

————————————2015-5-13————最新更新———————————————
javascript


因爲jwplayer6已經徹底沒法正常工做,如下介紹的方法也已經失效,請更換視頻播放插件,能夠參考樓主的文章:php


http://blog.csdn.net/snow_finland/article/details/45670683css


————————————————————————————————————————



前提條件:
前端

一、選用jwplayer6做爲前端播放器(jwplayer6的基本代碼和資料能夠到其官網學習查詢,本文中僅爲部分代碼)java

二、前端動態加載jwplayer視頻盒子ios

三、前端加載的視頻非視頻的物理地址,而是經過php讀取的視頻流ajax

四、php讀取的視頻流的源文件是一個物理地址的文件json


加載視頻盒子的部分js代碼數組


function load_video_player(width,height,filename,type,size){
	var player_w = width;
	var player_h = height;
	var isiphone;
	$.ajax({
		type: 'POST',
		url: 'devicecontroller.php',
		data: 'islink='+islink,
		dataType:"JSON",
		async: false,
		success:function(data){
			if(data.code == 1){
				isiphone = data.data;
			}else{
				isiphone = 0;
			}
		}
	});
	
	var file_path = '/XXX/url?filename='+filename+'&type='+type+'&size='+size+'&isiphone='+isiphone;
	
	var player_wrap = [
		'<div id="J_video_container" class="video_container hide">',
			'<div class="video_box">',
			'</div>',
		'</div>'
	].join('');
	
	var player_box = [
		'<div id="Jwplayer_box">Loading player...</div>'
	].join('');

	if($('#J_video_container').length==0){
		$('#J_video_main').append(player_wrap);
	}
	
	$('#J_video_container').css('height',player_h+'px');
	if($('#Jwplayer_box').length==0){
		$('#J_video_container .video_box').append(player_box);
	}
	$('.video_box').css({'width':player_w+'px','height':player_h+'px'});
	$('#J_video_container').show();
	
	jwplayer("Jwplayer_box").setup({
		'width': player_w,
		'height': player_h,
		'controlbar': 'bottom',
		"autostart":"true",
		'provider': 'video',
		'type': 'mp4',
		'file': file_path
	});
}


其中請求檢查設備和瀏覽器類型的devicecontroller.php代碼瀏覽器


//json_encode中文亂碼問題修正
function arrayRecursive(&$array){  
	foreach ($array as $key => $value) {  
		if (is_array($value)) {  
			arrayRecursive($array[$key]);//若是是數組就進行遞歸操做  
		} else {  
			if(is_string($value)){  
				$temp1= addslashes($value);
				$array[$key]= urlencode($temp1);//若是是字符串就urlencode  
			}else{  
				$array[$key] = $value;  
			}  
		}  
	}  
}  
function JSON($result) {  
	$array=$result;  
	arrayRecursive($array);//先將類型爲字符串的數據進行 urlencode  
	$json = json_encode($array);//再將數組轉成JSON  
	return urldecode($json);//最後將JSON字符串進行urldecode  
}

require_once("Mobile_Detect.php");
$detect = new Mobile_Detect(); 
if($detect->isiPhone() || $detect->isiPad()){
	if($detect->isSafari() || $detect->isGenericBrowser()){//iphone和ipad上的safari或者微信瀏覽器
		$iphone = 1;
	}else{
		$iphone = 0;
	}
}else{
	$iphone = 0;
}
$data['code']=1;
$data['data']=$iphone;
echo JSON($data);

加載視頻流的php


$file_name = $_GET['filename'];
$file_type = $_GET['type'];
$file_size = $_GET['size'];
$isiphone = $_GET['isiphone'];

header("Content-type: ".$file_type);
if(isset($_SERVER['HTTP_RANGE'])){
	$http_range = $_SERVER['HTTP_RANGE'];
	
	$at = explode('=',$http_range);
	$at = explode('-',$at[1]);
	$start = $at[0];
	if($at[1] == null){
		$end = $file_size-1;
	}else{
		$end = $at[1];
	}
	$length = $end - $start + 1;
	
	if($isiphone==1){
		$fp = @fopen($file, 'rb');
		header("Accept-Ranges: 0-$length");
		
		set_time_limit(0);
		
		fseek($fp,$start);
		
		header("Content-Range: bytes $start-$end/$file_size");
		header("Content-Length: $length");
		
		while(!feof($fp)){
			echo fread($fp, $length);
			flush(); 
		}
		
		exit;
	}else{
		normal_download();
	}
}else{
	normal_download();
}

function normal_download(){
	Header("Content-type: ".$file_type);
	Header('Content-Disposition: attachment; filename="'.$filename.'"');
	Header("Content-Length: ".$file_size);
	readfile($filename);
}


補充說明:

一、在js中請求判斷一次設備,並經過js傳遞給php讀取視頻流,而不是在php端讀取視頻流時每次判斷設備:
由於ios safari在第一次(會設定$_SERVER['HTTP_RANGE'])請求的時候,能判斷出是ios的safari設備

在第二次以及以後的請求時,沒法判斷出是ios的safari設備


二、判斷是不是ios的safari,在以後的文章中介紹

相關文章
相關標籤/搜索