Browse Source

[extractor/generic] Force Content-Type to lowecase

totalwebcasting
Sergey M․ 9 years ago
parent
commit
955737b2d4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/generic.py

+ 1
- 1
youtube_dl/extractor/generic.py View File

@ -1248,7 +1248,7 @@ class GenericIE(InfoExtractor):
}
# Check for direct link to a video
content_type = head_response.headers.get('Content-Type', '')
content_type = head_response.headers.get('Content-Type', '').lower()
m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type)
if m:
upload_date = unified_strdate(


Loading…
Cancel
Save