jwplayer6 和 php播放视频

来源:互联网 发布:江西破获特大网络 编辑:程序博客网 时间:2024/04/28 10:27

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


由于jwplayer6已经完全无法正常工作,以下介绍的方法也已经失效,请更换视频播放插件,可以参考楼主的文章:


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


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




html+js部分


<!DOCTYPE html><head><meta content="text/html" charset="utf-8" /><title>jwplayer test</title></head><body><div id="Jwplayer_wrapper" class="video">Loading player</div><script type="text/javascript" src="static/js/jquery-1.7.2.min.js"></script><script type="text/javascript" src="jwplayer/jwplayer.js" ></script><script type="text/javascript">var file_path="/videocontent?file=test.mp4";var width=600;var height:400;jwplayer("Jwplayer_box").setup({'width': width,'height': height,'controlbar': 'bottom','autostart':'true','provider': 'video','type': 'mp4','file': file_path});</script></body></html>

php部分


<?php$path = $_GET['file'];header('Expires: 0');header('Cache-Control: must-revalidate, post-check=0, pre-check=0');header('Pragma: public');header("Content-Description: File Transfer");header("Content-Transfer-Encoding: binary");Header("Content-type: ".$file_type);Header('Content-Disposition: attacurlment; filename="'.$file_name.'"');ob_end_flush();flush();readfile($path);?>


0 0
原创粉丝点击