mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-28 04:16:49 +01:00
[youtube] Do not break upon unknown formats
This commit is contained in:
parent
629be17af4
commit
0b65e5d40f
@ -1290,7 +1290,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
|
|||||||
'url': video_real_url,
|
'url': video_real_url,
|
||||||
'player_url': player_url,
|
'player_url': player_url,
|
||||||
}
|
}
|
||||||
dct.update(self._formats[itag])
|
if itag in self._formats:
|
||||||
|
dct.update(self._formats[itag])
|
||||||
formats.append(dct)
|
formats.append(dct)
|
||||||
return formats
|
return formats
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user