diff options
author | Jaime Marquínez Ferrándiz <jaimeMF@users.noreply.github.com> | 2014-11-09 12:17:18 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaimeMF@users.noreply.github.com> | 2014-11-09 12:17:18 +0100 |
commit | 519c73f267325d833441340afb088cbd651c8459 (patch) | |
tree | 5bf10846e3bb6c6e7bc456b460f6d58354c83b76 | |
parent | a6dae6c09c2c6be7a6d090ca0a7741674bf1fd98 (diff) | |
parent | d6fdc3868210ccb0d0d698940fdad16dbb497cb9 (diff) |
Merge pull request #4136 from andikmu/master
fix swrmediathek for new formats.
-rw-r--r-- | youtube_dl/extractor/swrmediathek.py | 4 |
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 + } |