diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-15 21:06:51 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-15 21:06:51 +0200 | 
| commit | 66400c470c36a5cdceec531ebd2cfc52e02d6c53 (patch) | |
| tree | f642911440237944e20a780e81a02bbdae213bcc | |
| parent | ab2f744b906ad4a896746d1648505e8f5efa815a (diff) | |
| parent | 766501026774a8d5295e2b7ec4edef58b427ca78 (diff) | |
Merge pull request #1050 from yasoob/master
Added an IE and test for Freesound.org .
| -rw-r--r-- | youtube_dl/extractor/__init__.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/freesound.py | 36 | 
2 files changed, 37 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 1893eb1cb..7a2a09ab0 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -20,6 +20,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..9a2774d3b --- /dev/null +++ b/youtube_dl/extractor/freesound.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +import re + +from .common import InfoExtractor + +class FreeSoundIE(InfoExtractor): +    _VALID_URL = r'(?:http://)?(?:www\.)?freesound\.org/people/([^/]+)/sounds/([^/]+)' +    _TEST = { +        u'url': u'http://www.freesound.org/people/miklovan/sounds/194503/', +        u'file': u'194503.mp3', +        u'md5': u'12280ceb42c81f19a515c745eae07650', +        u'info_dict': { +            u"title": u"gulls in the city.wav by miklovan", +            u"uploader" : u"miklovan" +        } +    } + +    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 | 
