aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/globo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-04 16:51:19 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-04 16:51:19 +0600
commite3778cce0e912f803ea10cb806406f7fcafe840f (patch)
treed1875e2a5de9bc4b6741dda0027735fbdc87255a /youtube_dl/extractor/globo.py
parentad607563a2fbb5275ea39f7a052c09ffa232e271 (diff)
downloadyoutube-dl-e3778cce0e912f803ea10cb806406f7fcafe840f.tar.xz
[globo] Improve m3u8 extraction
Diffstat (limited to 'youtube_dl/extractor/globo.py')
-rw-r--r--youtube_dl/extractor/globo.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/globo.py b/youtube_dl/extractor/globo.py
index 828e40d76..c28899011 100644
--- a/youtube_dl/extractor/globo.py
+++ b/youtube_dl/extractor/globo.py
@@ -367,7 +367,10 @@ class GloboIE(InfoExtractor):
resource_url = resource['url']
signed_url = '%s?h=%s&k=%s' % (resource_url, signed_hash, 'flash')
if resource_id.endswith('m3u8') or resource_url.endswith('.m3u8'):
- formats.extend(self._extract_m3u8_formats(signed_url, resource_id, 'mp4'))
+ m3u8_formats = self._extract_m3u8_formats(
+ signed_url, resource_id, 'mp4', m3u8_id='hls', fatal=False)
+ if m3u8_formats:
+ formats.extend(m3u8_formats)
else:
formats.append({
'url': signed_url,