diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-04 16:53:21 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-04 16:53:21 +0600 |
commit | c3459d24f16056e8ae8f982db2a10871ef18e80a (patch) | |
tree | 776644d3d20e76a15a2d2b5d464d3cd3e168e5a7 | |
parent | e3778cce0e912f803ea10cb806406f7fcafe840f (diff) |
[globo] Skip unsupported smooth streaming
-rw-r--r-- | youtube_dl/extractor/globo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/globo.py b/youtube_dl/extractor/globo.py index c28899011..ec451bb07 100644 --- a/youtube_dl/extractor/globo.py +++ b/youtube_dl/extractor/globo.py @@ -338,7 +338,7 @@ class GloboIE(InfoExtractor): formats = [] for resource in video['resources']: resource_id = resource.get('_id') - if not resource_id: + if not resource_id or resource_id.endswith('manifest'): continue security = self._download_json( |