mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 10:11:52 +00:00
[svt] Fix DASH formats extraction
This commit is contained in:
parent
b4c1d6e800
commit
21d21b0c72
1 changed files with 1 additions and 1 deletions
|
@ -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':
|
||||||
|
|
Loading…
Reference in a new issue