2013-07-18 07:30:21 +00:00
|
|
|
import re
|
2013-07-18 07:40:56 +00:00
|
|
|
import json
|
2013-07-18 07:30:21 +00:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class ExfmIE(InfoExtractor):
|
2013-07-20 09:26:36 +00:00
|
|
|
IE_NAME = u'exfm'
|
|
|
|
IE_DESC = u'ex.fm'
|
2013-07-18 07:30:21 +00:00
|
|
|
_VALID_URL = r'(?:http://)?(?:www\.)?ex\.fm/song/([^/]+)'
|
2013-07-24 12:39:21 +00:00
|
|
|
_SOUNDCLOUD_URL = r'(?:http://)?(?:www\.)?api\.soundcloud.com/tracks/([^/]+)/stream'
|
|
|
|
_TESTS = [
|
|
|
|
{
|
2013-10-28 04:33:43 +00:00
|
|
|
u'url': u'http://ex.fm/song/eh359',
|
|
|
|
u'file': u'44216187.mp3',
|
|
|
|
u'md5': u'e45513df5631e6d760970b14cc0c11e7',
|
2013-07-24 12:39:21 +00:00
|
|
|
u'info_dict': {
|
2013-10-28 04:33:43 +00:00
|
|
|
u"title": u"Test House \"Love Is Not Enough\" (Extended Mix) DeadJournalist Exclusive",
|
|
|
|
u"uploader": u"deadjournalist",
|
|
|
|
u'upload_date': u'20120424',
|
|
|
|
u'description': u'Test House \"Love Is Not Enough\" (Extended Mix) DeadJournalist Exclusive',
|
2013-07-24 12:39:21 +00:00
|
|
|
},
|
|
|
|
u'note': u'Soundcloud song',
|
2013-11-02 19:51:09 +00:00
|
|
|
u'skip': u'The site is down too often',
|
2013-07-24 12:39:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
u'url': u'http://ex.fm/song/wddt8',
|
|
|
|
u'file': u'wddt8.mp3',
|
|
|
|
u'md5': u'966bd70741ac5b8570d8e45bfaed3643',
|
|
|
|
u'info_dict': {
|
|
|
|
u'title': u'Safe and Sound',
|
|
|
|
u'uploader': u'Capital Cities',
|
|
|
|
},
|
2013-11-02 19:51:09 +00:00
|
|
|
u'skip': u'The site is down too often',
|
2013-07-24 12:39:21 +00:00
|
|
|
},
|
|
|
|
]
|
2013-07-18 07:30:21 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2013-07-18 07:37:02 +00:00
|
|
|
song_id = mobj.group(1)
|
|
|
|
info_url = "http://ex.fm/api/v3/song/%s" %(song_id)
|
|
|
|
webpage = self._download_webpage(info_url, song_id)
|
2013-07-18 07:30:21 +00:00
|
|
|
info = json.loads(webpage)
|
2013-07-24 12:39:21 +00:00
|
|
|
song_url = info['song']['url']
|
|
|
|
if re.match(self._SOUNDCLOUD_URL, song_url) is not None:
|
|
|
|
self.to_screen('Soundcloud song detected')
|
|
|
|
return self.url_result(song_url.replace('/stream',''), 'Soundcloud')
|
2013-07-18 07:30:21 +00:00
|
|
|
return [{
|
2013-07-18 07:37:02 +00:00
|
|
|
'id': song_id,
|
2013-07-18 07:30:21 +00:00
|
|
|
'url': song_url,
|
|
|
|
'ext': 'mp3',
|
|
|
|
'title': info['song']['title'],
|
|
|
|
'thumbnail': info['song']['image']['large'],
|
|
|
|
'uploader': info['song']['artist'],
|
|
|
|
'view_count': info['song']['loved_count'],
|
|
|
|
}]
|