[facebook] Fix format sorting

'hd' formats should have higher priorities
merge-requests/5/head
Yen Chi Hsuan 2016-02-24 03:43:24 +08:00
parent 1b77ee6248
commit c24883a1c0
1 changed files with 4 additions and 1 deletions

View File

@ -212,10 +212,13 @@ class FacebookIE(InfoExtractor):
for src_type in ('src', 'src_no_ratelimit'):
src = f[0].get('%s_%s' % (quality, src_type))
if src:
preference = -10 if format_id == 'progressive' else 0
if quality == 'hd':
preference += 5
formats.append({
'format_id': '%s_%s_%s' % (format_id, quality, src_type),
'url': src,
'preference': -10 if format_id == 'progressive' else 0,
'preference': preference,
})
dash_manifest = f[0].get('dash_manifest')
if dash_manifest: