diff options
author | Unknown <blackjack4494@web.de> | 2020-09-09 18:24:20 +0200 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-09-09 18:24:20 +0200 |
commit | 389709160c17db166206c7d3193b5f0e99763706 (patch) | |
tree | 1cfd386167a387cb26bdc29a2f213de283374e34 | |
parent | 771a0ba4d217c68c4c22bdfa908d16dee9c0f235 (diff) | |
download | hypervideo-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.py | 2 |
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', } |