mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[soundcloud] Improve _VALID_URL
Do not takeover soundcloud:user URLs
This commit is contained in:
parent
3c3b4176bd
commit
a219d175c6
|
@ -29,7 +29,7 @@ class SoundcloudIE(InfoExtractor):
|
|||
_VALID_URL = r'''(?x)^(?:https?://)?
|
||||
(?:(?:(?:www\.|m\.)?soundcloud\.com/
|
||||
(?P<uploader>[\w\d-]+)/
|
||||
(?!sets/|likes/?(?:$|[?#]))
|
||||
(?!sets/|(?:likes|tracks)/?(?:$|[?#]))
|
||||
(?P<title>[\w\d-]+)/?
|
||||
(?P<token>[^?]+?)?(?:[?].*)?$)
|
||||
|(?:api\.soundcloud\.com/tracks/(?P<track_id>\d+)
|
||||
|
|
Loading…
Reference in a new issue