commit: 519c73f267325d833441340afb088cbd651c8459
parent a6dae6c09c2c6be7a6d090ca0a7741674bf1fd98
Author: Jaime Marquínez Ferrándiz <jaimeMF@users.noreply.github.com>
Date: Sun, 9 Nov 2014 12:17:18 +0100
Merge pull request #4136 from andikmu/master
fix swrmediathek for new formats.
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/youtube_dl/extractor/swrmediathek.py b/youtube_dl/extractor/swrmediathek.py
@@ -80,7 +80,7 @@ class SWRMediathekIE(InfoExtractor):
if media_type == 'Video':
fmt.update({
- 'format_note': ['144p', '288p', '544p'][quality-1],
+ 'format_note': ['144p', '288p', '544p', '720p'][quality-1],
'vcodec': codec,
})
elif media_type == 'Audio':
@@ -101,4 +101,4 @@ class SWRMediathekIE(InfoExtractor):
'uploader': attr['channel_title'],
'uploader_id': attr['channel_idkey'],
'formats': formats,
- }-
\ No newline at end of file
+ }