Coder Social home page Coder Social logo

chinatelecom-guangdongiptv-rtp-list's Issues

gzbn.php用法步奏可再详细?

如题。没有php基础,不知具体咋用gzbn.php?get_channel=<general|news|drama|sport|legal|uhd>。能否稍加说明一下?谢谢!

【求助】组播源突然无法正常播放

使用环境:深圳电信 光棒VLAN透传使用OpenWRT拨号并运行udpxy

之前一直可以使用开发者的组播源正常播放,但是从上周开始所有地址均不传输视频流,udpxy后台throughput显示为N/A

telegram-cloud-photo-size-5-6280500707115251033-y

请问有人碰到类似的情况么,有何解决思路?

播放大约250秒就中断

pppoe拨号,igmp proxy, udpxy都设好了。
播250秒左右就中断,没有下行数据。
udpxy已经按恩山的推荐加上了 -M 55参数。
不知道问题在哪里了。
抓包机顶盒可以看到访问125.88.98.37:9000/heartBeat,难道要模拟这个?

EPG

求教EPG怎么做的,,

请教如何抓取官方EPG

想请教下作者有没有办法抓取IPTV内网的EPG电子节目单出来,因为网上公共的EPG还是有很多地方台没有。

请教下ffmpeg怎么抓信息

我在深圳,之前都是路由器抓包获取了相关节目信息.

现在发现老兄的ffmpeg抓的节目比我之前抓包的多.想请教下是怎么抓的

当前我通过电脑拨号iptv,连接成功, ffmpeg命令抓不到...

另外,能提供下 联系方式吗

现在组播地址还能支持播放吗?

我家iptv盒子使用ipoe方式拨号,抓包数据跟版主的一样,电脑连接到iptv口上,用vlc播放不了组播地址,请问各位老大,是我的网络连接有问题吗?

8K

广东电信CCTV8k组播。 组播地址239.253.43.106:5146

能否把抓取到的频道RTSP地址关键信息一并放出来供大家查阅?

建议能否把抓取到的频道RTSP地址关键信息一并放出来供大家查阅?只需要提供问号前面的地址以及accountinfo前面一节22位的频道信息码就可以了。

一般广东电信IPTV的地址格式是:

rtsp://XXX.XX.XX.XX/PLTV/888888XX/224/XXXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_X.smil?rrsip=XXXXX,rrsip=XXXX&zoneoffset=XXX&icpid=XXXXX&accounttype=X&limitflux=X&limitdur=X&GuardEncType=X&accountinfo=%7E%7EV2.0%7EXXXXXXXXXXXXXXX%7EXXXXXXXXXXXXXXXXXXX,END

其中的accountinfo 是由频道信息和账户信息组成,格式是 %7E%7EV2.0%7E频道信息(22 字符)%7E账户信息(107 字符)。

比如CCTV-1超清的完整rtsp地址是这样的:
rtsp://125.88.52.18/PLTV/88888905/224/3221227610/10000100000000060000000004462931_0.smil?GuardEncType=2&accountinfo=%7E%7EV2.0%7EjrJOUmzk157kD2TdQGpdFA%7Exxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
真正频道关键信息就是:
rtsp://125.88.52.18/PLTV/88888905/224/3221227610/10000100000000060000000004462931_0.smil?jrJOUmzk157kD2TdQGpdFA
再比如CCTV-1高清的单播频道信息就是:
rtsp://125.88.52.18/PLTV/88888905/224/3221227270/10000100000000060000000001141346_0.smil?UwOl-Gl8Z1MFFJlY1q_RCg

看不了的??

为啥用potplayer都是打开不了的?还是今天5月24号更新的

gzbn.php失效

gzbn.php?get_channel=<general|news|drama|sport|legal|uhd>
好似拿唔到广州台噶地址,网页直接404,可以修复嘛,广州电信iptv无广州台真心屌西

一个获取 EPG 的接口

之前我研究了一下广东电信 IPTV 的鉴权方式:https://lovesykun.cn/archives/iptv-gd.html
最近又看了一下 EPG 的获取,然后写了个小服务,可以自动通过网络输出 m3u 和 xmltv:https://github.com/yujincheng08/rust-iptv-proxy

鉴权方式没变,然后 EPG 获取可以用 /EPG/jsp/iptvsnmv3/en/play/ajax/_ajax_getPlaybillList.jsp?channelId={id}&begin={begin_time}&end={end_time} 来获取。看了一下好像不是用同一套接口完成,所以不知道有没有参考意义。

下面是我调试用的 python 脚本:

from random import randint
import requests
from hashlib import md5
from Crypto.Util.Padding import pad
from Crypto.Cipher import DES3
from urllib.parse import urlparse
from datetime import datetime

userid = 
passwd = 
IMEI=''
IP=''
MAC=''


r = requests.get(f'http://eds.iptv.gd.cn:8082/EDS/jsp/AuthenticationURL?Action=Login&return_type=1&UserID={userid}')

epgurl = r.json()['epgurl']
base_url = f'{urlparse(epgurl).hostname}:{urlparse(epgurl).port}'

print(base_url)

r = requests.get(f'http://{base_url}/EPG/oauth/v2/authorize?response_type=EncryToken&client_id=smcphone&userid={userid}')

token: str = r.json()['EncryToken']
print(token)


key = md5(passwd.encode('utf-8')).hexdigest()[:24].upper()

cipher_encrypt = DES3.new(key.encode('ascii'), DES3.MODE_ECB)
auth = cipher_encrypt.encrypt(pad(f'{randint(0, 1e7)}${token}${userid}${IMEI}${IP}${MAC}$$CTC'.encode('utf-8'), 8)).hex().upper()

print(auth)
r = requests.get(f'http://{base_url}/EPG/oauth/v2/token?client_id=smcphone&DeviceType=deviceType&UserID={userid}&DeviceVersion=deviceVersion&userdomain=2&datadomain=3&accountType=1&authinfo={auth}&grant_type=EncryToken')
jsessionId = r.json()['jsessionId']
print(jsessionId)

r = requests.get(f'http://{base_url}/EPG/jsp/getchannellistHWCTC.jsp',
                 headers={'Cookie': f'JSESSIONID={jsessionId}'})

print(r.text)


r = requests.get(f'http://{base_url}/EPG/jsp/iptvsnmv3/en/play/ajax/_ajax_getPlaybillList.jsp?channelId=8766&begin={int(datetime.now().timestamp() * 1000 - 86400000)}&end={int(datetime.now().timestamp() * 1000) + 86400000 * 2}',
                 headers={'Cookie': f'JSESSIONID={jsessionId}'})

print(r.text)

最近有碰上花屏的吗

之前一直正常使用,直到这个月突然ffmpeg开始报错,录制出来的视频也是花屏的,用mpv直接观看也是花屏,但是用vlc观看就是正常的,不知道有没有解决方法
image_414
image_410
image_415

M3U缺少tvg-id属性导致EPG无法匹配

大部分播放器使用M3U中每个台的tvg-id与EPG中的channel id进行匹配,从而显示节目表。
但是目前本项目的M3U列表均缺少tvg-id属性,希望补齐,并对应EPG的channel id。

PS:可以顺带在M3U的头部加上x-tvg-url属性,直接调用EPG。

不懂就问

请问下这几个文件有什么区别??
image

RTSP 地址

你好,可以把 RTSP 地址也贴出来吗,也许有人可以看。

广东国际已停播但仍在 GuangdongIPTV_rtp_all.m3u 中

广东国际频道已于2023年10月10日停播,但GuangdongIPTV_rtp_all.m3u播放列表中仍有

#EXTINF:-1 tvg-name="广东国际" group-title="IPTV-广东电视台",广东国际
rtp://239.77.0.7:5146

该组播地址无法播放,不知为何没移除。

#EXTINF:-1 tvg-name="广东房产" group-title="IPTV-广东电视台",广东房产
rtp://239.77.0.14:5146

广东房产也应移除。

#EXTINF:-1 tvg-name="靓妆" group-title="IPTV-数字付费",靓妆
rtp://239.77.0.212:5146
#EXTINF:-1 tvg-name="靓妆" group-title="IPTV-数字付费",靓妆
rtp://239.77.1.118:5146

靓妆2023年6月1日停播

关于AVS2编码

大佬,发现很多超清频道都是AVS2编码,大部分播放器打开都只有声音,请问有什么办法播放这些高清频道么?

失效了吗

没开通iptv,之前直接就能播,现在不行了

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.