aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-25 22:32:54 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-25 22:32:54 +0600
commit7a896817226405a772baa3808d63062d4ad11c94 (patch)
treef72f563a3bee11c0cd1b4ddddbfdd72650b2b89e
parent51da40e6218f1dda2fc61650c308194e9b4acbc2 (diff)
downloadyoutube-dl-7a896817226405a772baa3808d63062d4ad11c94.tar.xz
[bbc] Skip DASH until supported
-rw-r--r--youtube_dl/extractor/bbc.py4
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({