mirror of https://github.com/yt-dlp/yt-dlp.git
[soundcloud] playlist limit per page according to official docs
https://github.com/ytdl-org/youtube-dl/pull/26557
This commit is contained in:
parent
771a0ba4d2
commit
389709160c
|
@ -650,7 +650,7 @@ class SoundcloudSetIE(SoundcloudPlaylistBaseIE):
|
|||
class SoundcloudPagedPlaylistBaseIE(SoundcloudIE):
|
||||
def _extract_playlist(self, base_url, playlist_id, playlist_title):
|
||||
COMMON_QUERY = {
|
||||
'limit': 80000,
|
||||
'limit': 200,
|
||||
'linked_partitioning': '1',
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue