mirror of
https://github.com/wbt5/real-url.git
synced 2025-12-16 23:10:29 +08:00
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
# 人人直播:http://zhibo.renren.com/
|
||
import requests
|
||
import re
|
||
import hashlib
|
||
|
||
|
||
def renren(rid):
|
||
with requests.Session() as s:
|
||
res = s.get('http://activity.renren.com/liveroom/' + str(rid))
|
||
livestate = re.search(r'"liveState":(\d)', res.text)
|
||
if livestate:
|
||
try:
|
||
s = re.search(r'"playUrl":"([\s\S]*?)"', res.text).group(1)
|
||
if livestate.group(1) == '0':
|
||
accesskey = re.search(r'accesskey=(\w+)', s).group(1)
|
||
expire = re.search(r'expire=(\d+)', s).group(1)
|
||
live = re.search(r'(/live/\d+)', s).group(1)
|
||
c = accesskey + expire + live
|
||
key = hashlib.md5(c.encode('utf-8')).hexdigest()
|
||
e = s.split('?')[0].split('/')[4]
|
||
t = 'http://ksy-hls.renren.com/live/' + e + '/index.m3u8?key=' + key
|
||
return t
|
||
elif livestate.group(1) == '1':
|
||
return '回放:' + s
|
||
except IndexError:
|
||
raise Exception('解析错误')
|
||
else:
|
||
raise Exception('直播间不存在')
|
||
|
||
|
||
if __name__ == '__main__':
|
||
r = input('输入人人直播房间号:\n')
|
||
print(renren(r))
|