From: Rogério Brito Date: Sat, 18 Jun 2011 05:16:56 +0000 (-0300) Subject: Imported Upstream version 2010.07.24 X-Git-Url: https://git.rapsys.eu/youtubedl/commitdiff_plain/a516d4529b9137e9f0ecb83191bc3da8a35e6626?ds=inline Imported Upstream version 2010.07.24 --- diff --git a/.hg_archival.txt b/.hg_archival.txt index 90bb24d..9cc3795 100644 --- a/.hg_archival.txt +++ b/.hg_archival.txt @@ -1,2 +1,2 @@ repo: f87cf8f2527c4adda57b14bd79a354f815164a41 -node: de50210f6416533d848b341642ad0c8193e22213 +node: 09a81c91ccebf3d9539c171e43e6e45e1dfbe6b8 diff --git a/.hgtags b/.hgtags index 59e611d..ee712c1 100644 --- a/.hgtags +++ b/.hgtags @@ -50,3 +50,4 @@ a44566779488ca70b9e1e7cf163e623744139a28 2010.07.14 0000000000000000000000000000000000000000 2010.07.14 0000000000000000000000000000000000000000 2010.07.14 ad0c03e542656d8831c4ed3acda7de11d1c3f1c6 2010.07.14 +de50210f6416533d848b341642ad0c8193e22213 2010.07.22 diff --git a/LATEST_VERSION b/LATEST_VERSION index f3f4e8f..9603881 100644 --- a/LATEST_VERSION +++ b/LATEST_VERSION @@ -1 +1 @@ -2010.07.22 +2010.07.24 diff --git a/youtube-dl b/youtube-dl index 5fd331e..48c13b7 100755 --- a/youtube-dl +++ b/youtube-dl @@ -878,7 +878,13 @@ class YoutubeIE(InfoExtractor): if mobj is not None: video_description = mobj.group(1) + # token + video_token = urllib.unquote_plus(video_info['token'][0]) + # Decide which formats to download + requested_format = self._downloader.params.get('format', None) + get_video_template = 'http://www.youtube.com/get_video?video_id=%s&t=%s&eurl=&el=&ps=&asv=&fmt=%%s' % (video_id, video_token) + if 'fmt_url_map' in video_info: url_map = dict(tuple(pair.split('|')) for pair in video_info['fmt_url_map'][0].split(',')) format_limit = self._downloader.params.get('format_limit', None) @@ -890,19 +896,17 @@ class YoutubeIE(InfoExtractor): if len(existing_formats) == 0: self._downloader.trouble(u'ERROR: no known formats available for video') return - requested_format = self._downloader.params.get('format', None) if requested_format is None: - video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality + video_url_list = [(existing_formats[0], get_video_template % existing_formats[0])] # Best quality elif requested_format == '-1': - video_url_list = url_map.items() # All formats + video_url_list = [(f, get_video_template % f) for f in existing_formats] # All formats else: - if requested_format not in existing_formats: - self._downloader.trouble(u'ERROR: format not available for video') - return - video_url_list = [(requested_format, url_map[requested_format])] # Specific format + video_url_list = [(requested_format, get_video_template % requested_format)] # Specific format + elif 'conn' in video_info and video_info['conn'][0].startswith('rtmp'): self.report_rtmp_download() video_url_list = [(None, video_info['conn'][0])] + else: self._downloader.trouble(u'ERROR: no fmt_url_map or conn information found in video info') return @@ -930,7 +934,7 @@ class YoutubeIE(InfoExtractor): 'player_url': player_url, }) except UnavailableVideoError, err: - self._downloader.trouble(u'ERROR: unable to download video') + self._downloader.trouble(u'ERROR: unable to download video (format may not be available)') class MetacafeIE(InfoExtractor): @@ -2064,7 +2068,7 @@ if __name__ == '__main__': # Parse command line parser = optparse.OptionParser( usage='Usage: %prog [options] url...', - version='2010.07.22', + version='2010.07.24', conflict_handler='resolve', )