php和腾讯直播
程序员文章站
2022-06-28 18:00:06
戏说前文不要想太多,直播和你(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
下一篇: 学会5招就能拍出美丽的风景照
推荐阅读
-
PHP 面向对象程序设计(oop)学习笔记(一) - 抽象类、对象接口、instanceof 和契约式编程
-
PHP 面向对象程序设计(oop)学习笔记(三) - 单例模式和工厂模式
-
PHP 面向对象程序设计(oop)学习笔记 (二) - 静态变量的属性和方法及延迟绑定
-
PHP+shell脚本操作Memcached和Apache Status的实例分享
-
腾讯微博如何批量取消收听和删除关注取消删除粉丝等等
-
腾讯大王卡和小王卡哪个好 腾讯大王卡和小王卡区别在哪
-
蚂蚁大宝卡申请不了怎么办 蚂蚁大宝卡和腾讯大王卡套餐资费对比分析
-
腾讯视频如何下载 腾讯视频客户端和网页版的下载方法
-
PHP5.5和之前的版本empty函数的不同之处
-
简单谈谈php中的unicode和utf8编码