youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 91264ce5728bbe7e560c13dc7a047b083dd67d7e
parent c79ef8e1ae2868ea02257ed4e3accb9d58df3f2d
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue,  4 Feb 2014 10:24:00 +0100

[iprima] Use centralized format sorting

Diffstat:
Myoutube_dl/extractor/iprima.py | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/iprima.py b/youtube_dl/extractor/iprima.py @@ -72,7 +72,9 @@ class IPrimaIE(InfoExtractor): 'play_path': 'mp4:'+filename.replace('"', '')[:-4], 'rtmp_live': True, 'ext': 'flv', - }) + }) + + self._sort_formats(formats) return { 'id': real_id, @@ -80,4 +82,4 @@ class IPrimaIE(InfoExtractor): 'thumbnail': self._og_search_thumbnail(webpage), 'formats': formats, 'description': self._og_search_description(webpage), - }- \ No newline at end of file + }