mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
[soundcloud] Support mobile URLs (Fixes #2009)
This commit is contained in:
parent
1fb8f09273
commit
71507a11c8
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class SoundcloudIE(InfoExtractor):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_VALID_URL = r'''^(?:https?://)?
|
_VALID_URL = r'''^(?:https?://)?
|
||||||
(?:(?:(?:www\.)?soundcloud\.com/
|
(?:(?:(?:www\.|m\.)?soundcloud\.com/
|
||||||
(?P<uploader>[\w\d-]+)/
|
(?P<uploader>[\w\d-]+)/
|
||||||
(?!sets/)(?P<title>[\w\d-]+)/?
|
(?!sets/)(?P<title>[\w\d-]+)/?
|
||||||
(?P<token>[^?]+?)?(?:[?].*)?$)
|
(?P<token>[^?]+?)?(?:[?].*)?$)
|
||||||
|
|
Loading…
Reference in a new issue