From: Philipp Hagemeister Date: Wed, 25 Dec 2013 14:24:41 +0000 (+0100) Subject: [appletrailers] Use centralized format selection X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=7b8af56340bcc7521bb05da14d2dce6d949ce916;p=youtube-dl [appletrailers] Use centralized format selection --- diff --git a/youtube_dl/extractor/appletrailers.py b/youtube_dl/extractor/appletrailers.py index ef5644aa5..e7361ae06 100644 --- a/youtube_dl/extractor/appletrailers.py +++ b/youtube_dl/extractor/appletrailers.py @@ -110,7 +110,8 @@ class AppleTrailersIE(InfoExtractor): 'width': format['width'], 'height': int(format['height']), }) - formats = sorted(formats, key=lambda f: (f['height'], f['width'])) + + self._sort_formats(formats) playlist.append({ '_type': 'video',