diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-05-12 12:08:54 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-05-12 12:08:54 +0700 |
commit | 07acdc5afcff3b47b26b26355a75704e3cda670f (patch) | |
tree | 628e6913aff6e51d0564f9c755b94cf1559a1324 /youtube_dl/extractor | |
parent | 49fa7de301019e23e66c01e5007561eefd51ca47 (diff) |
[twitch:clips] Sort formats
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/twitch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index ec96ae506..3ee2af52e 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -673,6 +673,8 @@ class TwitchClipsIE(TwitchBaseIE): 'fps': int_or_none(option.get('frame_rate')), }) + self._sort_formats(formats) + info = { 'formats': formats, } |