mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09: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:
parent
90dc5e8693
commit
c4db377cbb
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user