Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/svt.py
|
@ -16,7 +16,7 @@ class SVTBaseIE(InfoExtractor): |
|
|
def _extract_video(self, video_info, video_id): |
|
|
def _extract_video(self, video_info, video_id): |
|
|
formats = [] |
|
|
formats = [] |
|
|
for vr in video_info['videoReferences']: |
|
|
for vr in video_info['videoReferences']: |
|
|
player_type = vr.get('playerType') |
|
|
|
|
|
|
|
|
player_type = vr.get('playerType') or vr.get('format') |
|
|
vurl = vr['url'] |
|
|
vurl = vr['url'] |
|
|
ext = determine_ext(vurl) |
|
|
ext = determine_ext(vurl) |
|
|
if ext == 'm3u8': |
|
|
if ext == 'm3u8': |
|
|