about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKevin Ngo <kevin.ngo@oregonstate.edu>2011-11-07 18:02:10 -0800
committerKevin Ngo <kevin.ngo@oregonstate.edu>2011-11-07 18:02:10 -0800
commitecb3bfe543ada5e4433522efc05c49a71da8b03f (patch)
treecda8776988a2ddd64a317223f1ff363dbe249c94
parent0fca93ac60cd18bbe67ed0e24d1ea8c33b27ab08 (diff)
downloadyoutube-dl-ecb3bfe543ada5e4433522efc05c49a71da8b03f.tar.gz
youtube-dl-ecb3bfe543ada5e4433522efc05c49a71da8b03f.tar.xz
youtube-dl-ecb3bfe543ada5e4433522efc05c49a71da8b03f.zip
going home and need to upload what little i did
-rwxr-xr-xyoutube-dl7
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.