X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Ffreesound.py;h=5ff62af2a33d1743709bdb076dc0c80be0e3156b;hb=daa0df9e8beac1325e5fb55d828e7a3a38e74bf6;hp=89d5ab148f3e98dbc6f2e5ce7bce8bddc93c188e;hpb=5d9b75051a11e2de7f24c2759a81e26a599b080f;p=youtube-dl diff --git a/youtube_dl/extractor/freesound.py b/youtube_dl/extractor/freesound.py index 89d5ab148..5ff62af2a 100644 --- a/youtube_dl/extractor/freesound.py +++ b/youtube_dl/extractor/freesound.py @@ -1,27 +1,39 @@ -# -*- coding: utf-8 -*- +from __future__ import unicode_literals + import re from .common import InfoExtractor -class FreeSoundIE(InfoExtractor): - _VALID_URL = r'(?:http://)?(?:www\.)?freesound\.org/people/([^/]+)/sounds/([^/]+)' + +class FreesoundIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?freesound\.org/people/([^/]+)/sounds/(?P[^/]+)' + _TEST = { + 'url': 'http://www.freesound.org/people/miklovan/sounds/194503/', + 'md5': '12280ceb42c81f19a515c745eae07650', + 'info_dict': { + 'id': '194503', + 'ext': 'mp3', + 'title': 'gulls in the city.wav', + 'uploader': 'miklovan', + 'description': 'the sounds of seagulls in the city', + } + } def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) - music_id = mobj.group(2) + music_id = mobj.group('id') webpage = self._download_webpage(url, music_id) - title = self._html_search_regex(r'.*?(.+?)', + webpage, 'music title', flags=re.DOTALL) + description = self._html_search_regex( + r'
(.*?)
', webpage, 'description', + fatal=False, flags=re.DOTALL) - return [{ - 'id': music_id, - 'title': title, - 'url': music_url, - 'uploader': uploader, - 'ext': ext, - }] \ No newline at end of file + return { + 'id': music_id, + 'title': title, + 'url': self._og_search_property('audio', webpage, 'music url'), + 'uploader': self._og_search_property('audio:artist', webpage, 'music uploader'), + 'description': description, + }