aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <blackjack4494@web.de>2020-09-09 18:24:20 +0200
committerUnknown <blackjack4494@web.de>2020-09-09 18:24:20 +0200
commit389709160c17db166206c7d3193b5f0e99763706 (patch)
tree1cfd386167a387cb26bdc29a2f213de283374e34
parent771a0ba4d217c68c4c22bdfa908d16dee9c0f235 (diff)
downloadhypervideo-pre-389709160c17db166206c7d3193b5f0e99763706.tar.lz
hypervideo-pre-389709160c17db166206c7d3193b5f0e99763706.tar.xz
hypervideo-pre-389709160c17db166206c7d3193b5f0e99763706.zip
[soundcloud] playlist limit per page according to official docs
https://github.com/ytdl-org/youtube-dl/pull/26557
-rw-r--r--youtube_dlc/extractor/soundcloud.py2
1 files changed, 1 insertions, 1 deletions
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',
}