diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-05-01 02:53:42 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-05-01 02:56:32 +0600 | 
| commit | 339fe7228ae149db9fc163c94bef168f65a0a775 (patch) | |
| tree | 89ad93c04094db75980f7db2be976d28a0faf753 | |
| parent | ea7e7fecbd5da6866be003ea1ce5072dbe0118ae (diff) | |
[tagesschau] Update _FORMATS map
| -rw-r--r-- | youtube_dl/extractor/tagesschau.py | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/tagesschau.py b/youtube_dl/extractor/tagesschau.py index 73e7657d4..ebd81eadc 100644 --- a/youtube_dl/extractor/tagesschau.py +++ b/youtube_dl/extractor/tagesschau.py @@ -64,9 +64,12 @@ class TagesschauIE(InfoExtractor):      }]      _FORMATS = { -        's': {'width': 256, 'height': 144, 'quality': 1}, +        'xs': {'quality': 0}, +        's': {'width': 320, 'height': 180, 'quality': 1},          'm': {'width': 512, 'height': 288, 'quality': 2}, -        'l': {'width': 960, 'height': 544, 'quality': 3}, +        'l': {'width': 960, 'height': 540, 'quality': 3}, +        'xl': {'width': 1280, 'height': 720, 'quality': 4}, +        'xxl': {'quality': 5},      }      def _real_extract(self, url):  | 
