From 389709160c17db166206c7d3193b5f0e99763706 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 9 Sep 2020 18:24:20 +0200 Subject: [PATCH] [soundcloud] playlist limit per page according to official docs https://github.com/ytdl-org/youtube-dl/pull/26557 --- youtube_dlc/extractor/soundcloud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dlc/extractor/soundcloud.py b/youtube_dlc/extractor/soundcloud.py index 3b072c219..04b70c119 100644 --- a/youtube_dlc/extractor/soundcloud.py +++ b/youtube_dlc/extractor/soundcloud.py @@ -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', }