1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-22 08:40:57 +02:00

[collegehumor] The video may not contain any file in webm format (#2277)

For example http://www.collegehumor.com/video/5812266
This commit is contained in:
Jaime Marquínez Ferrándiz 2014-01-30 18:21:01 +01:00
parent 90dc5e8693
commit c4db377cbb

View File

@ -49,7 +49,7 @@ class CollegeHumorIE(InfoExtractor):
PREFS = {'high_quality': 2, 'low_quality': 0}
formats = []
for format_key in ('mp4', 'webm'):
for qname, qurl in vdata[format_key].items():
for qname, qurl in vdata.get(format_key, {}).items():
formats.append({
'format_id': format_key + '_' + qname,
'url': qurl,