mirror of
https://github.com/wbt5/real-url.git
synced 2025-06-17 08:25:25 +08:00
44 lines
1006 B
Python
44 lines
1006 B
Python
# -*- coding: utf-8 -*-
|
||
# @Time: 2021/5/2 23:23
|
||
# @Project: real-url
|
||
# @Author: wbt5
|
||
# @Blog: https://wbt5.com
|
||
|
||
import re
|
||
|
||
import requests
|
||
|
||
|
||
class TikTok:
|
||
|
||
def __init__(self, rid):
|
||
self.rid = rid
|
||
|
||
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',
|
||
}
|
||
res = requests.get(self.rid, headers=headers).text
|
||
url = re.search(r'"LiveUrl":"(.*?m3u8)",', res)
|
||
|
||
if url:
|
||
return url.group(1)
|
||
else:
|
||
raise Exception('link invalid')
|
||
|
||
|
||
def get_real_url(rid):
|
||
try:
|
||
tt = TikTok(rid)
|
||
return tt.get_real_url()
|
||
except Exception as e:
|
||
print('Exception:', e)
|
||
return False
|
||
|
||
|
||
if __name__ == '__main__':
|
||
# https://vm.tiktok.com/ZMe45tomE
|
||
r = input('请输入 TikTok 分享链接:\n')
|
||
print(get_real_url(r))
|