找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 20067|回复: 338

[iptv信源 资源分享或寻求] 重庆电视台php

 火... [复制链接]
发表于 2022-5-13 12:17 | 显示全部楼层 |阅读模式
本帖最后由 圣地亚戈2468 于 2022-5-13 12:18 编辑

回复可见。

重庆卫视,id=2
重庆新闻,id=3
  1. <?php
  2. $t=date('YmdHi');
  3. $type=isset($_GET['type'])?$_GET['type']:'hls';
  4. $id=isset($_GET['id'])?$_GET['id']:'2';
  5. $u="https://sjlivecdn9.cbg.cn/".$t."/app_2/_definst_/ls_".$id.".stream/";

  6. if($type=='key'){
  7.     $d = k('https://sjlivecdnx.cbg.cn/1ive/stream_'.$id.'.php','https://www.cbg.cn/');
  8. }else if($type=='hls'){
  9.     //header("Content-type: application/x-mpegURL");
  10.     $m3u8=m3u8($u.'chunklist.m3u8');
  11.     getPHPm3u($m3u8,$u,$id);
  12. }

  13. function m3u8($url){
  14.     $ch = curl_init();
  15.     curl_setopt($ch, CURLOPT_URL, $url);
  16.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  17.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  18.     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  19.     curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
  20.     $result = curl_exec($ch);
  21.     curl_close($ch);
  22.     return $result;
  23. }
  24. function getPHPm3u($_m3u8, $_u, $_id)
  25. {
  26.     $phpself = substr($_SERVER['PHP_SELF'], strripos($_SERVER['PHP_SELF'], "/") + 1);
  27.     $_m3u8=preg_replace('/URI="(.*?)"/','URI="'.$phpself.'?type=key&id='.$_id.'"',$_m3u8);
  28.     if (strpos($_m3u8, '.ts')) {
  29.         preg_match_all("/\n(.*?).ts/", $_m3u8, $a);
  30.         for ($i = 0; $i < count($a[0]); $i++) {
  31.             $_m3u8 = str_replace($a[0][$i], "\n" . $_u . $a[1][$i] . '.ts', $_m3u8);
  32.         }
  33.         echo $_m3u8;
  34.     }
  35. }
  36. function k($url,$ref){
  37.     $ch = curl_init();
  38.     curl_setopt($ch, CURLOPT_URL, $url);
  39.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  40.     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  41.     //curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
  42.     curl_setopt ($ch, CURLOPT_REFERER, $ref);
  43.     $result = curl_exec($ch);
  44.     curl_close($ch);
  45. }
  46. ?>
复制代码

注:由于重庆台直播源m3u8里的key文件是带有Referer验证的,故本人已在此php加上key文件带Referer验证转发的代码,故在播放器里播放完全无需另加Referer。

点评

谢谢老大奉献  发表于 2022-5-13 14:18

评分

参与人数 2恩山币 +2 收起 理由
stealsmith + 1 感谢你的分享
ivkeji + 1 666,谢谢分享

查看全部评分

我的恩山、我的无线 The best wifi forum is right here.
发表于 2022-5-13 12:19 | 显示全部楼层
RE: 重庆电视台php [修改]
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:22 来自手机 | 显示全部楼层
哦看看先好的
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:25 | 显示全部楼层
什么重庆电视台PHP
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:40 | 显示全部楼层
[iptv信源 资源分享或寻求] 重庆电视台php
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:40 | 显示全部楼层
谢谢楼主的分享
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:41 | 显示全部楼层
感谢分享
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:42 | 显示全部楼层
谢谢分享
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:48 来自手机 | 显示全部楼层
谢谢分享呢
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:49 来自手机 | 显示全部楼层
看看什么情况
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:51 | 显示全部楼层
哈哈哈哈哈哈
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:53 | 显示全部楼层
谢谢楼主的分享
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:56 | 显示全部楼层
路过起来看看
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 12:59 | 显示全部楼层
路过起来看看
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-5-13 13:07 | 显示全部楼层
高手高手高高手!!
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-24 07:38

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表