diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-04 16:55:39 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-04 16:55:39 +0600 |
commit | 5d235ca7f66af1f82c1a4d753d238f48fc3afa40 (patch) | |
tree | cfe3ef27d0ab87b4dbc09d9d6ac0a9fcaf5e9326 /youtube_dl/extractor | |
parent | c3459d24f16056e8ae8f982db2a10871ef18e80a (diff) |
[globo] Prefer native m3u8
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/globo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/globo.py b/youtube_dl/extractor/globo.py index ec451bb07..2a805cbb2 100644 --- a/youtube_dl/extractor/globo.py +++ b/youtube_dl/extractor/globo.py @@ -368,7 +368,8 @@ class GloboIE(InfoExtractor): signed_url = '%s?h=%s&k=%s' % (resource_url, signed_hash, 'flash') if resource_id.endswith('m3u8') or resource_url.endswith('.m3u8'): 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: formats.extend(m3u8_formats) else: |