Add support for "original" format in YouTube (fixes issue #155)
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>
Tue, 13 Jul 2010 16:01:58 +0000 (18:01 +0200)
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>
Sun, 31 Oct 2010 10:28:17 +0000 (11:28 +0100)
youtube-dl

index 36f392c838b798eda42799f17e3b76ddd751a216..ba8a25a06148a234e76c663770a60d8ba8bbccde 100755 (executable)
@@ -685,13 +685,14 @@ class YoutubeIE(InfoExtractor):
        _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
        _NETRC_MACHINE = 'youtube'
        # Listed in order of priority for the -b option
-       _available_formats = ['37', '22', '45', '35', '34', '43', '18', '6', '5', '17', '13', None]
+       _available_formats = ['38', '37', '22', '45', '35', '34', '43', '18', '6', '5', '17', '13', None]
        _video_extensions = {
                '13': '3gp',
                '17': 'mp4',
                '18': 'mp4',
                '22': 'mp4',
                '37': 'mp4',
+               '38': 'video',
                '43': 'webm',
                '45': 'webm',
        }