]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/audiomack.py
Merge remote-tracking branch 'Tithen-Firion/master'
[yt-dlp.git] / youtube_dl / extractor / audiomack.py
CommitLineData
67500bf9 1# coding: utf-8
2from __future__ import unicode_literals
3
904fffff
PH
4import itertools
5import time
6
67500bf9 7from .common import InfoExtractor
9e9bc793 8from .soundcloud import SoundcloudIE
904fffff
PH
9from ..utils import (
10 ExtractorError,
11 url_basename,
12)
67500bf9 13
14
15class AudiomackIE(InfoExtractor):
ff081331 16 _VALID_URL = r'https?://(?:www\.)?audiomack\.com/song/(?P<id>[\w/-]+)'
9e9bc793 17 IE_NAME = 'audiomack'
18 _TESTS = [
ff081331 19 # hosted on audiomack
9e9bc793 20 {
21 'url': 'http://www.audiomack.com/song/roosh-williams/extraordinary',
9e9bc793 22 'info_dict':
23 {
defaf19f 24 'id': '310086',
ff081331 25 'ext': 'mp3',
904fffff 26 'uploader': 'Roosh Williams',
defaf19f 27 'title': 'Extraordinary'
9e9bc793 28 }
29 },
ff081331 30 # audiomack wrapper around soundcloud song
9e9bc793 31 {
9095aa38 32 'add_ie': ['Soundcloud'],
9e9bc793 33 'url': 'http://www.audiomack.com/song/xclusiveszone/take-kare',
810fb84d
PH
34 'info_dict': {
35 'id': '172419696',
36 'ext': 'mp3',
9095aa38 37 'description': 'md5:1fc3272ed7a635cce5be1568c2822997',
9e9bc793 38 'title': 'Young Thug ft Lil Wayne - Take Kare',
810fb84d
PH
39 'uploader': 'Young Thug World',
40 'upload_date': '20141016',
9e9bc793 41 }
9095aa38 42 },
9e9bc793 43 ]
67500bf9 44
45 def _real_extract(self, url):
defaf19f
YN
46 # URLs end with [uploader name]/[uploader title]
47 # this title is whatever the user types in, and is rarely
48 # the proper song title. Real metadata is in the api response
49 album_url_tag = self._match_id(url)
67500bf9 50
defaf19f 51 # Request the extended version of the api for extra fields like artist and title
d3c72db8 52 api_response = self._download_json(
ff081331 53 'http://www.audiomack.com/api/music/url/song/%s?extended=1&_=%d' % (
defaf19f
YN
54 album_url_tag, time.time()),
55 album_url_tag)
fdfefa1b 56
defaf19f 57 # API is inconsistent with errors
ff081331
YN
58 if 'url' not in api_response or not api_response['url'] or 'error' in api_response:
59 raise ExtractorError('Invalid url %s', url)
9e9bc793 60
5f6a1245 61 # Audiomack wraps a lot of soundcloud tracks in their branded wrapper
defaf19f 62 # if so, pass the work off to the soundcloud extractor
ff081331
YN
63 if SoundcloudIE.suitable(api_response['url']):
64 return {'_type': 'url', 'url': api_response['url'], 'ie_key': 'Soundcloud'}
d3c72db8 65
904fffff
PH
66 return {
67 'id': api_response.get('id', album_url_tag),
68 'uploader': api_response.get('artist'),
69 'title': api_response.get('title'),
70 'url': api_response['url'],
71 }
d3c72db8 72
defaf19f
YN
73
74class AudiomackAlbumIE(InfoExtractor):
75 _VALID_URL = r'https?://(?:www\.)?audiomack\.com/album/(?P<id>[\w/-]+)'
76 IE_NAME = 'audiomack:album'
77 _TESTS = [
78 # Standard album playlist
79 {
80 'url': 'http://www.audiomack.com/album/flytunezcom/tha-tour-part-2-mixtape',
ff081331 81 'playlist_count': 15,
defaf19f
YN
82 'info_dict':
83 {
ff081331
YN
84 'id': '812251',
85 'title': 'Tha Tour: Part 2 (Official Mixtape)'
defaf19f
YN
86 }
87 },
88 # Album playlist ripped from fakeshoredrive with no metadata
89 {
ff081331 90 'url': 'http://www.audiomack.com/album/fakeshoredrive/ppp-pistol-p-project',
904fffff
PH
91 'playlist': [{
92 'info_dict': {
93 'title': '9.-heaven-or-hell-chimaca-ft-zuse-prod-by-dj-fu',
94 'id': '9.-heaven-or-hell-chimaca-ft-zuse-prod-by-dj-fu',
95 'ext': 'mp3',
96 }
97 }],
98 'params': {
99 'playliststart': 8,
100 'playlistend': 8,
101 }
d3c72db8 102 }
defaf19f
YN
103 ]
104
105 def _real_extract(self, url):
106 # URLs end with [uploader name]/[uploader title]
107 # this title is whatever the user types in, and is rarely
108 # the proper song title. Real metadata is in the api response
109 album_url_tag = self._match_id(url)
ff081331 110 result = {'_type': 'playlist', 'entries': []}
defaf19f
YN
111 # There is no one endpoint for album metadata - instead it is included/repeated in each song's metadata
112 # Therefore we don't know how many songs the album has and must infi-loop until failure
904fffff 113 for track_no in itertools.count():
defaf19f 114 # Get song's metadata
904fffff
PH
115 api_response = self._download_json(
116 'http://www.audiomack.com/api/music/url/album/%s/%d?extended=1&_=%d'
117 % (album_url_tag, track_no, time.time()), album_url_tag,
118 note='Querying song information (%d)' % (track_no + 1))
defaf19f
YN
119
120 # Total failure, only occurs when url is totally wrong
121 # Won't happen in middle of valid playlist (next case)
ff081331
YN
122 if 'url' not in api_response or 'error' in api_response:
123 raise ExtractorError('Invalid url for track %d of album url %s' % (track_no, url))
defaf19f 124 # URL is good but song id doesn't exist - usually means end of playlist
ff081331 125 elif not api_response['url']:
defaf19f
YN
126 break
127 else:
128 # Pull out the album metadata and add to result (if it exists)
ff081331 129 for resultkey, apikey in [('id', 'album_id'), ('title', 'album_title')]:
defaf19f
YN
130 if apikey in api_response and resultkey not in result:
131 result[resultkey] = api_response[apikey]
904fffff
PH
132 song_id = url_basename(api_response['url']).rpartition('.')[0]
133 result['entries'].append({
134 'id': api_response.get('id', song_id),
135 'uploader': api_response.get('artist'),
136 'title': api_response.get('title', song_id),
137 'url': api_response['url'],
138 })
defaf19f 139 return result