mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
Finished audiomack extractor
This commit is contained in:
parent
5c565ac9e7
commit
9e9bc793f3
@ -1,43 +1,67 @@
|
|||||||
|
# Xavier Beynon 2014
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from .soundcloud import SoundcloudIE
|
||||||
import datetime
|
import datetime
|
||||||
import time
|
import time
|
||||||
import urllib.request
|
|
||||||
import json
|
|
||||||
|
|
||||||
|
|
||||||
class AudiomackIE(InfoExtractor):
|
class AudiomackIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?audiomack\.com/song/(?P<id>[\w/-]+)'
|
_VALID_URL = r'https?://(?:www\.)?audiomack\.com/song/(?P<id>[\w/-]+)'
|
||||||
_TEST = {
|
IE_NAME = 'audiomack'
|
||||||
'url': 'https://www.audiomack.com/song/crewneckkramer/story-i-tell',
|
_TESTS = [
|
||||||
'info_dict': {
|
#hosted on audiomack
|
||||||
'id': 'story-i-tell',
|
{
|
||||||
'ext': 'mp3',
|
'url': 'http://www.audiomack.com/song/roosh-williams/extraordinary',
|
||||||
'title': 'story-i-tell'
|
'file': 'Roosh Williams - Extraordinary.mp3',
|
||||||
|
'info_dict':
|
||||||
|
{
|
||||||
|
'ext': 'mp3',
|
||||||
|
'title': 'Roosh Williams - Extraordinary'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
#hosted on soundcloud via audiomack
|
||||||
|
{
|
||||||
|
'url': 'http://www.audiomack.com/song/xclusiveszone/take-kare',
|
||||||
|
'file': '172419696.mp3',
|
||||||
|
'info_dict':
|
||||||
|
{
|
||||||
|
'ext': 'mp3',
|
||||||
|
'title': 'Young Thug ft Lil Wayne - Take Kare',
|
||||||
|
"upload_date": "20141016",
|
||||||
|
"description": "New track produced by London On Da Track called “Take Kare\"\n\nhttp://instagram.com/theyoungthugworld\nhttps://www.facebook.com/ThuggerThuggerCashMoney\n",
|
||||||
|
"uploader": "Young Thug World"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
# TODO more code goes here, for example ...
|
#id is what follows /song/ in url, usually the uploader name + title
|
||||||
#webpage = self._download_webpage(url, video_id)
|
id = url[url.index("/song/")+5:]
|
||||||
#title = self._html_search_regex(r'<h1>(.*?)</h1>', webpage, 'title')
|
|
||||||
|
|
||||||
assert("/song/" in url)
|
|
||||||
songurl = url[url.index("/song/")+5:]
|
|
||||||
title = songurl[songurl.rindex("/")+1:]
|
|
||||||
video_id = title
|
|
||||||
t = int(time.mktime(datetime.datetime.now().timetuple()))
|
|
||||||
s = "http://www.audiomack.com/api/music/url/song"+songurl+"?_="+str(t)
|
|
||||||
f = urllib.request.urlopen(s)
|
|
||||||
j = f.read(1000).decode("utf-8")
|
|
||||||
data = json.loads(j)
|
|
||||||
|
|
||||||
return {
|
#Call the api, which gives us a json doc with the real url inside
|
||||||
'id': video_id,
|
rightnow = int(time.mktime(datetime.datetime.now().timetuple()))
|
||||||
'title': title,
|
apiresponse = self._download_json("http://www.audiomack.com/api/music/url/song"+id+"?_="+str(rightnow), id)
|
||||||
'url' : data["url"],
|
if not url in apiresponse:
|
||||||
'ext' : 'mp3'
|
raise Exception("Unable to deduce api url of song")
|
||||||
# TODO more properties (see youtube_dl/extractor/common.py)
|
realurl = apiresponse["url"]
|
||||||
}
|
|
||||||
|
#Audiomack wraps a lot of soundcloud tracks in their branded wrapper
|
||||||
|
# - if so, pass the work off to the soundcloud extractor
|
||||||
|
if SoundcloudIE.suitable(realurl):
|
||||||
|
sc = SoundcloudIE(downloader=self._downloader)
|
||||||
|
return sc._real_extract(realurl)
|
||||||
|
else:
|
||||||
|
#Pull out metadata
|
||||||
|
page = self._download_webpage(url, id)
|
||||||
|
artist = self._html_search_regex(r'<span class="artist">(.*)</span>', page, "artist")
|
||||||
|
songtitle = self._html_search_regex(r'<h1 class="profile-title song-title"><span class="artist">.*</span>(.*)</h1>', page, "title")
|
||||||
|
title = artist+" - "+songtitle
|
||||||
|
return {
|
||||||
|
'id': title, # ignore id, which is not useful in song name
|
||||||
|
'title': title,
|
||||||
|
'url': realurl,
|
||||||
|
'ext': 'mp3'
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user