php和腾讯直播
程序员文章站
2022-03-10 18:26:32
戏说前文不要想太多,直播和你(php)没啥关系、帮忙配置一下推拉流地址和License、然后生成一下推拉流地址详细链接就好了下面第一步 配置推拉流地址第二步:生成地址像这样生成if (!function_exists('create_live')) { function create_live($user_id = 0) { $live_bizid = Config::get("site.live_bizid");//直播bizid $l...
戏说前文
不要想太多,直播和你(php)没啥关系、帮忙配置一下推拉流地址和License、然后生成一下推拉流地址详细链接就好了
下面
第一步 配置推拉流地址
第二步:生成地址
像这样生成
if (!function_exists('create_live')) {
function create_live($user_id = 0) {
$live_bizid = Config::get("site.live_bizid");//直播bizid
$live_sdkapp_id = Config::get("site.live_sdkapp_id");//直播sdkapp_id
$push_domain = Config::get("site.push_domain");//推流域名
$play_domain = Config::get("site.play_domain");//播放域名
$live_key = Config::get("site.live_key");//直播key
$live_expiry_time = Config::get("site.live_expiry_time");//直播过期时间
$livecode = $live_sdkapp_id.'_'.$user_id;
//默认名// 推荐用随机数字或者用户 ID
if ($live_key && $live_expiry_time) {
$time = time()+$live_expiry_time;
//过期时间
//strtoupper把所有字符转换为大写 base_convert把进制数转换:
$txTime = strtoupper(base_convert($time,10,16));
//加密
$txSecret = md5($live_key.$livecode.$txTime);
//StreamName(流 ID):推荐用随机数字或者用户 ID。
//bizid 直播bizid
//txTime(地址有效期):何时该 URL 会过期,格式支持十六进制的 UNIX 时间戳。
//txSecret(防盗链签名):防止攻击者伪造您的后台生成推流 URL
$ext_str = '?'.http_build_query(array(
"bizid" => $live_bizid,
"txSecret" => $txSecret,
"txTime" => $txTime
));
}
$url = [
"push_url" => "rtmp://".$push_domain."/live/".$livecode.(isset($ext_str) ? $ext_str : ""),
"rtmp_play_url" => "rtmp://".$play_domain."/live/".$livecode,
"flv_play_url" => "http://".$play_domain."/live/$livecode.flv",
"m3u8_play_url" => "http://".$play_domain."/live/$livecode.m3u8",
];
return $url;
}
}
给安卓ios配置许可证
本文地址:https://blog.csdn.net/wangzhae/article/details/109636663
上一篇: 作业小结2
下一篇: async与await以及宏微任务
推荐阅读
-
PHP获取百度相关搜索和原创程度_PHP教程
-
PHP SimpleXMLElement:XML文件解析和读写
-
CGI和servlet运行方式本质的区别是什么?PHP和Java在Web开发的原理有哪些本质不同?
-
数字说话,震惊:TP框架,php,html,php静态页执行效率分析和对比
-
看了好多招聘。比如如下的腾讯的招聘,大神请问为什么PHP还要用到socket?
-
PHP 和 MySQL 基础教程(四)_PHP教程
-
Yii中CArrayDataProvider和CActiveDataProvider区别实例分析,carraydataprovider_PHP教程
-
PHP图片等比缩放和增加Logo水印代码详解和注释
-
php常用Output和ptions/Info函数集介绍_PHP
-
为何PHP站内搜索只能搜索英文和字母,不能搜索中文