mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-09 21:33:22 +08:00
[Vidio] don't use video_id for _html_search_regex()
This commit is contained in:
parent
66e70a58d4
commit
f9ca0f11c3
@ -32,7 +32,7 @@ class VidioIE(InfoExtractor):
|
||||
webpage = self._download_webpage(url, display_id)
|
||||
|
||||
video_data = self._parse_json(self._html_search_regex(
|
||||
r'data-json-clips\s*=\s*"\[(.+)\]"', webpage, display_id), display_id)
|
||||
r'data-json-clips\s*=\s*"\[(.+)\]"', webpage, 'video data'), display_id)
|
||||
|
||||
formats = self._extract_m3u8_formats(
|
||||
video_data['sources'][0]['file'],
|
||||
|
Loading…
Reference in New Issue
Block a user