youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b334732709a283a3a284e8835f4473c2a2be2827
parent 384bf91f8802805283f993714ace137e831ba45e
Author: Remita Amine <remitamine@gmail.com>
Date:   Fri, 15 May 2020 14:12:31 +0100

[soundcloud] reduce API playlist page limit(closes #25274)

Diffstat:
Myoutube_dl/extractor/soundcloud.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py @@ -559,7 +559,7 @@ class SoundcloudSetIE(SoundcloudPlaylistBaseIE): class SoundcloudPagedPlaylistBaseIE(SoundcloudIE): def _extract_playlist(self, base_url, playlist_id, playlist_title): COMMON_QUERY = { - 'limit': 2000000000, + 'limit': 80000, 'linked_partitioning': '1', }