about summary refs log tree commit diff
path: root/youtube_dl/extractor/once.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-11-13 10:24:35 +0100
committerRemita Amine <remitamine@gmail.com>2017-11-13 10:24:35 +0100
commitd4e31b72b971172ffdee7fbe3070d20e4454259c (patch)
treec93184d6adabf597e954e4444d431b5c922e7824 /youtube_dl/extractor/once.py
parent5fc12b954971f5f63d1e87b05e8b01a9ae0e3b01 (diff)
downloadyoutube-dl-d4e31b72b971172ffdee7fbe3070d20e4454259c.tar.gz
youtube-dl-d4e31b72b971172ffdee7fbe3070d20e4454259c.tar.xz
youtube-dl-d4e31b72b971172ffdee7fbe3070d20e4454259c.zip
[gamespot] lower the preference of http formats(#14652)
Diffstat (limited to 'youtube_dl/extractor/once.py')
-rw-r--r--youtube_dl/extractor/once.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/once.py b/youtube_dl/extractor/once.py
index 6ba6fe5d3..8ae5fadd8 100644
--- a/youtube_dl/extractor/once.py
+++ b/youtube_dl/extractor/once.py
@@ -11,7 +11,7 @@ class OnceIE(InfoExtractor):
     ADAPTIVE_URL_TEMPLATE = 'http://once.unicornmedia.com/now/master/playlist/%s/%s/%s/content.m3u8'
     PROGRESSIVE_URL_TEMPLATE = 'http://once.unicornmedia.com/now/media/progressive/%s/%s/%s/%s/content.mp4'
 
-    def _extract_once_formats(self, url, skip_http_formats=False):
+    def _extract_once_formats(self, url, http_formats_preference=None):
         domain_id, application_id, media_item_id = re.match(
             OnceIE._VALID_URL, url).groups()
         formats = self._extract_m3u8_formats(
@@ -27,7 +27,7 @@ class OnceIE(InfoExtractor):
             rendition_id = self._search_regex(
                 r'/now/media/playlist/[^/]+/[^/]+/([^/]+)',
                 adaptive_format['url'], 'redition id', default=None)
-            if rendition_id and not skip_http_formats:
+            if rendition_id:
                 progressive_format = adaptive_format.copy()
                 progressive_format.update({
                     'url': self.PROGRESSIVE_URL_TEMPLATE % (
@@ -35,6 +35,7 @@ class OnceIE(InfoExtractor):
                     'format_id': adaptive_format['format_id'].replace(
                         'hls', 'http'),
                     'protocol': 'http',
+                    'preference': http_formats_preference,
                 })
                 progressive_formats.append(progressive_format)
         self._check_formats(progressive_formats, media_item_id)