2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
5 from ..compat
import compat_urllib_parse_unquote
6 from ..utils
import int_or_none
9 class XiamiBaseIE(InfoExtractor
):
10 _API_BASE_URL
= 'https://emumo.xiami.com/song/playlist/cat/json/id'
12 def _download_webpage_handle(self
, *args
, **kwargs
):
13 webpage
= super(XiamiBaseIE
, self
)._download
_webpage
_handle
(*args
, **kwargs
)
14 if '>Xiami is currently not available in your country.<' in webpage
:
15 self
.raise_geo_restricted('Xiami is currently not available in your country')
18 def _extract_track(self
, track
, track_id
=None):
19 track_name
= track
.get('songName') or track
.get('name') or track
['subName']
20 artist
= track
.get('artist') or track
.get('artist_name') or track
.get('singers')
21 title
= '%s - %s' % (artist
, track_name
) if artist
else track_name
22 track_url
= self
._decrypt
(track
['location'])
25 lyrics_url
= track
.get('lyric_url') or track
.get('lyric')
26 if lyrics_url
and lyrics_url
.startswith('http'):
27 subtitles
['origin'] = [{'url': lyrics_url
}]
30 'id': track
.get('song_id') or track_id
,
33 'thumbnail': track
.get('pic') or track
.get('album_pic'),
34 'duration': int_or_none(track
.get('length')),
35 'creator': track
.get('artist', '').split(';')[0],
37 'track_number': int_or_none(track
.get('track')),
38 'album': track
.get('album_name') or track
.get('title'),
40 'subtitles': subtitles
,
43 def _extract_tracks(self
, item_id
, referer
, typ
=None):
44 playlist
= self
._download
_json
(
45 '%s/%s%s' % (self
._API
_BASE
_URL
, item_id
, '/type/%s' % typ
if typ
else ''),
50 self
._extract
_track
(track
, item_id
)
51 for track
in playlist
['data']['trackList']]
57 short_lenth
= len(origin
) // n
58 long_num
= len(origin
) - short_lenth
* n
64 l
+= (origin
[0:length
], )
65 origin
= origin
[length
:]
67 for i
in range(0, short_lenth
+ 1):
71 return compat_urllib_parse_unquote(ans
).replace('^', '0')
74 class XiamiSongIE(XiamiBaseIE
):
75 IE_NAME
= 'xiami:song'
77 _VALID_URL
= r
'https?://(?:www\.)?xiami\.com/song/(?P<id>[^/?#&]+)'
79 'url': 'http://www.xiami.com/song/1775610518',
80 'md5': '521dd6bea40fd5c9c69f913c232cb57e',
84 'title': 'HONNE - Woman',
85 'thumbnail': r
're:http://img\.xiami\.net/images/album/.*\.jpg',
97 'skip': 'Georestricted',
99 'url': 'http://www.xiami.com/song/1775256504',
100 'md5': '932a3abd45c6aa2b1fdbe028fcb4c4fc',
105 'thumbnail': r
're:http://img\.xiami\.net/images/album/.*\.jpg',
117 'skip': 'Georestricted',
119 'url': 'http://www.xiami.com/song/1775953850',
123 'title': 'До Скону - Чума Пожирает Землю',
124 'thumbnail': r
're:http://img\.xiami\.net/images/album/.*\.jpg',
126 'creator': 'До Скону',
127 'track': 'Чума Пожирает Землю',
130 'artist': 'До Скону',
133 'skip_download': True,
136 'url': 'http://www.xiami.com/song/xLHGwgd07a1',
137 'only_matching': True,
140 def _real_extract(self
, url
):
141 return self
._extract
_tracks
(self
._match
_id
(url
), url
)[0]
144 class XiamiPlaylistBaseIE(XiamiBaseIE
):
145 def _real_extract(self
, url
):
146 item_id
= self
._match
_id
(url
)
147 return self
.playlist_result(self
._extract
_tracks
(item_id
, url
, self
._TYPE
), item_id
)
150 class XiamiAlbumIE(XiamiPlaylistBaseIE
):
151 IE_NAME
= 'xiami:album'
152 IE_DESC
= '虾米音乐 - 专辑'
153 _VALID_URL
= r
'https?://(?:www\.)?xiami\.com/album/(?P<id>[^/?#&]+)'
156 'url': 'http://www.xiami.com/album/2100300444',
160 'playlist_count': 10,
161 'skip': 'Georestricted',
163 'url': 'http://www.xiami.com/album/512288?spm=a1z1s.6843761.1110925389.6.hhE9p9',
164 'only_matching': True,
166 'url': 'http://www.xiami.com/album/URVDji2a506',
167 'only_matching': True,
171 class XiamiArtistIE(XiamiPlaylistBaseIE
):
172 IE_NAME
= 'xiami:artist'
173 IE_DESC
= '虾米音乐 - 歌手'
174 _VALID_URL
= r
'https?://(?:www\.)?xiami\.com/artist/(?P<id>[^/?#&]+)'
177 'url': 'http://www.xiami.com/artist/2132?spm=0.0.0.0.dKaScp',
181 'playlist_count': 20,
182 'skip': 'Georestricted',
184 'url': 'http://www.xiami.com/artist/bC5Tk2K6eb99',
185 'only_matching': True,
189 class XiamiCollectionIE(XiamiPlaylistBaseIE
):
190 IE_NAME
= 'xiami:collection'
191 IE_DESC
= '虾米音乐 - 精选集'
192 _VALID_URL
= r
'https?://(?:www\.)?xiami\.com/collect/(?P<id>[^/?#&]+)'
195 'url': 'http://www.xiami.com/collect/156527391?spm=a1z1s.2943601.6856193.12.4jpBnr',
199 'playlist_mincount': 29,
200 'skip': 'Georestricted',