]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/noz.py
[ie/facebook] Fix DASH formats extraction (#9734)
[yt-dlp.git] / yt_dlp / extractor / noz.py
index 22cb08e8a2ea3fceddcf2ca7fb4eb19792c9b3ef..c7b80380362ca84bfaf5cc6bb4c5f5edf10b7fd1 100644 (file)
@@ -1,16 +1,15 @@
 from .common import InfoExtractor
-from ..compat import (
-    compat_urllib_parse_unquote,
-)
 from ..utils import (
     int_or_none,
     find_xpath_attr,
     xpath_text,
     update_url_query,
 )
+from ..compat import compat_urllib_parse_unquote
 
 
 class NozIE(InfoExtractor):
+    _WORKING = False
     _VALID_URL = r'https?://(?:www\.)?noz\.de/video/(?P<id>[0-9]+)/'
     _TESTS = [{
         'url': 'http://www.noz.de/video/25151/32-Deutschland-gewinnt-Badminton-Lnderspiel-in-Melle',
@@ -73,7 +72,6 @@ def _real_extract(self, url):
                     formats.extend(self._extract_m3u8_formats(
                         m3u8_url, video_id, 'mp4', 'm3u8_native',
                         m3u8_id='hls', fatal=False))
-        self._sort_formats(formats)
 
         return {
             'id': video_id,