[vidzi] Fix extraction (closes #16678)

This commit is contained in:
Urgau 2018-06-16 00:08:44 +02:00 committed by Sergey M
parent 87f89dacdd
commit 81c5df4f2c
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ class VidziIE(InfoExtractor):
self._search_regex(
r'setup\(([^)]+)\)', code, 'jwplayer data',
default=NO_DEFAULT if num == len(codes) else '{}'),
video_id, transform_source=js_to_json)
video_id, transform_source=lambda s: js_to_json(
re.sub(r'\s*\+\s*window\[.+?\]', '', s)))
if jwplayer_data:
break