diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-07-24 10:28:11 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-07-24 10:28:11 +0700 |
commit | 94c04a3c793a8332ea68bb2eff2979da4ef66af6 (patch) | |
tree | 27c391a0c1196f8707abb6b6fed7bf8045bf21be | |
parent | f09483485728871286f2670c8b8d62f56a89b1e1 (diff) |
[arkena] Enable dash formats
-rw-r--r-- | youtube_dl/extractor/arkena.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/youtube_dl/extractor/arkena.py b/youtube_dl/extractor/arkena.py index d7c5eeb8a..d45cae301 100644 --- a/youtube_dl/extractor/arkena.py +++ b/youtube_dl/extractor/arkena.py @@ -81,11 +81,8 @@ 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: - # 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 + formats.extend(self._extract_mpd_formats( + f_url, video_id, mpd_id=kind, fatal=False)) elif kind == 'silverlight': # TODO: process when ism is supported (see # https://github.com/rg3/youtube-dl/issues/8118) |