2014-10-23 21:55:39 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-10-24 04:54:59 +00:00
|
|
|
from .soundcloud import SoundcloudIE
|
2014-10-25 02:07:01 +00:00
|
|
|
from ..utils import ExtractorError
|
2014-10-26 22:13:42 +00:00
|
|
|
|
2014-10-23 21:55:39 +00:00
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
class AudiomackIE(InfoExtractor):
|
2015-01-02 08:20:04 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?audiomack\.com/(song)/(?P<id>[\w/-]+)'
|
2014-10-24 04:54:59 +00:00
|
|
|
IE_NAME = 'audiomack'
|
|
|
|
_TESTS = [
|
2015-01-02 08:20:04 +00:00
|
|
|
# audiomack
|
2014-10-24 04:54:59 +00:00
|
|
|
{
|
|
|
|
'url': 'http://www.audiomack.com/song/roosh-williams/extraordinary',
|
|
|
|
'info_dict':
|
|
|
|
{
|
2015-01-02 08:20:04 +00:00
|
|
|
'id': '310086',
|
|
|
|
"ext": "mp3",
|
|
|
|
"artist": "Roosh Williams",
|
|
|
|
'title': 'Extraordinary'
|
2014-10-24 04:54:59 +00:00
|
|
|
}
|
|
|
|
},
|
2015-01-02 08:20:04 +00:00
|
|
|
# audiomack through soundcloud
|
2014-10-24 04:54:59 +00:00
|
|
|
{
|
2014-12-03 13:53:12 +00:00
|
|
|
'add_ie': ['Soundcloud'],
|
2014-10-24 04:54:59 +00:00
|
|
|
'url': 'http://www.audiomack.com/song/xclusiveszone/take-kare',
|
2014-12-04 07:27:40 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': '172419696',
|
|
|
|
'ext': 'mp3',
|
2014-12-03 13:53:12 +00:00
|
|
|
'description': 'md5:1fc3272ed7a635cce5be1568c2822997',
|
2014-10-24 04:54:59 +00:00
|
|
|
'title': 'Young Thug ft Lil Wayne - Take Kare',
|
2014-12-04 07:27:40 +00:00
|
|
|
'uploader': 'Young Thug World',
|
|
|
|
'upload_date': '20141016',
|
2014-10-24 04:54:59 +00:00
|
|
|
}
|
2014-12-03 13:53:12 +00:00
|
|
|
},
|
2014-10-24 04:54:59 +00:00
|
|
|
]
|
2014-10-23 21:55:39 +00:00
|
|
|
|
2015-01-02 08:20:04 +00:00
|
|
|
@staticmethod
|
|
|
|
def create_song_dictionary(api_response, album_url_tag, track_no=0):
|
|
|
|
# All keys are the same in audiomack api and InfoExtractor format
|
|
|
|
entry = {key: api_response[key] for key in ["title", "artist", "id", "url"] if key in api_response}
|
|
|
|
# Fudge values in the face of missing metadata
|
|
|
|
if "id" not in entry:
|
|
|
|
entry["id"] = track_no
|
|
|
|
if "title" not in entry:
|
|
|
|
entry["title"] = album_url_tag
|
|
|
|
return entry
|
|
|
|
|
2014-10-23 21:55:39 +00:00
|
|
|
def _real_extract(self, url):
|
2015-01-02 08:20:04 +00:00
|
|
|
# URLs end with [uploader name]/[uploader title]
|
|
|
|
# this title is whatever the user types in, and is rarely
|
|
|
|
# the proper song title. Real metadata is in the api response
|
|
|
|
album_url_tag = self._match_id(url)
|
2014-10-23 21:55:39 +00:00
|
|
|
|
2015-01-02 08:20:04 +00:00
|
|
|
# Request the extended version of the api for extra fields like artist and title
|
2014-10-25 06:58:03 +00:00
|
|
|
api_response = self._download_json(
|
2015-01-02 08:20:04 +00:00
|
|
|
"http://www.audiomack.com/api/music/url/song/%s?extended=1&_=%d" % (
|
|
|
|
album_url_tag, time.time()),
|
|
|
|
album_url_tag)
|
2014-10-25 02:07:01 +00:00
|
|
|
|
2015-01-02 08:20:04 +00:00
|
|
|
# API is inconsistent with errors
|
|
|
|
if "url" not in api_response or not api_response["url"] or "error" in api_response:
|
|
|
|
raise ExtractorError("Invalid url %s", url)
|
2014-10-24 04:54:59 +00:00
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
# Audiomack wraps a lot of soundcloud tracks in their branded wrapper
|
2015-01-02 08:20:04 +00:00
|
|
|
# if so, pass the work off to the soundcloud extractor
|
|
|
|
if SoundcloudIE.suitable(api_response["url"]):
|
|
|
|
return {'_type': 'url', 'url': api_response["url"], 'ie_key': 'Soundcloud'}
|
2014-10-25 06:58:03 +00:00
|
|
|
|
2015-01-02 08:20:04 +00:00
|
|
|
return self.create_song_dictionary(api_response, album_url_tag)
|
2014-10-25 06:58:03 +00:00
|
|
|
|
2015-01-02 08:20:04 +00:00
|
|
|
|
|
|
|
class AudiomackAlbumIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?audiomack\.com/album/(?P<id>[\w/-]+)'
|
|
|
|
IE_NAME = 'audiomack:album'
|
|
|
|
_TESTS = [
|
|
|
|
# Standard album playlist
|
|
|
|
{
|
|
|
|
'url': 'http://www.audiomack.com/album/flytunezcom/tha-tour-part-2-mixtape',
|
|
|
|
"playlist_count": 15,
|
|
|
|
'info_dict':
|
|
|
|
{
|
|
|
|
'id': "812251",
|
|
|
|
'title': "Tha Tour: Part 2 (Official Mixtape)"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
# Album playlist ripped from fakeshoredrive with no metadata
|
|
|
|
{
|
|
|
|
"url": "http://www.audiomack.com/album/fakeshoredrive/ppp-pistol-p-project",
|
|
|
|
"playlist_count": 10
|
2014-10-25 06:58:03 +00:00
|
|
|
}
|
2015-01-02 08:20:04 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
# URLs end with [uploader name]/[uploader title]
|
|
|
|
# this title is whatever the user types in, and is rarely
|
|
|
|
# the proper song title. Real metadata is in the api response
|
|
|
|
album_url_tag = self._match_id(url)
|
|
|
|
result = {"_type": "playlist", "entries": []}
|
|
|
|
# There is no one endpoint for album metadata - instead it is included/repeated in each song's metadata
|
|
|
|
# Therefore we don't know how many songs the album has and must infi-loop until failure
|
|
|
|
track_no = 0
|
|
|
|
while True:
|
|
|
|
# Get song's metadata
|
|
|
|
api_response = self._download_json("http://www.audiomack.com/api/music/url/album/%s/%d?extended=1&_=%d"
|
|
|
|
% (album_url_tag, track_no, time.time()), album_url_tag)
|
|
|
|
|
|
|
|
# Total failure, only occurs when url is totally wrong
|
|
|
|
# Won't happen in middle of valid playlist (next case)
|
|
|
|
if "url" not in api_response or "error" in api_response:
|
|
|
|
raise ExtractorError("Invalid url for track %d of album url %s" % (track_no, url))
|
|
|
|
# URL is good but song id doesn't exist - usually means end of playlist
|
|
|
|
elif not api_response["url"]:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# Pull out the album metadata and add to result (if it exists)
|
|
|
|
for resultkey, apikey in [("id", "album_id"), ("title", "album_title")]:
|
|
|
|
if apikey in api_response and resultkey not in result:
|
|
|
|
result[resultkey] = api_response[apikey]
|
|
|
|
result["entries"].append(AudiomackIE.create_song_dictionary(api_response, album_url_tag, track_no))
|
|
|
|
track_no += 1
|
|
|
|
return result
|