1
0
mirror of https://github.com/wbt5/real-url.git synced 2026-03-22 08:16:55 +08:00

Compare commits

...

8 Commits

Author SHA1 Message Date
wbt5
b6daf0abcd
Merge branch 2022-07-23 15:51:53 +08:00
wbt5
e90452eacc
🎨 Improve BIGO
-优化代码
2022-07-23 15:38:00 +08:00
乌帮图
bdfb83c580
🐛 Fix 抖音
fix douyin
2022-07-23 15:00:38 +08:00
乌帮图
f1affeda8e
🐛 Fix twitch
Update twitch.py
2022-07-23 14:58:35 +08:00
乌帮图
d72082e554
@FUTURETECH6 🐛 Fix 斗鱼flv源
改了斗鱼flv源,旧的崩了
2022-07-23 14:42:57 +08:00
ysex
4b2c4d5258
Update twitch.py
Client-ID 改成 clientId
2022-05-31 11:51:39 +08:00
xiyao
1768da7a9b 🐛 Fix 斗鱼flv源 2022-04-21 16:09:31 +08:00
DatouCode
3a62d03918
fix douyin 2022-02-05 23:48:31 +08:00
4 changed files with 47 additions and 40 deletions

View File

@ -3,11 +3,12 @@
# @Project: my-spiders
# @Author: wbt5
# @Blog: https://wbt5.com
# BIGO LIVE:https://www.bigo.tv/cn/
import requests
class bigo:
class Bigo:
def __init__(self, rid):
self.rid = rid
@ -23,7 +24,7 @@ class bigo:
def get_real_url(rid):
try:
url = bigo(rid)
url = Bigo(rid)
return url.get_real_url()
except Exception as e:
print('Exception', e)

View File

@ -1,45 +1,51 @@
# 获取抖音直播的真实流媒体地址,默认最高画质。
# 如果知道该直播间如“6779127643792280332”形式的room_id则直接传入room_id。
# 如果不知道room_id可以使用手机上打开直播间后选择“分享--复制链接”传入如“https://v.douyin.com/qyRqMp/”形式的分享链接。
#
import requests
import re
import sys
import requests
class DouYin:
DEBUG = False
def __init__(self, rid):
self.rid = rid
headers = {
'authority': 'v.douyin.com',
'user-agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1',
}
def get_real_url(self):
headers = {
'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, '
'like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',
}
try:
if 'v.douyin.com' in self.rid:
room_id = re.findall(r'(\d{19})', requests.get(url=self.rid).url)[0]
else:
room_id = self.rid
room_url = 'https://webcast.amemv.com/webcast/reflow/{}'.format(room_id)
response = requests.get(url=room_url, headers= headers).text
rtmp_pull_url = re.search(r'"rtmp_pull_url":"(.*?flv)"', response).group(1)
hls_pull_url = re.search(r'"hls_pull_url":"(.*?m3u8)"', response).group(1)
real_url = [rtmp_pull_url, hls_pull_url]
except:
raise Exception('直播间不存在或未开播或参数错误')
return real_url
def get_real_url(rid):
url = input('请输入抖音直播链接或19位room_id')
if re.match(r'\d{19}', url):
room_id = url
else:
try:
dy = DouYin(rid)
return dy.get_real_url()
url = re.search(r'(https.*)', url).group(1)
response = requests.head(url, headers=headers)
url = response.headers['location']
room_id = re.search(r'\d{19}', url).group(0)
except Exception as e:
print('Exception', e)
return False
if DEBUG:
print(e)
print('获取room_id失败')
sys.exit(1)
print('room_id', room_id)
try:
headers.update({
'authority': 'webcast.amemv.com',
'cookie': '_tea_utm_cache_1128={%22utm_source%22:%22copy%22%2C%22utm_medium%22:%22android%22%2C%22utm_campaign%22:%22client_share%22}',
})
if __name__ == '__main__':
r = input('请输入抖音直播间room_id或分享链接\n')
print(get_real_url(r))
params = (
('type_id', '0'),
('live_id', '1'),
('room_id', room_id),
('app_id', '1128'),
)
response = requests.get('https://webcast.amemv.com/webcast/room/reflow/info/', headers=headers, params=params).json()
rtmp_pull_url = response['data']['room']['stream_url']['rtmp_pull_url']
hls_pull_url = response['data']['room']['stream_url']['hls_pull_url']
print(rtmp_pull_url)
print(hls_pull_url)
except Exception as e:
if DEBUG:
print(e)
print('获取real url失败')

View File

@ -127,7 +127,7 @@ class DouYu:
else:
key = self.get_js()
real_url = {}
real_url["flv"] = "http://dyscdnali1.douyucdn.cn/live/{}.flv?uuid=".format(key)
real_url["flv"] = "http://vplay1a.douyucdn.cn/live/{}.flv?uuid=".format(key)
real_url["x-p2p"] = "http://tx2play1.douyucdn.cn/live/{}.xs?uuid=".format(key)
return real_url

View File

@ -23,7 +23,7 @@ class Twitch:
def get_client_id(self):
try:
res = self.s.get(f'https://www.twitch.tv/{self.rid}').text
client_id = re.search(r'"Client-ID":"(.*?)"', res).group(1)
client_id = re.search(r'clientId="(.*?)"', res).group(1)
return client_id
except requests.exceptions.ConnectionError:
raise Exception('ConnectionError')