]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/koo.py
[ie/orf:on] Improve extraction (#9677)
[yt-dlp.git] / yt_dlp / extractor / koo.py
index 892d355badb924dae08412bb6a74d81dff70316e..c78a7b9ca2c2a614efab443dbba99a33864da086 100644 (file)
@@ -6,6 +6,7 @@
 
 
 class KooIE(InfoExtractor):
+    _WORKING = False
     _VALID_URL = r'https?://(?:www\.)?kooapp\.com/koo/[^/]+/(?P<id>[^/&#$?]+)'
     _TESTS = [{  # Test for video in the comments
         'url': 'https://www.kooapp.com/koo/ytdlpTestAccount/946c4189-bc2d-4524-b95b-43f641e2adde',
@@ -101,7 +102,6 @@ def _real_extract(self, url):
         if not formats:
             self.raise_no_formats('No video/audio found at the provided url.', expected=True)
 
-        self._sort_formats(formats)
         return {
             'id': id,
             'title': clean_html(item_json.get('title')),