From: Kevin Ngo Date: Tue, 8 Nov 2011 02:02:10 +0000 (-0800) Subject: going home and need to upload what little i did X-Git-Url: http://git.jankratochvil.net/?p=youtube-dl.git;a=commitdiff_plain;h=ecb3bfe543ada5e4433522efc05c49a71da8b03f going home and need to upload what little i did --- 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.