Remove _sort_formats from _extract_*_formats methods
[youtube-dl] / youtube_dl / extractor / rtve.py
index 08cd1ae6cd3a138d6a12ca147cdca51613922f6e..79af477158630503078d86b117f960a36f5f1f73 100644 (file)
@@ -209,6 +209,7 @@ class RTVELiveIE(InfoExtractor):
         png = self._download_webpage(png_url, video_id, 'Downloading url information')
         m3u8_url = _decrypt_url(png)
         formats = self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4')
+        self._sort_formats(formats)
 
         return {
             'id': video_id,