Browse Source

[globo] Prefer native m3u8

Sergey M․ 9 năm trước cách đây
mục cha
commit
5d235ca7f6
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      youtube_dl/extractor/globo.py

+ 2 - 1
youtube_dl/extractor/globo.py

@@ -368,7 +368,8 @@ class GloboIE(InfoExtractor):
             signed_url = '%s?h=%s&k=%s' % (resource_url, signed_hash, 'flash')
             signed_url = '%s?h=%s&k=%s' % (resource_url, signed_hash, 'flash')
             if resource_id.endswith('m3u8') or resource_url.endswith('.m3u8'):
             if resource_id.endswith('m3u8') or resource_url.endswith('.m3u8'):
                 m3u8_formats = self._extract_m3u8_formats(
                 m3u8_formats = self._extract_m3u8_formats(
-                    signed_url, resource_id, 'mp4', m3u8_id='hls', fatal=False)
+                    signed_url, resource_id, 'mp4', entry_protocol='m3u8_native',
+                    m3u8_id='hls', fatal=False)
                 if m3u8_formats:
                 if m3u8_formats:
                     formats.extend(m3u8_formats)
                     formats.extend(m3u8_formats)
             else:
             else: