]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/theta.py
Update to ytdl-commit-195f22f6
[yt-dlp.git] / yt_dlp / extractor / theta.py
index 3ec6b971181a0e4dada0a0c0fb563483978d3776..ecf0ea091dd3d79419ff0cff96465da58682ea8d 100644 (file)
@@ -41,7 +41,6 @@ def _real_extract(self, url):
             if data.get('type') != 'embed' and data.get('resolution') in ('master', 'source'))
 
         formats = self._extract_m3u8_formats(m3u8_playlist, channel_id, 'mp4', m3u8_id='hls', live=True)
-        self._sort_formats(formats)
 
         channel = try_get(info, lambda x: x['user']['username'])  # using this field instead of channel_id due to capitalization
 
@@ -78,7 +77,6 @@ def _real_extract(self, url):
         m3u8_playlist = try_get(info, lambda x: x['video_urls'][0]['url'])
 
         formats = self._extract_m3u8_formats(m3u8_playlist, video_id, 'mp4', m3u8_id='hls')
-        self._sort_formats(formats)
 
         return {
             'id': video_id,