diff options
author | remitamine <remitamine@gmail.com> | 2016-02-06 06:52:48 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-02-06 06:52:48 +0100 |
commit | 0826a0b555a06e0cc9047a7779c0f55612c8f3a3 (patch) | |
tree | e6041ddf6f9092f3776082563f9a6bbca1c7bad3 | |
parent | bcbbb98bfe5c5309f447901c2de4f793647752fc (diff) |
[common] sort dash formats
-rw-r--r-- | youtube_dl/extractor/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index d9f31daaa..5287fa4f6 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1481,6 +1481,7 @@ class InfoExtractor(object): existing_format.update(f) else: self.report_warning('Unknown MIME type %s in DASH manifest' % mime_type) + self._sort_formats(formats) return formats def _live_title(self, name): |