首頁 > 後端開發 > php教程 > 利用雲端影片實現線上教育和主播系統

利用雲端影片實現線上教育和主播系統

PHPz
發布: 2019-02-12 11:13:49
原創
1459 人瀏覽過

最近主播跟遊戲主播很火啊,相對其他web應用,視訊直播相對來說還是有點複雜。使用FMS搭建了服務端測試一下,直播還是不夠穩定。後來試了下阿里雲端影片服務,感覺還可以,但它沒有提供客戶端。然後找到了網易雲視頻,它有提供了客戶端,試用一下,網易云延遲比阿里雲會低點,然後就選他作為視頻直播服務。網易雲的api範例是java的,問客服有沒有php的,然後傳給我一個網易雲信的api。沒辦法自己寫個,介面也簡單。

class v163Class{
private $AppKey;                //开发者平台分配的AppKey
private $AppSecret;             //开发者平台分配的AppSecret,可刷新
private $Nonce;                    //随机数(最大长度128个字符)
private $CurTime;                 //当前UTC时间戳,从1970年1月1日0点0 分0 秒开始到现在的秒数(String)
private $CheckSum;                //SHA1(AppSecret + Nonce + CurTime),三个参数拼接的字符串,进行SHA1哈希计算,转化成16进制字符(String,小写)
const   HEX_DIGITS = "0123456789abcdef";
public function __construct($AppKey,$AppSecret){
$this->AppKey    = $AppKey;
$this->AppSecret = $AppSecret;
}
/**生成验证码**/
public function checkSumBuilder(){
//此部分生成随机字符串
$hex_digits = self::HEX_DIGITS;
$this->Nonce;
for($i=0;$i<128;$i++){            //随机字符串最大128个字符,也可以小于该数
$this->Nonce.= $hex_digits[rand(0,15)];
}
$this->CurTime = (string)(time());    //当前时间戳,以秒为单位
$join_string = $this->AppSecret.$this->Nonce.$this->CurTime;
$this->CheckSum = sha1($join_string);
}
/*****post请求******/
public function postDataCurl($url,$data=array()){
$this->checkSumBuilder();        //发送请求前需先生成checkSum
if(!empty($data)){
$json=json_encode($data);
}else{
$json="";
}
$timeout = 5000;
$http_header = array(
&#39;AppKey:&#39;.$this->AppKey,
&#39;Nonce:&#39;.$this->Nonce,
&#39;CurTime:&#39;.$this->CurTime,
&#39;CheckSum:&#39;.$this->CheckSum,
&#39;Content-Type: application/json;charset=utf-8;&#39;,
&#39;Content-Length: &#39; . strlen($json)
);
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt ($ch, CURLOPT_HEADER, false);
curl_setopt ($ch, CURLOPT_HTTPHEADER,$http_header);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER,false);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
if (false === $result) {
$result =  curl_errno($ch);
}
curl_close($ch);
return json_decode($result,true) ;
}
/***频道添加***/
public function channel_add($name,$type=0){
$url="https://vcloud.163.com/app/channel/create";
return $data=$this->postDataCurl($url,array("name"=>$name,"type"=>$type));
}
/****频道更新*****/
public function channel_update($name,$cid,$type=0){
$url="https://vcloud.163.com/app/channel/update";
return $data=$this->postDataCurl($url,array("name"=>$name,"cid"=>$cid,"type"=>$type));
}
/****频道删除******/
public function channel_delete($cid){
$url="https://vcloud.163.com/app/channel/delete";
return $data=$this->postDataCurl($url,array("cid"=>$cid));
}
/****获取频道信息******/
public function channel_get($cid){
$url="https://vcloud.163.com/app/channelstats";
return $data=$this->postDataCurl($url,array("cid"=>$cid));
}
/***
获取频道列表
records    int    单页记录数,默认值为10    否
pnum    int    要取第几页,默认值为1    否
ofield    String    排序的域,支持的排序域为:ctime(默认)    否
sort    int    升序还是降序,1升序,0降序,默认为desc    否
**/
public function channel_list($option=array("records"=>10,"pnum"=>1,"ofield"=>"ctime","sort"=>1)){
$url="https://vcloud.163.com/app/channellist";
return $data=$this->postDataCurl($url,$option);
}
/**重新获取推流地址***/
public function channel_reset($cid){
$url="https://vcloud.163.com/app/address";
return $data=$this->postDataCurl($url,array("cid"=>$cid));
}
/*****
设置频道为录制状态
cid    String    频道ID    是
needRecord    int    1-开启录制; 0-关闭录制    是
format    int    1-flv; 0-mp4    是
duration    int    录制切片时长(分钟),默认120分钟    否
filename    String    录制后文件名,格式为filename_YYYYMMDD-HHmmssYYYYMMDD-HHmmss,
文件名录制起始时间(年月日时分秒) -录制结束时间(年月日时分秒)    否
****/
public function channel_setRecord($cid,$option=array()){
$url="https://vcloud.163.com/app/channel/setAlwaysRecord";
return $data=$this->postDataCurl($url,$option);
}
/****暂停频道*****/
public function channel_pause($cid){
$url="https://vcloud.163.com/app/channel/pause";
return $data=$this->postDataCurl($url,array("cid"=>$cid));
}
/****批量暂停频道****/
public function channel_pauselist($cidList){
$url="https://vcloud.163.com/app/channellist/pause";
return $data=$this->postDataCurl($url,array("cidList"=>$cidList));
}
/****恢复频道*****/
public function channel_resume($cid){
$url="https://vcloud.163.com/app/channel/resume";
return $data=$this->postDataCurl($url,array("cid"=>$cid));
}
/****批量恢复频道****/
public function channel_resumelist($cidList){
$url="https://vcloud.163.com/app/channellist/resume";
return $data=$this->postDataCurl($url,array("cidList"=>$cidList));
}
/****获取频道的视频地址*****/
public function channel_videolist($cid){
$url="https://vcloud.163.com/app/videolist";
return $data=$this->postDataCurl($url,array("cid"=>$cid));
}
}
登入後複製

網易有提供window客戶端,在使用的時候出現卡頓現象,所以還是直接使用OBS。 OBS是款免費的視訊直播用戶端,配置也簡單。在流裡填下url即可開始直播。

利用雲端影片實現線上教育和主播系統

利用雲端影片實現線上教育和主播系統

這樣就可以開始直播。

播放器的話使用video.js即可。 【推薦閱讀:Node.js影片教學

<video id="zbvideo" class="video-js vjs-default-skin" controls preload="none" width="90%" height="398" poster="/static/images/videobg.jpg" data-setup="{}">
<source src="{$data.zb_http}" />
<source src="{$data.zb_hls}"  type="application/x-mpegURL"  />
<source src="{$data.zb_rtmp}" type="rtmp" />
</video>
<link href="/plugin/videojs/video-js.css" rel="stylesheet">
<script src="/plugin/videojs/ie8/videojs-ie8.min.js"></script>
<script src="/plugin/videojs/video.js"></script>
登入後複製

這樣就完成一個直播服務了.

新增公開課程依照api自動產生直播地址,刷新直播地址,到期自動刪除直播地址。


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板