mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[kwuo] Remove _sort_formats() from KuwoBaseIE._get_formats()
Following the idea proposed in 19dbaeece3
This commit is contained in:
parent
597d52fadb
commit
3ae6f8fec1
1 changed files with 1 additions and 5 deletions
|
@ -44,11 +44,6 @@ class KuwoBaseIE(InfoExtractor):
|
||||||
'abr': file_format.get('abr'),
|
'abr': file_format.get('abr'),
|
||||||
})
|
})
|
||||||
|
|
||||||
# XXX _sort_formats fails if there are not formats, while it's not the
|
|
||||||
# desired behavior if 'IPDeny' is ignored
|
|
||||||
# This check can be removed if https://github.com/rg3/youtube-dl/pull/8051 is merged
|
|
||||||
if not tolerate_ip_deny:
|
|
||||||
self._sort_formats(formats)
|
|
||||||
return formats
|
return formats
|
||||||
|
|
||||||
|
|
||||||
|
@ -103,6 +98,7 @@ class KuwoIE(KuwoBaseIE):
|
||||||
lrc_content = None
|
lrc_content = None
|
||||||
|
|
||||||
formats = self._get_formats(song_id)
|
formats = self._get_formats(song_id)
|
||||||
|
self._sort_formats(formats)
|
||||||
|
|
||||||
album_id = self._html_search_regex(
|
album_id = self._html_search_regex(
|
||||||
r'<p[^>]+class="album"[^<]+<a[^>]+href="http://www\.kuwo\.cn/album/(\d+)/"',
|
r'<p[^>]+class="album"[^<]+<a[^>]+href="http://www\.kuwo\.cn/album/(\d+)/"',
|
||||||
|
|
Loading…
Reference in a new issue