youtube-dl

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

commit 79a350857911d21bb04c90b2db04d7f6f0a3676b
parent 1b840245bdcc7789f996c9bb163af79efbebc813
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  6 Feb 2016 19:42:03 +0600

[extractor/generic] Detect DASH manifests in found URLs and extract mpd formats

Diffstat:
Myoutube_dl/extractor/generic.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

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