mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[tiktok] fallback url + cookie
This commit is contained in:
parent
1666c2709f
commit
4f5a0ad822
@ -12,7 +12,8 @@
|
||||
|
||||
|
||||
class TikTokBaseIE(InfoExtractor):
|
||||
def _extract_aweme(self, video_data, webpage, url):
|
||||
def _extract_aweme(self, props_data, webpage, url):
|
||||
video_data = try_get(props_data, lambda x: x['pageProps'], expected_type=dict)
|
||||
video_info = try_get(
|
||||
video_data, lambda x: x['itemInfo']['itemStruct'], dict)
|
||||
author_info = try_get(
|
||||
@ -32,14 +33,20 @@ def _extract_aweme(self, video_data, webpage, url):
|
||||
'height': height
|
||||
})
|
||||
|
||||
url = ''
|
||||
if not url:
|
||||
url = try_get(video_info, lambda x: x['video']['playAddr'])
|
||||
if not url:
|
||||
url = try_get(video_info, lambda x: x['video']['downloadAddr'])
|
||||
formats = []
|
||||
formats.append({
|
||||
'url': try_get(video_info, lambda x: x['video']['playAddr']),
|
||||
'url': url,
|
||||
'ext': 'mp4',
|
||||
'height': height,
|
||||
'width': width
|
||||
})
|
||||
|
||||
tracker = try_get(props_data, lambda x: x['initialProps']['$wid'])
|
||||
return {
|
||||
'comment_count': int_or_none(video_info.get('commentCount')),
|
||||
'duration': try_get(video_info, lambda x: x['video']['videoMeta']['duration'], int),
|
||||
@ -63,6 +70,7 @@ def _extract_aweme(self, video_data, webpage, url):
|
||||
'formats': formats,
|
||||
'http_headers': {
|
||||
'Referer': url,
|
||||
'Cookie': 'tt_webid=%s; tt_webid_v2=%s' % (tracker, tracker),
|
||||
}
|
||||
}
|
||||
|
||||
@ -130,10 +138,10 @@ def _real_extract(self, url):
|
||||
r'id=\"__NEXT_DATA__\"\s+type=\"application\/json\"\s*[^>]+>\s*(?P<json_string_ld>[^<]+)',
|
||||
webpage, 'json_string', group='json_string_ld')
|
||||
json_data = self._parse_json(json_string, video_id)
|
||||
video_data = try_get(json_data, lambda x: x['props']['pageProps'], expected_type=dict)
|
||||
props_data = try_get(json_data, lambda x: x['props'], expected_type=dict)
|
||||
|
||||
# Chech statusCode for success
|
||||
if video_data.get('statusCode') == 0:
|
||||
return self._extract_aweme(video_data, webpage, url)
|
||||
if props_data.get('pageProps').get('statusCode') == 0:
|
||||
return self._extract_aweme(props_data, webpage, url)
|
||||
|
||||
raise ExtractorError('Video not available', video_id=video_id)
|
||||
|
Loading…
Reference in New Issue
Block a user