[spiegel] Use centralized sorting

This commit is contained in:
Philipp Hagemeister 2013-12-24 12:40:23 +01:00
parent 719d3927d7
commit e6812ac99d
2 changed files with 7 additions and 1 deletions

View file

@ -438,6 +438,11 @@ class InfoExtractor(object):
def _sort_formats(self, formats):
def _formats_key(f):
# TODO remove the following workaround
from ..utils import determine_ext
if not f.get('ext') and 'url' in f:
f['ext'] = determine_ext(f['url'])
preference = f.get('preference')
if preference is None:
preference = 0 if f.get('url', '').startswith('http') else -0.1