aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandi <andi@andiunx.no-ip.org>2014-11-08 15:56:35 +0100
committerandi <andi@andiunx.no-ip.org>2014-11-08 15:56:35 +0100
commitd6fdc3868210ccb0d0d698940fdad16dbb497cb9 (patch)
tree170447582a588211768df50ef4181b275c70286e
parentc2b61af54827373780415edce92b971b43ceead1 (diff)
downloadyoutube-dl-d6fdc3868210ccb0d0d698940fdad16dbb497cb9.tar.xz
fix swrmediathek for new formats.
-rw-r--r--youtube_dl/extractor/swrmediathek.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/swrmediathek.py b/youtube_dl/extractor/swrmediathek.py
index 13c6ea677..bf430d870 100644
--- 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
+ }