mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-23 08:54:33 +01:00
- changed greedy to lazy
This commit is contained in:
parent
72d7391d95
commit
8041289f19
@ -26,7 +26,7 @@ class VidelloIE(InfoExtractor):
|
|||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
vidello_settings = self._parse_json(self._search_regex(
|
vidello_settings = self._parse_json(self._search_regex(
|
||||||
r'settings=({.+});', webpage, 'vidello settings'), video_id)
|
r'settings\s*=\s*({.+?});', webpage, 'vidello settings'), video_id)
|
||||||
|
|
||||||
video_url = ""
|
video_url = ""
|
||||||
video_sources = vidello_settings['player']['clip']['sources']
|
video_sources = vidello_settings['player']['clip']['sources']
|
||||||
|
Loading…
Reference in New Issue
Block a user