diff options
| author | M.Yasoob Khalid <yasoob.khld@gmail.com> | 2013-07-15 20:16:44 +0500 | 
|---|---|---|
| committer | M.Yasoob Khalid <yasoob.khld@gmail.com> | 2013-07-15 20:16:44 +0500 | 
| commit | 5d9b75051a11e2de7f24c2759a81e26a599b080f (patch) | |
| tree | 3454dbcf7f058213f974ecde00fa9bfa4b7ffe59 | |
| parent | 2d5a8b55129b1dc10f9e789875b46742c8f303af (diff) | |
Added an IE for freesound.org
| -rw-r--r-- | youtube_dl/extractor/__init__.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/freesound.py | 27 | 
2 files changed, 28 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 494b1b9d3..7b177e343 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -19,6 +19,7 @@ from .eighttracks import EightTracksIE  from .escapist import EscapistIE  from .facebook import FacebookIE  from .flickr import FlickrIE +from .freesound import FreeSoundIE  from .funnyordie import FunnyOrDieIE  from .gamespot import GameSpotIE  from .gametrailers import GametrailersIE diff --git a/youtube_dl/extractor/freesound.py b/youtube_dl/extractor/freesound.py new file mode 100644 index 000000000..89d5ab148 --- /dev/null +++ b/youtube_dl/extractor/freesound.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +import re + +from .common import InfoExtractor + +class FreeSoundIE(InfoExtractor): +    _VALID_URL = r'(?:http://)?(?:www\.)?freesound\.org/people/([^/]+)/sounds/([^/]+)' + +    def _real_extract(self, url): +        mobj = re.match(self._VALID_URL, url) +        music_id = mobj.group(2) +        webpage = self._download_webpage(url, music_id) +        title = self._html_search_regex(r'<meta property="og:title" content="([^"]*)"', +                                webpage, 'music title') +        music_url = self._html_search_regex(r'<meta property="og:audio" content="([^"]*)"', +                                webpage, 'music url')        +        uploader = self._html_search_regex(r'<meta property="og:audio:artist" content="([^"]*)"', +                                webpage, 'music uploader')                                                                         +        ext = music_url.split('.')[-1] + +        return [{ +            'id':       music_id, +            'title':    title,             +            'url':      music_url, +            'uploader': uploader, +            'ext':      ext, +        }]
\ No newline at end of file  | 
