From ecb3bfe543ada5e4433522efc05c49a71da8b03f Mon Sep 17 00:00:00 2001 From: Kevin Ngo Date: Mon, 7 Nov 2011 18:02:10 -0800 Subject: [PATCH] going home and need to upload what little i did --- youtube-dl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/youtube-dl b/youtube-dl index 30a02e5..cb31d13 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. -- 1.8.3.1