diff options
author | Kevin Ngo <kevin.ngo@oregonstate.edu> | 2011-11-07 18:02:10 -0800 |
---|---|---|
committer | Kevin Ngo <kevin.ngo@oregonstate.edu> | 2011-11-07 18:02:10 -0800 |
commit | ecb3bfe543ada5e4433522efc05c49a71da8b03f (patch) | |
tree | cda8776988a2ddd64a317223f1ff363dbe249c94 | |
parent | 0fca93ac60cd18bbe67ed0e24d1ea8c33b27ab08 (diff) |
going home and need to upload what little i did
-rwxr-xr-x | youtube-dl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube-dl b/youtube-dl index 30a02e5cd..cb31d13c9 100755 --- a/youtube-dl +++ b/youtube-dl @@ -3481,6 +3481,13 @@ class XVideosIE(InfoExtractor): self._downloader.trouble(u'\nERROR: unable to download ' + video_id) +class SoundcloudIE(InformationExtractor): + """Information extractor for soundcloud.com""" + + _VALID_URL = r'^(?:https?://)?(?:www\.)?soundcloud\.com/([\w\d-]+)/(\w\d-]+)' + IE_NAME = u'soundcloud' + + class PostProcessor(object): """Post Processor class. |