diff options
Diffstat (limited to 'youtube_dlc/extractor/soundcloud.py')
-rw-r--r-- | youtube_dlc/extractor/soundcloud.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/soundcloud.py b/youtube_dlc/extractor/soundcloud.py index 0fe084f5c..3b072c219 100644 --- a/youtube_dlc/extractor/soundcloud.py +++ b/youtube_dlc/extractor/soundcloud.py @@ -251,10 +251,15 @@ class SoundcloudIE(InfoExtractor): }, }, { - # with AAC HQ format available via OAuth token + # AAC HQ format available (account with active subscription needed) 'url': 'https://soundcloud.com/wandw/the-chainsmokers-ft-daya-dont-let-me-down-ww-remix-1', 'only_matching': True, }, + { + # Go+ (account with active subscription needed) + 'url': 'https://soundcloud.com/taylorswiftofficial/look-what-you-made-me-do', + 'only_matching': True, + }, ] _API_V2_BASE = 'https://api-v2.soundcloud.com/' |