mirror of
https://github.com/soimort/you-get.git
synced 2025-02-11 20:52:31 +03:00
Fix for some streams on panda.tv which was in some way banned.
some small fixes fix for #1612 small fix. another small fix. Rewrote it to not use requests Updated the panda.tv plugin to use api v2
This commit is contained in:
parent
fe2720544a
commit
b8d86ae2cf
@ -8,21 +8,27 @@ import time
|
||||
|
||||
def panda_download(url, output_dir = '.', merge = True, info_only = False, **kwargs):
|
||||
roomid = url[url.rfind('/')+1:]
|
||||
json_request_url = 'http://www.panda.tv/api_room?roomid={}&pub_key=&_={}'.format(roomid, int(time.time()))
|
||||
json_request_url ="http://www.panda.tv/api_room_v2?roomid={}&__plat=pc_web&_={}".format(roomid, int(time.time()))
|
||||
content = get_html(json_request_url)
|
||||
errno = json.loads(content)['errno']
|
||||
errmsg = json.loads(content)['errmsg']
|
||||
api_json = json.loads(content)
|
||||
|
||||
errno = api_json["errno"]
|
||||
errmsg = api_json["errmsg"]
|
||||
if errno:
|
||||
raise ValueError("Errno : {}, Errmsg : {}".format(errno, errmsg))
|
||||
|
||||
data = json.loads(content)['data']
|
||||
title = data.get('roominfo')['name']
|
||||
room_key = data.get('videoinfo')['room_key']
|
||||
plflag = data.get('videoinfo')['plflag'].split('_')
|
||||
status = data.get('videoinfo')['status']
|
||||
data = api_json["data"]
|
||||
title = data["roominfo"]["name"]
|
||||
room_key = data["videoinfo"]["room_key"]
|
||||
plflag = data["videoinfo"]["plflag"].split("_")
|
||||
status = data["videoinfo"]["status"]
|
||||
if status is not "2":
|
||||
raise ValueError("The live stream is not online! (status:%s)" % status)
|
||||
real_url = 'http://pl{}.live.panda.tv/live_panda/{}.flv'.format(plflag[1],room_key)
|
||||
|
||||
data2 = json.loads(data["videoinfo"]["plflag_list"])
|
||||
rid = data2["auth"]["rid"]
|
||||
sign = data2["auth"]["sign"]
|
||||
ts = data2["auth"]["time"]
|
||||
real_url = "http://pl{}.live.panda.tv/live_panda/{}.flv?sign={}&ts={}&rid={}".format(plflag[1], room_key, sign, ts, rid)
|
||||
|
||||
print_info(site_info, title, 'flv', float('inf'))
|
||||
if not info_only:
|
||||
|
Loading…
Reference in New Issue
Block a user