2022-05-07 10:25:58 +00:00
|
|
|
import functools
|
2022-03-04 11:22:45 +00:00
|
|
|
import hashlib
|
|
|
|
import hmac
|
2022-05-07 10:25:58 +00:00
|
|
|
import json
|
2022-03-04 11:22:45 +00:00
|
|
|
import urllib.parse
|
|
|
|
|
2014-11-23 20:25:47 +00:00
|
|
|
from .common import InfoExtractor
|
2016-08-21 13:09:18 +00:00
|
|
|
from ..utils import (
|
2022-05-07 10:25:58 +00:00
|
|
|
OnDemandPagedList,
|
2016-08-21 13:09:18 +00:00
|
|
|
int_or_none,
|
2022-03-04 11:22:45 +00:00
|
|
|
traverse_obj,
|
2022-05-07 10:25:58 +00:00
|
|
|
urljoin,
|
2016-08-21 13:09:18 +00:00
|
|
|
)
|
2014-11-23 20:25:47 +00:00
|
|
|
|
|
|
|
|
2021-03-24 22:32:37 +00:00
|
|
|
class ZingMp3BaseIE(InfoExtractor):
|
2022-05-07 10:29:55 +00:00
|
|
|
_VALID_URL_TMPL = r'https?://(?:mp3\.zing|zingmp3)\.vn/(?P<type>(?:%s))/[^/?#]+/(?P<id>\w+)(?:\.html|\?)'
|
2021-03-24 22:32:37 +00:00
|
|
|
_GEO_COUNTRIES = ['VN']
|
2022-03-04 11:22:45 +00:00
|
|
|
_DOMAIN = 'https://zingmp3.vn'
|
2022-05-07 10:29:55 +00:00
|
|
|
_PER_PAGE = 50
|
|
|
|
_API_SLUGS = {
|
|
|
|
# Audio/video
|
2022-03-04 11:22:45 +00:00
|
|
|
'bai-hat': '/api/v2/page/get/song',
|
|
|
|
'embed': '/api/v2/page/get/song',
|
|
|
|
'video-clip': '/api/v2/page/get/video',
|
|
|
|
'lyric': '/api/v2/lyric/get/lyric',
|
2022-05-07 10:29:55 +00:00
|
|
|
'song-streaming': '/api/v2/song/get/streaming',
|
|
|
|
# Playlist
|
2022-05-07 10:25:58 +00:00
|
|
|
'playlist': '/api/v2/page/get/playlist',
|
|
|
|
'album': '/api/v2/page/get/playlist',
|
2022-05-07 10:29:55 +00:00
|
|
|
# Chart
|
2022-05-07 10:25:58 +00:00
|
|
|
'zing-chart': '/api/v2/page/get/chart-home',
|
|
|
|
'zing-chart-tuan': '/api/v2/page/get/week-chart',
|
|
|
|
'moi-phat-hanh': '/api/v2/page/get/newrelease-chart',
|
|
|
|
'the-loai-video': '/api/v2/video/get/list',
|
2022-05-07 10:29:55 +00:00
|
|
|
# User
|
2022-05-07 10:25:58 +00:00
|
|
|
'info-artist': '/api/v2/page/get/artist',
|
|
|
|
'user-list-song': '/api/v2/song/get/list',
|
|
|
|
'user-list-video': '/api/v2/video/get/list',
|
2022-03-04 11:22:45 +00:00
|
|
|
}
|
2021-03-24 22:32:37 +00:00
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _api_url(self, url_type, params):
|
|
|
|
api_slug = self._API_SLUGS[url_type]
|
|
|
|
params.update({'ctime': '1'})
|
|
|
|
sha256 = hashlib.sha256(
|
|
|
|
''.join(f'{k}={v}' for k, v in sorted(params.items())).encode()).hexdigest()
|
|
|
|
data = {
|
|
|
|
**params,
|
|
|
|
'apiKey': '88265e23d4284f25963e6eedac8fbfa3',
|
|
|
|
'sig': hmac.new(
|
|
|
|
b'2aa2d1c561e809b267f3638c4a307aab', f'{api_slug}{sha256}'.encode(), hashlib.sha512).hexdigest(),
|
2014-11-23 20:25:47 +00:00
|
|
|
}
|
2022-05-07 10:29:55 +00:00
|
|
|
return f'{self._DOMAIN}{api_slug}?{urllib.parse.urlencode(data)}'
|
|
|
|
|
|
|
|
def _call_api(self, url_type, params, display_id=None, **kwargs):
|
|
|
|
resp = self._download_json(
|
|
|
|
self._api_url(url_type, params), display_id or params.get('id'),
|
|
|
|
note=f'Downloading {url_type} JSON metadata', **kwargs)
|
|
|
|
return (resp or {}).get('data') or {}
|
2014-11-23 20:25:47 +00:00
|
|
|
|
2022-03-04 11:22:45 +00:00
|
|
|
def _real_initialize(self):
|
2022-05-16 14:06:36 +00:00
|
|
|
if not self._cookies_passed:
|
2022-05-07 10:29:55 +00:00
|
|
|
self._request_webpage(
|
|
|
|
self._api_url('bai-hat', {'id': ''}), None, note='Updating cookies')
|
2014-11-23 20:25:47 +00:00
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _parse_items(self, items):
|
|
|
|
for url in traverse_obj(items, (..., 'link')) or []:
|
|
|
|
yield self.url_result(urljoin(self._DOMAIN, url))
|
2022-05-07 10:25:58 +00:00
|
|
|
|
2014-11-23 20:25:47 +00:00
|
|
|
|
2021-03-24 22:32:37 +00:00
|
|
|
class ZingMp3IE(ZingMp3BaseIE):
|
2022-03-04 11:22:45 +00:00
|
|
|
_VALID_URL = ZingMp3BaseIE._VALID_URL_TMPL % 'bai-hat|video-clip|embed'
|
2022-05-07 10:29:55 +00:00
|
|
|
IE_NAME = 'zingmp3'
|
|
|
|
IE_DESC = 'zingmp3.vn'
|
2014-11-23 20:25:47 +00:00
|
|
|
_TESTS = [{
|
2022-03-04 11:22:45 +00:00
|
|
|
'url': 'https://mp3.zing.vn/bai-hat/Xa-Mai-Xa-Bao-Thy/ZWZB9WAB.html',
|
2014-11-23 21:00:25 +00:00
|
|
|
'md5': 'ead7ae13693b3205cbc89536a077daed',
|
2014-11-23 20:25:47 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': 'ZWZB9WAB',
|
2014-11-23 21:00:25 +00:00
|
|
|
'title': 'Xa Mãi Xa',
|
2014-11-23 20:25:47 +00:00
|
|
|
'ext': 'mp3',
|
2021-03-24 22:32:37 +00:00
|
|
|
'thumbnail': r're:^https?://.+\.jpg',
|
|
|
|
'subtitles': {
|
|
|
|
'origin': [{
|
|
|
|
'ext': 'lrc',
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
'duration': 255,
|
|
|
|
'track': 'Xa Mãi Xa',
|
|
|
|
'artist': 'Bảo Thy',
|
|
|
|
'album': 'Special Album',
|
|
|
|
'album_artist': 'Bảo Thy',
|
2014-11-23 20:25:47 +00:00
|
|
|
},
|
2016-08-21 13:09:18 +00:00
|
|
|
}, {
|
2022-03-04 11:22:45 +00:00
|
|
|
'url': 'https://zingmp3.vn/video-clip/Suong-Hoa-Dua-Loi-K-ICM-RYO/ZO8ZF7C7.html',
|
2022-05-07 10:29:55 +00:00
|
|
|
'md5': '3c2081e79471a2f4a3edd90b70b185ea',
|
2016-08-21 13:09:18 +00:00
|
|
|
'info_dict': {
|
2021-03-24 22:32:37 +00:00
|
|
|
'id': 'ZO8ZF7C7',
|
|
|
|
'title': 'Sương Hoa Đưa Lối',
|
2016-08-21 13:09:18 +00:00
|
|
|
'ext': 'mp4',
|
2021-03-24 22:32:37 +00:00
|
|
|
'thumbnail': r're:^https?://.+\.jpg',
|
|
|
|
'duration': 207,
|
|
|
|
'track': 'Sương Hoa Đưa Lối',
|
|
|
|
'artist': 'K-ICM, RYO',
|
2022-03-04 14:08:55 +00:00
|
|
|
'album': 'Sương Hoa Đưa Lối (Single)',
|
|
|
|
'album_artist': 'K-ICM, RYO',
|
2016-08-21 13:09:18 +00:00
|
|
|
},
|
2022-03-10 06:13:19 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/bai-hat/Nguoi-Yeu-Toi-Lanh-Lung-Sat-Da-Mr-Siro/ZZ6IW7OU.html',
|
|
|
|
'md5': '3e9f7a9bd0d965573dbff8d7c68b629d',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ZZ6IW7OU',
|
|
|
|
'title': 'Người Yêu Tôi Lạnh Lùng Sắt Đá',
|
|
|
|
'ext': 'mp3',
|
|
|
|
'thumbnail': r're:^https?://.+\.jpg',
|
|
|
|
'duration': 303,
|
|
|
|
'track': 'Người Yêu Tôi Lạnh Lùng Sắt Đá',
|
|
|
|
'artist': 'Mr. Siro',
|
|
|
|
'album': 'Người Yêu Tôi Lạnh Lùng Sắt Đá (Single)',
|
|
|
|
'album_artist': 'Mr. Siro',
|
|
|
|
},
|
2022-03-04 11:22:45 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/embed/song/ZWZEI76B?start=false',
|
|
|
|
'only_matching': True,
|
2016-08-21 13:09:18 +00:00
|
|
|
}, {
|
2021-03-24 22:32:37 +00:00
|
|
|
'url': 'https://zingmp3.vn/bai-hat/Xa-Mai-Xa-Bao-Thy/ZWZB9WAB.html',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _real_extract(self, url):
|
|
|
|
song_id, url_type = self._match_valid_url(url).group('id', 'type')
|
|
|
|
item = self._call_api(url_type, {'id': song_id})
|
|
|
|
|
|
|
|
item_id = item.get('encodeId') or song_id
|
|
|
|
if url_type == 'video-clip':
|
|
|
|
source = item.get('streaming')
|
|
|
|
source['mp4'] = self._download_json(
|
|
|
|
'http://api.mp3.zing.vn/api/mobile/video/getvideoinfo', item_id,
|
|
|
|
query={'requestdata': json.dumps({'id': item_id})},
|
|
|
|
note='Downloading mp4 JSON metadata').get('source')
|
|
|
|
else:
|
|
|
|
source = self._call_api('song-streaming', {'id': item_id})
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
for k, v in (source or {}).items():
|
|
|
|
if not v or v == 'VIP':
|
|
|
|
continue
|
|
|
|
if k not in ('mp4', 'hls'):
|
|
|
|
formats.append({
|
|
|
|
'ext': 'mp3',
|
|
|
|
'format_id': k,
|
|
|
|
'tbr': int_or_none(k),
|
|
|
|
'url': self._proto_relative_url(v),
|
|
|
|
'vcodec': 'none',
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
for res, video_url in v.items():
|
|
|
|
if not video_url:
|
|
|
|
continue
|
|
|
|
if k == 'hls':
|
|
|
|
formats.extend(self._extract_m3u8_formats(video_url, item_id, 'mp4', m3u8_id=k, fatal=False))
|
|
|
|
continue
|
|
|
|
formats.append({
|
|
|
|
'format_id': f'mp4-{res}',
|
|
|
|
'url': video_url,
|
|
|
|
'height': int_or_none(res),
|
|
|
|
})
|
|
|
|
|
|
|
|
if not formats and item.get('msg') == 'Sorry, this content is not available in your country.':
|
|
|
|
self.raise_geo_restricted(countries=self._GEO_COUNTRIES, metadata_available=True)
|
|
|
|
|
|
|
|
lyric = item.get('lyric') or self._call_api('lyric', {'id': item_id}, fatal=False).get('file')
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': item_id,
|
|
|
|
'title': traverse_obj(item, 'title', 'alias'),
|
|
|
|
'thumbnail': traverse_obj(item, 'thumbnail', 'thumbnailM'),
|
|
|
|
'duration': int_or_none(item.get('duration')),
|
|
|
|
'track': traverse_obj(item, 'title', 'alias'),
|
|
|
|
'artist': traverse_obj(item, 'artistsNames', 'artists_names'),
|
|
|
|
'album': traverse_obj(item, ('album', ('name', 'title')), get_all=False),
|
|
|
|
'album_artist': traverse_obj(item, ('album', ('artistsNames', 'artists_names')), get_all=False),
|
|
|
|
'formats': formats,
|
|
|
|
'subtitles': {'origin': [{'url': lyric}]} if lyric else None,
|
|
|
|
}
|
2021-03-24 22:32:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ZingMp3AlbumIE(ZingMp3BaseIE):
|
|
|
|
_VALID_URL = ZingMp3BaseIE._VALID_URL_TMPL % 'album|playlist'
|
|
|
|
_TESTS = [{
|
2015-10-10 16:05:01 +00:00
|
|
|
'url': 'http://mp3.zing.vn/album/Lau-Dai-Tinh-Ai-Bang-Kieu-Minh-Tuyet/ZWZBWDAF.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ZWZBWDAF',
|
2021-03-24 22:32:37 +00:00
|
|
|
'title': 'Lâu Đài Tình Ái',
|
2014-11-23 20:25:47 +00:00
|
|
|
},
|
2022-05-07 10:25:58 +00:00
|
|
|
'playlist_mincount': 9,
|
2022-03-10 06:13:19 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/album/Nhung-Bai-Hat-Hay-Nhat-Cua-Mr-Siro-Mr-Siro/ZWZAEZZD.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ZWZAEZZD',
|
|
|
|
'title': 'Những Bài Hát Hay Nhất Của Mr. Siro',
|
|
|
|
},
|
2022-05-07 10:25:58 +00:00
|
|
|
'playlist_mincount': 49,
|
2015-10-10 16:05:01 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://mp3.zing.vn/playlist/Duong-Hong-Loan-apollobee/IWCAACCB.html',
|
|
|
|
'only_matching': True,
|
2021-03-24 22:32:37 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/album/Lau-Dai-Tinh-Ai-Bang-Kieu-Minh-Tuyet/ZWZBWDAF.html',
|
|
|
|
'only_matching': True,
|
2015-10-10 16:05:01 +00:00
|
|
|
}]
|
2021-03-24 22:32:37 +00:00
|
|
|
IE_NAME = 'zingmp3:album'
|
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _real_extract(self, url):
|
|
|
|
song_id, url_type = self._match_valid_url(url).group('id', 'type')
|
|
|
|
data = self._call_api(url_type, {'id': song_id})
|
|
|
|
return self.playlist_result(
|
|
|
|
self._parse_items(traverse_obj(data, ('song', 'items'))),
|
|
|
|
traverse_obj(data, 'id', 'encodeId'), traverse_obj(data, 'name', 'title'))
|
2022-05-07 10:25:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ZingMp3ChartHomeIE(ZingMp3BaseIE):
|
|
|
|
_VALID_URL = r'https?://(?:mp3\.zing|zingmp3)\.vn/(?P<id>(?:zing-chart|moi-phat-hanh))/?(?:[#?]|$)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://zingmp3.vn/zing-chart',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'zing-chart',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 100,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/moi-phat-hanh',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'moi-phat-hanh',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 100,
|
|
|
|
}]
|
|
|
|
IE_NAME = 'zingmp3:chart-home'
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2022-05-07 10:29:55 +00:00
|
|
|
url_type = self._match_id(url)
|
|
|
|
data = self._call_api(url_type, {'id': url_type})
|
|
|
|
items = traverse_obj(data, ('RTChart', 'items') if url_type == 'zing-chart' else 'items')
|
|
|
|
return self.playlist_result(self._parse_items(items), url_type)
|
2022-05-07 10:25:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ZingMp3WeekChartIE(ZingMp3BaseIE):
|
2022-05-07 10:29:55 +00:00
|
|
|
_VALID_URL = ZingMp3BaseIE._VALID_URL_TMPL % 'zing-chart-tuan'
|
2022-05-07 10:25:58 +00:00
|
|
|
IE_NAME = 'zingmp3:week-chart'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://zingmp3.vn/zing-chart-tuan/Bai-hat-Viet-Nam/IWZ9Z08I.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z08I',
|
|
|
|
'title': 'zing-chart-vn',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/zing-chart-tuan/Bai-hat-US-UK/IWZ9Z0BW.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z0BW',
|
|
|
|
'title': 'zing-chart-us',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/zing-chart-tuan/Bai-hat-KPop/IWZ9Z0BO.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z0BO',
|
|
|
|
'title': 'zing-chart-korea',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
}]
|
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _real_extract(self, url):
|
|
|
|
song_id, url_type = self._match_valid_url(url).group('id', 'type')
|
|
|
|
data = self._call_api(url_type, {'id': song_id})
|
|
|
|
return self.playlist_result(
|
|
|
|
self._parse_items(data['items']), song_id, f'zing-chart-{data.get("country", "")}')
|
2022-05-07 10:25:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ZingMp3ChartMusicVideoIE(ZingMp3BaseIE):
|
|
|
|
_VALID_URL = r'https?://(?:mp3\.zing|zingmp3)\.vn/(?P<type>the-loai-video)/(?P<regions>[^/]+)/(?P<id>[^\.]+)'
|
|
|
|
IE_NAME = 'zingmp3:chart-music-video'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://zingmp3.vn/the-loai-video/Viet-Nam/IWZ9Z08I.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z08I',
|
|
|
|
'title': 'the-loai-video_Viet-Nam',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 400,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/the-loai-video/Au-My/IWZ9Z08O.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z08O',
|
|
|
|
'title': 'the-loai-video_Au-My',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 40,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/the-loai-video/Han-Quoc/IWZ9Z08W.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z08W',
|
|
|
|
'title': 'the-loai-video_Han-Quoc',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 30,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/the-loai-video/Khong-Loi/IWZ9Z086.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ9Z086',
|
|
|
|
'title': 'the-loai-video_Khong-Loi',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
}]
|
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _fetch_page(self, song_id, url_type, page):
|
|
|
|
return self._parse_items(self._call_api(url_type, {
|
2022-05-07 10:25:58 +00:00
|
|
|
'id': song_id,
|
|
|
|
'type': 'genre',
|
2022-05-07 10:29:55 +00:00
|
|
|
'page': page + 1,
|
2022-05-07 10:25:58 +00:00
|
|
|
'count': self._PER_PAGE
|
2022-05-07 10:29:55 +00:00
|
|
|
}).get('items'))
|
2022-05-07 10:25:58 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2022-05-07 10:29:55 +00:00
|
|
|
song_id, regions, url_type = self._match_valid_url(url).group('id', 'regions', 'type')
|
|
|
|
return self.playlist_result(
|
|
|
|
OnDemandPagedList(functools.partial(self._fetch_page, song_id, url_type), self._PER_PAGE),
|
|
|
|
song_id, f'{url_type}_{regions}')
|
2022-05-07 10:25:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ZingMp3UserIE(ZingMp3BaseIE):
|
2022-05-07 10:29:55 +00:00
|
|
|
_VALID_URL = r'https?://(?:mp3\.zing|zingmp3)\.vn/(?P<user>[^/]+)/(?P<type>bai-hat|single|album|video)/?(?:[?#]|$)'
|
2022-05-07 10:25:58 +00:00
|
|
|
IE_NAME = 'zingmp3:user'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://zingmp3.vn/Mr-Siro/bai-hat',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ98609',
|
|
|
|
'title': 'Mr. Siro - bai-hat',
|
|
|
|
'description': 'md5:85ab29bd7b21725c12bf76fd1d6922e5',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 91,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/Mr-Siro/album',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ98609',
|
|
|
|
'title': 'Mr. Siro - album',
|
|
|
|
'description': 'md5:85ab29bd7b21725c12bf76fd1d6922e5',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 3,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/Mr-Siro/single',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ98609',
|
|
|
|
'title': 'Mr. Siro - single',
|
|
|
|
'description': 'md5:85ab29bd7b21725c12bf76fd1d6922e5',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 20,
|
|
|
|
}, {
|
|
|
|
'url': 'https://zingmp3.vn/Mr-Siro/video',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'IWZ98609',
|
|
|
|
'title': 'Mr. Siro - video',
|
|
|
|
'description': 'md5:85ab29bd7b21725c12bf76fd1d6922e5',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 15,
|
|
|
|
}]
|
|
|
|
|
2022-05-07 10:29:55 +00:00
|
|
|
def _fetch_page(self, user_id, url_type, page):
|
|
|
|
url_type = 'user-list-song' if url_type == 'bai-hat' else 'user-list-video'
|
|
|
|
return self._parse_items(self._call_api(url_type, {
|
2022-05-07 10:25:58 +00:00
|
|
|
'id': user_id,
|
|
|
|
'type': 'artist',
|
2022-05-07 10:29:55 +00:00
|
|
|
'page': page + 1,
|
2022-05-07 10:25:58 +00:00
|
|
|
'count': self._PER_PAGE
|
2022-05-07 10:29:55 +00:00
|
|
|
}, query={'sort': 'new', 'sectionId': 'aSong'}).get('items'))
|
2022-05-07 10:25:58 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2022-05-07 10:29:55 +00:00
|
|
|
user_alias, url_type = self._match_valid_url(url).group('user', 'type')
|
|
|
|
if not url_type:
|
|
|
|
url_type = 'bai-hat'
|
|
|
|
|
|
|
|
user_info = self._call_api('info-artist', {}, user_alias, query={'alias': user_alias})
|
|
|
|
if url_type in ('bai-hat', 'video'):
|
|
|
|
entries = OnDemandPagedList(
|
|
|
|
functools.partial(self._fetch_page, user_info['id'], url_type), self._PER_PAGE)
|
2022-05-07 10:25:58 +00:00
|
|
|
else:
|
2022-05-07 10:29:55 +00:00
|
|
|
entries = self._parse_items(traverse_obj(user_info, (
|
|
|
|
'sections', lambda _, v: v['link'] == f'/{user_alias}/{url_type}', 'items', ...)))
|
|
|
|
return self.playlist_result(
|
|
|
|
entries, user_info['id'], f'{user_info.get("name")} - {url_type}', user_info.get('biography'))
|