]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/fptplay.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / fptplay.py
index 1872d8a1ca26b6ee5b7b8312f734b1dc931d6b26..85613bafe5a191eefd7c29ea2596e6d4abb32ef4 100644 (file)
@@ -59,7 +59,6 @@ def _real_extract(self, url):
         info = self._download_json(
             self.get_api_with_st_token(video_id, int(slug_episode) - 1 if slug_episode else 0), video_id)
         formats, subtitles = self._extract_m3u8_formats_and_subtitles(info['data']['url'], video_id, 'mp4')
-        self._sort_formats(formats)
         return {
             'id': video_id,
             'title': join_nonempty(title, real_episode, delim=' - '),