diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2009-11-20 21:51:38 +0100 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-10-31 11:24:56 +0100 |
commit | d9bc015b3ca1071c008783e8ae8e36f4ca8e4edf (patch) | |
tree | acf1abbd30f56b059aa32801f268ab72c568e292 | |
parent | 4bec29ef4bac6d007fa0f722eb7c55285e66e03a (diff) |
Take format 37 into account (fixes issue #65)
-rwxr-xr-x | youtube-dl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index d3e8cf4f6..52bda1b25 100755 --- a/youtube-dl +++ b/youtube-dl @@ -530,12 +530,13 @@ class YoutubeIE(InfoExtractor): _LOGIN_URL = 'http://www.youtube.com/signup?next=/&gl=US&hl=en' _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en' _NETRC_MACHINE = 'youtube' - _available_formats = ['22', '35', '18', '5', '17', '13', None] # listed in order of priority for -b flag + _available_formats = ['37', '22', '35', '18', '5', '17', '13', None] # listed in order of priority for -b flag _video_extensions = { '13': '3gp', '17': 'mp4', '18': 'mp4', '22': 'mp4', + '37': 'mp4', } @staticmethod |