diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-07-23 18:07:55 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-07-23 18:07:55 +0700 | 
| commit | f1991ce928d2a670b37ce4ac0e088459d9e28202 (patch) | |
| tree | 33d0d32364e7410a782a714e4995a58c8537f912 | |
| parent | 6548030a17ba36de9f4a340cb71413d32b90f3a6 (diff) | |
[arkena] Skip dash formats
| -rw-r--r-- | youtube_dl/extractor/arkena.py | 9 | 
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({ | 
