Browse Source

[vidzi] Fix extraction (closes #16678)

master-ytdl-org
Urgau 6 years ago
committed by Sergey M
parent
commit
81c5df4f2c
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/vidzi.py

+ 2
- 1
youtube_dl/extractor/vidzi.py 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


Loading…
Cancel
Save