youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit d9cb92c84058bce2c222b7a634608d7a16addcb2
parent 94c04a3c793a8332ea68bb2eff2979da4ef66af6
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 24 Jul 2016 10:29:09 +0700

[telegraaf] Enable dash formats

Diffstat:
Myoutube_dl/extractor/telegraaf.py | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/telegraaf.py b/youtube_dl/extractor/telegraaf.py @@ -49,9 +49,8 @@ class TelegraafIE(InfoExtractor): formats.extend(self._extract_m3u8_formats( manifest_url, video_id, ext='mp4', m3u8_id='hls')) elif ext == 'mpd': - # TODO: Current DASH formats are broken - $Time$ pattern in - # <SegmentTemplate> not implemented yet - continue + formats.extend(self._extract_mpd_formats( + manifest_url, video_id, mpd_id='dash', fatal=False)) else: self.report_warning('Unknown adaptive format %s' % ext) for location in locations.get('progressive', []):