summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-23 18:07:55 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-23 18:07:55 +0700
commitf1991ce928d2a670b37ce4ac0e088459d9e28202 (patch)
tree33d0d32364e7410a782a714e4995a58c8537f912
parent6548030a17ba36de9f4a340cb71413d32b90f3a6 (diff)
downloadyoutube-dl-f1991ce928d2a670b37ce4ac0e088459d9e28202.tar.gz
youtube-dl-f1991ce928d2a670b37ce4ac0e088459d9e28202.tar.xz
youtube-dl-f1991ce928d2a670b37ce4ac0e088459d9e28202.zip
[arkena] Skip dash formats
-rw-r--r--youtube_dl/extractor/arkena.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/arkena.py b/youtube_dl/extractor/arkena.py
index d003a027b..d7c5eeb8a 100644
--- a/youtube_dl/extractor/arkena.py
+++ b/youtube_dl/extractor/arkena.py
@@ -81,12 +81,15 @@ class ArkenaIE(InfoExtractor):
                     formats.extend(self._extract_f4m_formats(
                         f_url, video_id, f4m_id=kind, fatal=False))
                 elif kind == 'dash' or 'mpd' in exts:
-                    formats.extend(self._extract_mpd_formats(
-                        f_url, video_id, mpd_id=kind, fatal=False))
+                    # TODO: Current DASH formats are broken - $Time$ pattern in
+                    # <SegmentTemplate> not implemented yet
+                    # formats.extend(self._extract_mpd_formats(
+                    #    f_url, video_id, mpd_id=kind, fatal=False))
+                    continue
                 elif kind == 'silverlight':
                     # TODO: process when ism is supported (see
                     # https://github.com/rg3/youtube-dl/issues/8118)
-                    pass
+                    continue
                 else:
                     tbr = float_or_none(f.get('Bitrate'), 1000)
                     formats.append({