[extractor/tencent] Fix geo-restricted video (#5505)

Closes #5230
Authored by: elyse0
pull/5511/head
Elyse 2 years ago committed by GitHub
parent a8c754cc00
commit 0a4b2f4180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -67,9 +67,10 @@ class TencentBaseIE(InfoExtractor):
formats, subtitles = [], {}
for video_format in video_response['ul']['ui']:
if video_format.get('hls'):
if video_format.get('hls') or determine_ext(video_format['url']) == 'm3u8':
fmts, subs = self._extract_m3u8_formats_and_subtitles(
video_format['url'] + video_format['hls']['pt'], video_id, 'mp4', fatal=False)
video_format['url'] + traverse_obj(video_format, ('hls', 'pt'), default=''),
video_id, 'mp4', fatal=False)
for f in fmts:
f.update({'width': video_width, 'height': video_height})
@ -187,6 +188,10 @@ class VQQVideoIE(VQQBaseIE):
'thumbnail': r're:^https?://[^?#]+s0043cwsgj0',
'series': '青年理工工作者生活研究所',
},
}, {
# Geo-restricted to China
'url': 'https://v.qq.com/x/cover/mcv8hkc8zk8lnov/x0036x5qqsr.html',
'only_matching': True,
}]
def _real_extract(self, url):

Loading…
Cancel
Save