diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-25 22:32:54 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-25 22:32:54 +0600 |
commit | 7a896817226405a772baa3808d63062d4ad11c94 (patch) | |
tree | f72f563a3bee11c0cd1b4ddddbfdd72650b2b89e /youtube_dl | |
parent | 51da40e6218f1dda2fc61650c308194e9b4acbc2 (diff) |
[bbc] Skip DASH until supported
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/bbc.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index 4b23f82ca..66e52641b 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -172,6 +172,7 @@ class BBCCoUkIE(InfoExtractor): supplier = connection.get('supplier') if protocol == 'http': href = connection.get('href') + transfer_format = connection.get('transferFormat') # ASX playlist if supplier == 'asx': for i, ref in enumerate(self._extract_asx_playlist(connection, programme_id)): @@ -179,6 +180,9 @@ class BBCCoUkIE(InfoExtractor): 'url': ref, 'format_id': 'ref%s_%s' % (i, supplier), }) + # Skip DASH until supported + elif transfer_format == 'dash': + pass # Direct link else: formats.append({ |