1 from __future__
import unicode_literals
7 from .common
import InfoExtractor
13 compat_urllib_parse_unquote
,
28 class MixcloudIE(InfoExtractor
):
29 _VALID_URL
= r
'https?://(?:(?:www|beta|m)\.)?mixcloud\.com/([^/]+)/(?!stream|uploads|favorites|listens|playlists)([^/]+)'
33 'url': 'http://www.mixcloud.com/dholbach/cryptkeeper/',
35 'id': 'dholbach-cryptkeeper',
37 'title': 'Cryptkeeper',
38 'description': 'After quite a long silence from myself, finally another Drum\'n\'Bass mix with my favourite current dance floor bangers.',
39 'uploader': 'Daniel Holbach',
40 'uploader_id': 'dholbach',
41 'thumbnail': r
're:https?://.*\.jpg',
45 'url': 'http://www.mixcloud.com/gillespeterson/caribou-7-inch-vinyl-mix-chat/',
47 'id': 'gillespeterson-caribou-7-inch-vinyl-mix-chat',
49 'title': 'Caribou 7 inch Vinyl Mix & Chat',
50 'description': 'md5:2b8aec6adce69f9d41724647c65875e8',
51 'uploader': 'Gilles Peterson Worldwide',
52 'uploader_id': 'gillespeterson',
53 'thumbnail': 're:https?://.*',
57 'url': 'https://beta.mixcloud.com/RedLightRadio/nosedrip-15-red-light-radio-01-18-2016/',
58 'only_matching': True,
62 def _decrypt_xor_cipher(key
, ciphertext
):
63 """Encrypt/Decrypt XOR cipher. Both ways are possible because it's XOR."""
65 compat_chr(compat_ord(ch
) ^
compat_ord(k
))
66 for ch
, k
in compat_zip(ciphertext
, itertools
.cycle(key
))])
68 def _real_extract(self
, url
):
69 mobj
= re
.match(self
._VALID
_URL
, url
)
70 uploader
= mobj
.group(1)
71 cloudcast_name
= mobj
.group(2)
72 track_id
= compat_urllib_parse_unquote('-'.join((uploader
, cloudcast_name
)))
74 webpage
= self
._download
_webpage
(url
, track_id
)
77 encrypted_play_info
= self
._search
_regex
(
78 r
'm-play-info="([^"]+)"', webpage
, 'play info', default
=None)
80 if encrypted_play_info
is not None:
82 encrypted_play_info
= compat_b64decode(encrypted_play_info
)
85 full_info_json
= self
._parse
_json
(self
._html
_search
_regex
(
86 r
'<script id="relay-data" type="text/x-mixcloud">([^<]+)</script>',
87 webpage
, 'play info'), 'play info')
88 for item
in full_info_json
:
90 item
, lambda x
: x
['cloudcast']['data']['cloudcastLookup'],
92 if try_get(item_data
, lambda x
: x
['streamInfo']['url']):
96 raise ExtractorError('Failed to extract matching stream info')
98 message
= self
._html
_search
_regex
(
99 r
'(?s)<div[^>]+class="global-message cloudcast-disabled-notice-light"[^>]*>(.+?)<(?:a|/div)',
100 webpage
, 'error message', default
=None)
102 js_url
= self
._search
_regex
(
103 r
'<script[^>]+\bsrc=["\"](https://(?:www\.)?mixcloud\.com/media/(?:js2/www_js_4|js/www)\.[^>]+\.js)',
105 js
= self
._download
_webpage
(js_url
, track_id
, 'Downloading JS')
106 # Known plaintext attack
107 if encrypted_play_info
:
108 kps
= ['{"stream_url":']
109 kpa_target
= encrypted_play_info
111 kps
= ['https://', 'http://']
112 kpa_target
= compat_b64decode(info_json
['streamInfo']['url'])
114 partial_key
= self
._decrypt
_xor
_cipher
(kpa_target
, kp
)
115 for quote
in ["'", '"']:
116 key
= self
._search
_regex
(
117 r
'{0}({1}[^{0}]*){0}'.format(quote
, re
.escape(partial_key
)),
118 js
, 'encryption key', default
=None)
125 raise ExtractorError('Failed to extract encryption key')
127 if encrypted_play_info
is not None:
128 play_info
= self
._parse
_json
(self
._decrypt
_xor
_cipher
(key
, encrypted_play_info
), 'play info')
129 if message
and 'stream_url' not in play_info
:
130 raise ExtractorError('%s said: %s' % (self
.IE_NAME
, message
), expected
=True)
131 song_url
= play_info
['stream_url']
133 'format_id': 'normal',
137 title
= self
._html
_search
_regex
(r
'm-title="([^"]+)"', webpage
, 'title')
138 thumbnail
= self
._proto
_relative
_url
(self
._html
_search
_regex
(
139 r
'm-thumbnail-url="([^"]+)"', webpage
, 'thumbnail', fatal
=False))
140 uploader
= self
._html
_search
_regex
(
141 r
'm-owner-name="([^"]+)"', webpage
, 'uploader', fatal
=False)
142 uploader_id
= self
._search
_regex
(
143 r
'\s+"profile": "([^"]+)",', webpage
, 'uploader id', fatal
=False)
144 description
= self
._og
_search
_description
(webpage
)
145 view_count
= str_to_int(self
._search
_regex
(
146 [r
'<meta itemprop="interactionCount" content="UserPlays:([0-9]+)"',
147 r
'/listeners/?">([0-9,.]+)</a>',
148 r
'(?:m|data)-tooltip=["\']([\d
,.]+) plays
'],
149 webpage, 'play count
', default=None))
152 title = info_json['name
']
154 'https
://thumbnailer
.mixcloud
.com
/unsafe
/600x600
/',
155 try_get(info_json, lambda x: x['picture
']['urlRoot
'], compat_str))
156 uploader = try_get(info_json, lambda x: x['owner
']['displayName
'])
157 uploader_id = try_get(info_json, lambda x: x['owner
']['username
'])
158 description = try_get(info_json, lambda x: x['description
'])
159 view_count = int_or_none(try_get(info_json, lambda x: x['plays
']))
161 stream_info = info_json['streamInfo
']
164 for url_key in ('url
', 'hlsUrl
', 'dashUrl
'):
165 format_url = stream_info.get(url_key)
168 decrypted = self._decrypt_xor_cipher(key, compat_b64decode(format_url))
171 if url_key == 'hlsUrl
':
172 formats.extend(self._extract_m3u8_formats(
173 decrypted, track_id, 'mp4
', entry_protocol='m3u8_native
',
174 m3u8_id='hls
', fatal=False))
175 elif url_key == 'dashUrl
':
176 formats.extend(self._extract_mpd_formats(
177 decrypted, track_id, mpd_id='dash
', fatal=False))
183 self._sort_formats(formats)
189 'description
': description,
190 'thumbnail
': thumbnail,
191 'uploader
': uploader,
192 'uploader_id
': uploader_id,
193 'view_count
': view_count,
197 class MixcloudPlaylistBaseIE(InfoExtractor):
200 def _find_urls_in_page(self, page):
201 for url in re.findall(r'm
-play
-button m
-url
="(?P<url>[^"]+)"', page):
202 yield self.url_result(
203 compat_urlparse.urljoin('https://www.mixcloud.com', clean_html(url)),
206 def _fetch_tracks_page(self, path, video_id, page_name, current_page, real_page_number=None):
207 real_page_number = real_page_number or current_page + 1
208 return self._download_webpage(
209 'https://www.mixcloud.com/%s/' % path, video_id,
210 note='Download %s (page %d)' % (page_name, current_page + 1),
211 errnote='Unable to download %s' % page_name,
212 query={'page': real_page_number, 'list': 'main', '_ajax': '1'},
213 headers={'X-Requested-With': 'XMLHttpRequest'})
215 def _tracks_page_func(self, page, video_id, page_name, current_page):
216 resp = self._fetch_tracks_page(page, video_id, page_name, current_page)
218 for item in self._find_urls_in_page(resp):
221 def _get_user_description(self, page_content):
222 return self._html_search_regex(
223 r'<div[^>]+class="profile
-bio
"[^>]*>(.+?)</div>',
224 page_content, 'user description', fatal=False)
227 class MixcloudUserIE(MixcloudPlaylistBaseIE):
228 _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<user>[^/]+)/(?P<type>uploads|favorites|listens)?/?$'
229 IE_NAME = 'mixcloud:user'
232 'url': 'http://www.mixcloud.com/dholbach/',
234 'id': 'dholbach_uploads',
235 'title': 'Daniel Holbach (uploads)',
236 'description': 'md5:def36060ac8747b3aabca54924897e47',
238 'playlist_mincount': 11,
240 'url': 'http://www.mixcloud.com/dholbach/uploads/',
242 'id': 'dholbach_uploads',
243 'title': 'Daniel Holbach (uploads)',
244 'description': 'md5:def36060ac8747b3aabca54924897e47',
246 'playlist_mincount': 11,
248 'url': 'http://www.mixcloud.com/dholbach/favorites/',
250 'id': 'dholbach_favorites',
251 'title': 'Daniel Holbach (favorites)',
252 'description': 'md5:def36060ac8747b3aabca54924897e47',
255 'playlist_items': '1-100',
257 'playlist_mincount': 100,
259 'url': 'http://www.mixcloud.com/dholbach/listens/',
261 'id': 'dholbach_listens',
262 'title': 'Daniel Holbach (listens)',
263 'description': 'md5:def36060ac8747b3aabca54924897e47',
266 'playlist_items': '1-100',
268 'playlist_mincount': 100,
271 def _real_extract(self, url):
272 mobj = re.match(self._VALID_URL, url)
273 user_id = mobj.group('user')
274 list_type = mobj.group('type')
276 # if only a profile URL was supplied, default to download all uploads
277 if list_type is None:
278 list_type = 'uploads'
280 video_id = '%s_%s' % (user_id, list_type)
282 profile = self._download_webpage(
283 'https://www.mixcloud.com/%s/' % user_id, video_id,
284 note='Downloading user profile',
285 errnote='Unable to download user profile')
287 username = self._og_search_title(profile)
288 description = self._get_user_description(profile)
290 entries = OnDemandPagedList(
292 self._tracks_page_func,
293 '%s/%s' % (user_id, list_type), video_id, 'list of %s' % list_type),
296 return self.playlist_result(
297 entries, video_id, '%s (%s)' % (username, list_type), description)
300 class MixcloudPlaylistIE(MixcloudPlaylistBaseIE):
301 _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<user>[^/]+)/playlists/(?P<playlist>[^/]+)/?$'
302 IE_NAME = 'mixcloud:playlist'
305 'url': 'https://www.mixcloud.com/RedBullThre3style/playlists/tokyo-finalists-2015/',
307 'id': 'RedBullThre3style_tokyo-finalists-2015',
308 'title': 'National Champions 2015',
309 'description': 'md5:6ff5fb01ac76a31abc9b3939c16243a3',
311 'playlist_mincount': 16,
313 'url': 'https://www.mixcloud.com/maxvibes/playlists/jazzcat-on-ness-radio/',
314 'only_matching': True,
317 def _real_extract(self, url):
318 mobj = re.match(self._VALID_URL, url)
319 user_id = mobj.group('user')
320 playlist_id = mobj.group('playlist')
321 video_id = '%s_%s' % (user_id, playlist_id)
323 webpage = self._download_webpage(
325 note='Downloading playlist page',
326 errnote='Unable to download playlist page')
328 title = self._html_search_regex(
329 r'<a[^>]+class="parent active
"[^>]*><b>\d+</b><span[^>]*>([^<]+)',
330 webpage, 'playlist title',
331 default=None) or self._og_search_title(webpage, fatal=False)
332 description = self._get_user_description(webpage)
334 entries = OnDemandPagedList(
336 self._tracks_page_func,
337 '%s/playlists/%s' % (user_id, playlist_id), video_id, 'tracklist'),
340 return self.playlist_result(entries, video_id, title, description)
343 class MixcloudStreamIE(MixcloudPlaylistBaseIE):
344 _VALID_URL = r'https?://(?:www\.)?mixcloud\.com/(?P<id>[^/]+)/stream/?$'
345 IE_NAME = 'mixcloud:stream'
348 'url': 'https://www.mixcloud.com/FirstEar/stream/',
351 'title': 'First Ear',
352 'description': 'Curators of good music\nfirstearmusic.com',
354 'playlist_mincount': 192,
357 def _real_extract(self, url):
358 user_id = self._match_id(url)
360 webpage = self._download_webpage(url, user_id)
365 def _handle_page(page):
366 entries.extend(self._find_urls_in_page(page))
367 return self._search_regex(
368 r'm-next-page-url="([^
"]+)"', page,
369 'next page URL
', default=None)
371 next_page_url = _handle_page(webpage)
373 for idx in itertools.count(0):
374 if not next_page_url or prev_page_url == next_page_url:
377 prev_page_url = next_page_url
378 current_page = int(self._search_regex(
379 r'\?page
=(\d
+)', next_page_url, 'next page number
'))
381 next_page_url = _handle_page(self._fetch_tracks_page(
382 '%s/stream
' % user_id, user_id, 'stream
', idx,
383 real_page_number=current_page))
385 username = self._og_search_title(webpage)
386 description = self._get_user_description(webpage)
388 return self.playlist_result(entries, user_id, username, description)