Browse Source

fix swrmediathek for new formats.

totalwebcasting
andi 10 years ago
parent
commit
d6fdc38682
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/swrmediathek.py

+ 2
- 2
youtube_dl/extractor/swrmediathek.py View File

@ -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,
}
}

Loading…
Cancel
Save