1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-12-03 13:57:54 +01:00

- removed video_id from regex

This commit is contained in:
carsten demming 2018-02-23 20:31:32 +01:00
parent 2fa1d205c7
commit 91ccc88362

View File

@ -26,7 +26,7 @@ class VidelloIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
vidello_settings = self._parse_json(self._search_regex(
r'var\s*.+' + video_id + '[^=]+=\s*({.+});', webpage, 'vidello settings'), video_id)
r'settings\s*=\s*({.+});', webpage, 'vidello settings'), video_id)
video_url = ""
video_sources = vidello_settings['player']['clip']['sources']