aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/telegraaf.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/telegraaf.py')
-rw-r--r--youtube_dl/extractor/telegraaf.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/telegraaf.py b/youtube_dl/extractor/telegraaf.py
index 9092e9b85..926d36e5a 100644
--- 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', []):