]> jfr.im git - yt-dlp.git/commitdiff
[soundcloud] playlist limit per page according to official docs
authorUnknown <redacted>
Wed, 9 Sep 2020 16:24:20 +0000 (18:24 +0200)
committerUnknown <redacted>
Wed, 9 Sep 2020 16:24:20 +0000 (18:24 +0200)
https://github.com/ytdl-org/youtube-dl/pull/26557

youtube_dlc/extractor/soundcloud.py

index 3b072c219db9d47287ffc95b07514bfe9e9bdea2..04b70c1193b0d8aa5c74ff5cb00fe32941a88d6f 100644 (file)
@@ -650,7 +650,7 @@ def _real_extract(self, url):
 class SoundcloudPagedPlaylistBaseIE(SoundcloudIE):
     def _extract_playlist(self, base_url, playlist_id, playlist_title):
         COMMON_QUERY = {
-            'limit': 80000,
+            'limit': 200,
             'linked_partitioning': '1',
         }