forked from wbt5/real-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kuaishou.py
45 lines (36 loc) · 1.42 KB
/
kuaishou.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 获取快手直播的真实流媒体地址,默认输出最高画质
# https://live.kuaishou.com/u/KPL704668133
# 如获取失败,尝试修改 cookie 中的 did
import json
import re
import requests
class KuaiShou:
def __init__(self, rid):
self.rid = rid
def get_real_url(self):
headers = {
'user-agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 '
'(KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',
'cookie': 'did=web_d563dca728d28b00336877723e0359ed'}
with requests.Session() as s:
res = s.get('https://m.gifshow.com/fw/live/{}'.format(self.rid), headers=headers)
livestream = re.search(r'liveStream":(.*),"obfuseData', res.text)
if livestream:
livestream = json.loads(livestream.group(1))
*_, hlsplayurls = livestream['multiResolutionHlsPlayUrls']
urls, = hlsplayurls['urls']
url = urls['url']
return url
else:
raise Exception('直播间不存在或未开播')
def get_real_url(rid):
try:
ks = KuaiShou(rid)
return ks.get_real_url()
except Exception as e:
print('Exception:', e)
return False
if __name__ == '__main__':
# KPL704668133
r = input('请输入快手直播房间ID:\n')
print(get_real_url(r))