1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 22:55:42 +07:00

[youtube] Do not break upon unknown formats

This commit is contained in:
Philipp Hagemeister
2014-01-23 23:21:42 +01:00
parent 629be17af4
commit 0b65e5d40f

View File

@@ -1290,7 +1290,8 @@ def _map_to_format_list(urlmap):
'url': video_real_url,
'player_url': player_url,
}
dct.update(self._formats[itag])
if itag in self._formats:
dct.update(self._formats[itag])
formats.append(dct)
return formats