logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 94c04a3c793a8332ea68bb2eff2979da4ef66af6
parent f09483485728871286f2670c8b8d62f56a89b1e1
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 24 Jul 2016 10:28:11 +0700

[arkena] Enable dash formats

Diffstat:

Myoutube_dl/extractor/arkena.py7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git 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)