]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/teachertube.py
[ie/crunchyroll] Fix stream extraction (#10005)
[yt-dlp.git] / yt_dlp / extractor / teachertube.py
index 2bf836abd7f8012a7c1a966e25f2c9ce4370a3e5..90a976297a19b1a4bf31066572d8cae5c3670b6c 100644 (file)
@@ -9,6 +9,7 @@
 
 
 class TeacherTubeIE(InfoExtractor):
+    _WORKING = False
     IE_NAME = 'teachertube'
     IE_DESC = 'teachertube.com videos'
 
@@ -73,8 +74,6 @@ def _real_extract(self, url):
             } for media_url in set(media_urls)
         ]
 
-        self._sort_formats(formats)
-
         thumbnail = self._og_search_thumbnail(
             webpage, default=None) or self._html_search_meta(
             'thumbnail', webpage)
@@ -89,6 +88,7 @@ def _real_extract(self, url):
 
 
 class TeacherTubeUserIE(InfoExtractor):
+    _WORKING = False
     IE_NAME = 'teachertube:user:collection'
     IE_DESC = 'teachertube.com user and collection videos'