youtube-dl

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

commit c31b124d7a2c754f3ca5c6f8de8c501cfbad895a
parent 47b8dab29e8930a752533e74a87befd52ca4a2a8
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 31 Jul 2011 18:09:53 +0200

Suppport for youtube video streams (Mentioned in #108)

Diffstat:
Myoutube-dl | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -1248,8 +1248,14 @@ class YoutubeIE(InfoExtractor): # Decide which formats to download req_format = self._downloader.params.get('format', None) + raw_map = None if 'fmt_url_map' in video_info and len(video_info['fmt_url_map']) >= 1: - url_map = dict(tuple(pair.split('|')) for pair in video_info['fmt_url_map'][0].split(',')) + raw_map = video_info['fmt_url_map'][0] + elif 'fmt_stream_map' in video_info and len(video_info['fmt_stream_map']) >= 1: + raw_map = video_info['fmt_stream_map'][0] + + if raw_map is not None: + url_map = dict(tuple(pair.split('|')[:2]) for pair in raw_map.split(',')) format_limit = self._downloader.params.get('format_limit', None) if format_limit is not None and format_limit in self._available_formats: format_list = self._available_formats[self._available_formats.index(format_limit):]