Explorar o código

[extractor/generic] Properly extract format id from Content-Type

Fixes extraction for cases like: audio/x-mpegURL; charset=utf-8
Sergey M․ %!s(int64=9) %!d(string=hai) anos
pai
achega
263eff9537
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      youtube_dl/extractor/generic.py

+ 1 - 1
youtube_dl/extractor/generic.py

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