mirror of
https://github.com/wbt5/real-url.git
synced 2025-06-17 08:25:25 +08:00
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
# 获取来疯直播的真实流媒体地址。
|
||
# 来疯直播就是优酷直播的个人主播频道,不同于优酷直播下的轮播台和体育直播。
|
||
# 来疯直播间链接形式:https://v.laifeng.com/8032155
|
||
|
||
import requests
|
||
import re
|
||
|
||
|
||
class LaiFeng:
|
||
|
||
def __init__(self, rid):
|
||
self.rid = rid
|
||
|
||
def get_real_url(self):
|
||
try:
|
||
response_main = requests.get(url='http://v.laifeng.com/{}/m'.format(self.rid)).text
|
||
stream_name = re.findall(r"initAlias:'(.*)?'", response_main)[0]
|
||
real_url = {}
|
||
for stream_format in ['HttpFlv', 'Hls']:
|
||
request_url = 'https://lapi.lcloud.laifeng.com/Play?AppId=101&CallerVersion=2.0&StreamName={}&Action=Schedule&Version=2.0&Format={}'.format(stream_name, stream_format)
|
||
response = requests.get(url=request_url).json()
|
||
real_url[stream_format] = response.get(stream_format)[0].get('Url')
|
||
except:
|
||
raise Exception('该直播间不存在或未开播')
|
||
return real_url
|
||
|
||
|
||
def get_real_url(rid):
|
||
try:
|
||
lf = LaiFeng(rid)
|
||
return lf.get_real_url()
|
||
except Exception as e:
|
||
print('Exception:', e)
|
||
return False
|
||
|
||
|
||
if __name__ == '__main__':
|
||
r = input('请输入来疯直播房间号:\n')
|
||
print(get_real_url(r))
|