aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-09-17 00:51:25 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2011-09-17 00:51:25 +0200
commit7b417b388a6880c708df9908ded1ea21a4af260d (patch)
treecccca144e0414a3292d597b0715e20b3c6675c9d
parent44424ceee92533f501e9595b5ffc10d2ee12545a (diff)
downloadyoutube-dl-7b417b388a6880c708df9908ded1ea21a4af260d.tar.xz
Add youtube format 44
-rwxr-xr-xyoutube-dl3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index 53d454873..dbee119c9 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -1088,7 +1088,7 @@ class YoutubeIE(InfoExtractor):
_AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
_NETRC_MACHINE = 'youtube'
# Listed in order of quality
- _available_formats = ['38', '37', '22', '45', '35', '43', '34', '18', '6', '5', '17', '13']
+ _available_formats = ['38', '37', '22', '45', '35', '44', '34', '43', '18', '6', '5', '17', '13']
_video_extensions = {
'13': '3gp',
'17': 'mp4',
@@ -1097,6 +1097,7 @@ class YoutubeIE(InfoExtractor):
'37': 'mp4',
'38': 'video', # You actually don't know if this will be MOV, AVI or whatever
'43': 'webm',
+ '44': 'webm',
'45': 'webm',
}
IE_NAME = u'youtube'