diff options
author | Unknown <blackjack4494@web.de> | 2020-09-06 02:57:08 +0200 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-09-06 02:57:08 +0200 |
commit | bc842c27a7900028b782c9e856a2f4ee9146d26d (patch) | |
tree | b74d7c5b4f4ab7ec61df8dcf007a82a36d42eef1 /youtube_dlc/extractor/soundcloud.py | |
parent | ea40ffd1e10543e6b97134ef0f3c2071ccfd637d (diff) | |
download | hypervideo-pre-bc842c27a7900028b782c9e856a2f4ee9146d26d.tar.lz hypervideo-pre-bc842c27a7900028b782c9e856a2f4ee9146d26d.tar.xz hypervideo-pre-bc842c27a7900028b782c9e856a2f4ee9146d26d.zip |
flake8 fix + soundcloud tests
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/' |