找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 5918|回复: 191

[iptv信源 资源分享或寻求] 关于安徽电视台

 火.. [复制链接]
发表于 2023-5-27 22:02 | 显示全部楼层 |阅读模式
迅雷TV
本帖最后由 guoma 于 2023-6-25 21:30 编辑

安徽电视台网页版和APP版ts部分都取消了referfer验证,故两版本php代理都简单了,且运行流畅。

网页版php:
  1. <?php
  2. //https://www.ahtv.cn/folder9000/folder20193?channelIndex=0
  3. $id = isset($_GET['id'])?$_GET['id']:'ahws';
  4. $n = [
  5. 'ahws' => 47,
  6. 'ahjjsh' => 71,
  7. 'ahzyty' => 73,
  8. 'ahys' => 72,
  9. 'ahgg' => 50,
  10. 'ahnykj' => 51,
  11. 'ahgj' => 70,
  12. 'ahyd' => 68,
  13. ];
  14. $url = 'http://mapi.ahtv.cn/api/open/ahtv/channel.php?appid=m2otdjzyuuu8bcccnq&appkey=5eab6b4e1969a8f9aef459699f0d9000&is_audio=0&category_id=1';
  15. $d = json_decode(m3u8($url));
  16.   for($i=0;$i<count($d);$i++){
  17.     if($n[$id] == $d[$i] -> id){
  18.       $m3u8 = $d[$i] -> m3u8;
  19.       }
  20.      }
  21. $host = 'https://'.parse_url($m3u8)['host'];
  22. $burl = dirname($m3u8)."/";
  23. $live = $burl.strstr(m3u8($m3u8),'hd');
  24. header('Content-Type: application/vnd.apple.mpegurl');
  25. print_r(preg_replace("/(.*?.ts)/i", $host."$1",m3u8(trim($live))));

  26. function m3u8($url){
  27.        $ch = curl_init($url);
  28.        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  29.        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  30.        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  31.        curl_setopt($ch, CURLOPT_HTTPHEADER, ["User-Agent: Mozilla/5.0",]);
  32.        curl_setopt($ch, CURLOPT_REFERER, 'https://www.ahtv.cn/');
  33.        $result = curl_exec($ch);
  34.        curl_close($ch);
  35.        return $result;
  36. }
  37. ?>

复制代码



APP版php:

  1. <?php
  2. error_reporting(0);
  3. //https://tvzb-hw.ahtv.cn/application/tvradio/h5/detail.html?type=tv
  4. $id = isset($_GET['id'])?$_GET['id']:'ahws';
  5. $n = [
  6. 'ahws' => 11,
  7. 'ahjjsh' => 12,
  8. 'ahys' => 13,
  9. 'ahnykj' => 14,
  10. 'ahgg' => 16,
  11. 'ahzyty' => 17,
  12. 'ahgj' => 18,
  13. ];
  14. $url = 'https://tvzb-hw.ahtv.cn/tvradio/Tvfront/getTvInfo?loop=1&tv_id='.$n[$id];
  15. $m3u8 = json_decode(file_get_contents($url))->data->m3u8;
  16. $ch = curl_init($m3u8);
  17. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  18. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  19. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  20. curl_setopt($ch, CURLOPT_REFERER,'https://tvzb-hw.ahtv.cn/');
  21. $p = curl_exec($ch);      
  22. curl_close($ch);
  23. $live = trim(strstr($p,"https"));
  24. $burl = 'https://'.parse_url($live)['host'];
  25. $ch = curl_init($live);
  26. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  27. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  28. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  29. curl_setopt($ch, CURLOPT_REFERER,'https://tvzb-hw.ahtv.cn/');
  30. $play = curl_exec($ch);      
  31. curl_close($ch);
  32. header('Content-Type: application/vnd.apple.mpegurl');
  33. print_r(preg_replace("/(.*?.ts)/i",$burl."$1",$play));
  34. ?>
复制代码


点评

都失效了,请大佬修复一下  发表于 2023-6-10 06:24
6月8日,今天应该都失效了,求大佬修复  发表于 2023-6-8 20:59
APP是后门代码呀,来个正门的学习下吧。  发表于 2023-5-28 00:27
我的恩山、我的无线 The best wifi forum is right here.
发表于 2023-5-27 22:06 来自手机 | 显示全部楼层
谢谢谢谢
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:09 | 显示全部楼层
赶快过来
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:11 | 显示全部楼层
前排支持~~~~~
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:13 来自手机 | 显示全部楼层
谢谢!
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:14 | 显示全部楼层
都取消了referfer验证,故两版本php代理都简单了,且运行流畅。
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:18 | 显示全部楼层
感谢分享。
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:23 | 显示全部楼层
感谢分享。
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:25 | 显示全部楼层
感谢分享
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:30 | 显示全部楼层
前排支持~~~~~
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:31 来自手机 | 显示全部楼层
谢分享......
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:34 | 显示全部楼层
永远的神
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:34 | 显示全部楼层
感谢分享。
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:35 | 显示全部楼层
感谢楼主分享
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

发表于 2023-5-27 22:38 | 显示全部楼层
顶楼主啦..希望楼主多发精品好帖啦.....
我的恩山、我的无线 The best wifi forum is right here.
回复 支持 反对

使用道具 举报

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

本版积分规则

关闭

欢迎大家光临恩山无线论坛上一条 /1 下一条

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

GMT+8, 2023-12-9 15:25

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

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

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