aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/soundcloud.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-08-31 01:56:15 +0700
committerSergey M․ <dstftw@gmail.com>2016-08-31 01:56:15 +0700
commitf7043ef39cb73f8501d18d2e1f93997357397ba2 (patch)
tree75bfc30857a682ffbdc040020648c7e78bf0fd38 /youtube_dl/extractor/soundcloud.py
parent64fc49aba018ebd51627ddcc92f8fa88f2c499cc (diff)
downloadyoutube-dl-f7043ef39cb73f8501d18d2e1f93997357397ba2.zip
youtube-dl-f7043ef39cb73f8501d18d2e1f93997357397ba2.tar.gz
youtube-dl-f7043ef39cb73f8501d18d2e1f93997357397ba2.tar.bz2
[soundcloud] Fix _VALID_URL clashes with sets (Closes #10505)
Diffstat (limited to 'youtube_dl/extractor/soundcloud.py')
-rw-r--r--youtube_dl/extractor/soundcloud.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py
index aeae931..9635c2b 100644
--- a/youtube_dl/extractor/soundcloud.py
+++ b/youtube_dl/extractor/soundcloud.py
@@ -32,7 +32,7 @@ class SoundcloudIE(InfoExtractor):
_VALID_URL = r'''(?x)^(?:https?://)?
(?:(?:(?:www\.|m\.)?soundcloud\.com/
(?P<uploader>[\w\d-]+)/
- (?!(?:tracks|sets(?:/[^/?#]+)?|reposts|likes|spotlight)/?(?:$|[?#]))
+ (?!(?:tracks|sets(?:/.+?)?|reposts|likes|spotlight)/?(?:$|[?#]))
(?P<title>[\w\d-]+)/?
(?P<token>[^?]+?)?(?:[?].*)?$)
|(?:api\.soundcloud\.com/tracks/(?P<track_id>\d+)
@@ -265,6 +265,9 @@ class SoundcloudSetIE(SoundcloudIE):
'title': 'The Royal Concept EP',
},
'playlist_mincount': 6,
+ }, {
+ 'url': 'https://soundcloud.com/the-concept-band/sets/the-royal-concept-ep/token',
+ 'only_matching': True,
}]
def _real_extract(self, url):