1
0
mirror of https://github.com/wbt5/real-url.git synced 2025-07-26 02:21:43 +08:00

新增企鹅电竞

This commit is contained in:
wbt5 2019-11-17 22:11:09 +08:00
parent 6ad36b921a
commit b7d601fbf9
2 changed files with 2 additions and 28 deletions

View File

@ -1,6 +1,6 @@
获取斗鱼&虎牙&哔哩哔哩&战旗直播&网易CC&火猫直播 直播间的真实流媒体地址直播源可在PotPlayer、flv.js等播放器中播放。
获取斗鱼&虎牙&哔哩哔哩&战旗直播&网易CC&火猫直播&企鹅电竞 直播间的真实流媒体地址直播源可在PotPlayer、flv.js等播放器中播放。
2019年11月17日新增火猫直播
2019年11月17日新增火猫直播;新增企鹅电竞
2019年11月16日新增战旗tv直播源新增网易CC直播。

View File

@ -1,26 +0,0 @@
# 获取网易CC的真实流媒体地址。
# 默认为最高画质
import requests
def get_real_url(rid):
room_url = 'https://api.cc.163.com/v1/activitylives/anchor/lives?anchor_ccid=' + str(rid)
response = requests.get(url=room_url).json()
data = response.get('data', 0)
if data:
channel_id = data.get('{}'.format(rid)).get('channel_id', 0)
if channel_id:
response = requests.get('https://cc.163.com/live/channel/?channelids=' + str(channel_id)).json()
real_url = response.get('data')[0].get('sharefile')
else:
real_url = '直播间不存在'
else:
real_url = '输入错误'
return real_url
rid = input('请输入网易CC直播房间号\n')
real_url = get_real_url(rid)
print('该直播间源地址为:\n' + real_url)