youtube-dl

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

commit 8fb2e5a4f5b9604f93964f9b6ae7062830e3bab2
parent 4e8cc1e973da2656c46c5df84d4e85c5d78836ac
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  4 Apr 2015 19:25:08 +0600

[radiojavan] Sort formats

Diffstat:
Myoutube_dl/extractor/radiojavan.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/radiojavan.py b/youtube_dl/extractor/radiojavan.py @@ -36,6 +36,7 @@ class RadioJavanIE(InfoExtractor): 'format_id': '%sp' % height, 'height': int(height), } for height, video_path in re.findall(r"RJ\.video(\d+)p\s*=\s*'/?([^']+)'", webpage)] + self._sort_formats(formats) title = self._og_search_title(webpage) thumbnail = self._og_search_thumbnail(webpage)