[bliptv] Use centralized format sorting
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 5 Jan 2014 02:19:09 +0000 (03:19 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 5 Jan 2014 02:21:23 +0000 (03:21 +0100)
This also makes youtube-dl use the better "Source" format by default.

youtube_dl/extractor/bliptv.py

index c87f9160bd676ea13bd59e8381ef43b08abb4a76..159ea39d9a788bc90304907f75f523a156cebce1 100644 (file)
@@ -26,8 +26,8 @@ class BlipTVIE(InfoExtractor):
     IE_NAME = 'blip.tv'
     _TEST = {
         'url': 'http://blip.tv/cbr/cbr-exclusive-gotham-city-imposters-bats-vs-jokerz-short-3-5796352',
-        'file': '5779306.m4v',
-        'md5': '80baf1ec5c3d2019037c1c707d676b9f',
+        'file': '5779306.mov',
+        'md5': 'c6934ad0b6acf2bd920720ec888eb812',
         'info_dict': {
             'upload_date': '20111205',
             'description': 'md5:9bc31f227219cde65e47eeec8d2dc596',
@@ -101,6 +101,8 @@ class BlipTVIE(InfoExtractor):
                     'height': int(data['media']['height']),
                 })
 
+            self._sort_formats(formats)
+
             return {
                 'id': compat_str(data['item_id']),
                 'uploader': data['display_name'],