1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 18:39:37 +02:00

[iprima] Use centralized format sorting

This commit is contained in:
Philipp Hagemeister 2014-02-04 10:24:00 +01:00
parent c79ef8e1ae
commit 91264ce572

View File

@ -72,7 +72,9 @@ def _real_extract(self, url):
'play_path': 'mp4:'+filename.replace('"', '')[:-4],
'rtmp_live': True,
'ext': 'flv',
})
})
self._sort_formats(formats)
return {
'id': real_id,
@ -80,4 +82,4 @@ def _real_extract(self, url):
'thumbnail': self._og_search_thumbnail(webpage),
'formats': formats,
'description': self._og_search_description(webpage),
}
}