]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/veoh.py
[ie/crunchyroll] Fix stream extraction (#10005)
[yt-dlp.git] / yt_dlp / extractor / veoh.py
index a32c2fccb99f3380ac05e4419c0c1e286bf2eaee..92ff86521a0ea14e2da0302ed493f3b0ff2a77bb 100644 (file)
@@ -105,7 +105,6 @@ def _real_extract(self, url):
                     'quality': q(f_id),
                     'url': f_url,
                 })
-        self._sort_formats(formats)
 
         categories = metadata.get('categoryPath')
         if not categories:
@@ -130,7 +129,7 @@ def _real_extract(self, url):
         }
 
 
-class VeohUserIE(VeohIE):
+class VeohUserIE(VeohIE):  # XXX: Do not subclass from concrete IE
     _VALID_URL = r'https?://(?:www\.)?veoh\.com/users/(?P<id>[\w-]+)'
     IE_NAME = 'veoh:user'