mirror of
https://github.com/wbt5/real-url.git
synced 2025-07-30 05:20:31 +08:00
Compare commits
No commits in common. "28409ccd41be7ff901c8e2da8a68ba9c52cd695f" and "af57d695e406d6f5005e85e98c91948c6dc6bcca" have entirely different histories.
28409ccd41
...
af57d695e4
5
173.py
5
173.py
@ -9,9 +9,9 @@ class YQS:
|
||||
self.rid = rid
|
||||
|
||||
def get_real_url(self):
|
||||
params = f'roomId={self.rid}'
|
||||
params = 'roomId={}'.format(self.rid)
|
||||
with requests.Session() as s:
|
||||
res = s.post('https://www.173.com/room/getVieoUrl', params=params).json()
|
||||
res = s.post('http://www.173.com/room/getVieoUrl', params=params).json()
|
||||
data = res['data']
|
||||
if data:
|
||||
status = data['status']
|
||||
@ -35,3 +35,4 @@ def get_real_url(rid):
|
||||
if __name__ == '__main__':
|
||||
r = input('输入艺气山直播房间号:\n')
|
||||
print(get_real_url(r))
|
||||
|
||||
|
3
acfun.py
3
acfun.py
@ -32,7 +32,7 @@ class AcFun:
|
||||
'did': 'H5_',
|
||||
'acfun.api.visitor_st': visitor_st
|
||||
}
|
||||
data = f'authorId={self.rid}&pullStreamType=FLV'
|
||||
data = 'authorId={}&pullStreamType=FLV'.format(self.rid)
|
||||
res = s.post(url, params=params, data=data, headers=headers).json()
|
||||
if res['result'] == 1:
|
||||
data = res['data']
|
||||
@ -58,3 +58,4 @@ def get_real_url(rid):
|
||||
if __name__ == '__main__':
|
||||
r = input('请输入AcFun直播房间号:\n')
|
||||
print(get_real_url(r))
|
||||
|
||||
|
7
cc.py
7
cc.py
@ -10,13 +10,13 @@ class CC:
|
||||
self.rid = rid
|
||||
|
||||
def get_real_url(self):
|
||||
room_url = f'https://api.cc.163.com/v1/activitylives/anchor/lives?anchor_ccid={self.rid}'
|
||||
room_url = 'https://api.cc.163.com/v1/activitylives/anchor/lives?anchor_ccid=' + str(self.rid)
|
||||
response = requests.get(url=room_url).json()
|
||||
data = response.get('data', 0)
|
||||
if data:
|
||||
channel_id = data.get(f'{self.rid}').get('channel_id', 0)
|
||||
channel_id = data.get('{}'.format(self.rid)).get('channel_id', 0)
|
||||
if channel_id:
|
||||
response = requests.get(f'https://cc.163.com/live/channel/?channelids={channel_id}').json()
|
||||
response = requests.get('https://cc.163.com/live/channel/?channelids=' + str(channel_id)).json()
|
||||
real_url = response.get('data')[0].get('sharefile')
|
||||
else:
|
||||
raise Exception('直播间不存在')
|
||||
@ -37,3 +37,4 @@ def get_real_url(rid):
|
||||
if __name__ == '__main__':
|
||||
r = input('请输入网易CC直播房间号:\n')
|
||||
print(get_real_url(r))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user