diff options
author | Tithen-Firion <Tithen-Firion@users.noreply.github.com> | 2014-12-03 11:49:53 +0100 |
---|---|---|
committer | Tithen-Firion <Tithen-Firion@users.noreply.github.com> | 2014-12-04 00:42:01 +0100 |
commit | 0403b06985bcb004efb3683bca6a56a47e3227b1 (patch) | |
tree | d0cc2b98ee2ac34722aa77d89fb2bb374fa4ad48 /youtube_dl | |
parent | de9bd74bc2e06a6d5396151050fd1eeafdd54a33 (diff) |
[soundcloud] Improve_VALID_URL
Add support for links from Audiomack
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/soundcloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py index 3c1d058db..ab9483d2d 100644 --- a/youtube_dl/extractor/soundcloud.py +++ b/youtube_dl/extractor/soundcloud.py @@ -32,7 +32,7 @@ class SoundcloudIE(InfoExtractor): (?P<title>[\w\d-]+)/? (?P<token>[^?]+?)?(?:[?].*)?$) |(?:api\.soundcloud\.com/tracks/(?P<track_id>\d+) - (?:/?\?secret_token=(?P<secret_token>[^&]+?))?$) + (?:/?\?secret_token=(?P<secret_token>[^&]+))?) |(?P<player>(?:w|player|p.)\.soundcloud\.com/player/?.*?url=.*) ) ''' |