From: Sergey M․ Date: Sat, 6 Feb 2016 13:42:03 +0000 (+0600) Subject: [extractor/generic] Detect DASH manifests in found URLs and extract mpd formats X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=79a350857911d21bb04c90b2db04d7f6f0a3676b;p=youtube-dl [extractor/generic] Detect DASH manifests in found URLs and extract mpd formats --- diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 6b52e75dc..6de777c41 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -1959,6 +1959,8 @@ class GenericIE(InfoExtractor): return self.playlist_result(self._extract_xspf_playlist(video_url, video_id), video_id) elif ext == 'm3u8': entry_info_dict['formats'] = self._extract_m3u8_formats(video_url, video_id, ext='mp4') + elif ext == 'mpd': + entry_info_dict['formats'] = self._extract_mpd_formats(video_url, video_id) else: entry_info_dict['url'] = video_url