Browse Source

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

For example http://www.collegehumor.com/video/5812266
totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
c4db377cbb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/collegehumor.py

+ 1
- 1
youtube_dl/extractor/collegehumor.py 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,


Loading…
Cancel
Save