[PromoDJ] Add more tests

pull/9200/head
DmitryScaletta 9 months ago
parent 5b148c0f79
commit 0c8466572f
No known key found for this signature in database
GPG Key ID: 167A65222EDD4C2A

@ -81,11 +81,11 @@ class PromoDJBaseIE(InfoExtractor):
if self._get_current_page(html) != page + 1: if self._get_current_page(html) != page + 1:
return return
for a in get_elements_html_by_class('player_standard_tool__play', html): for a in get_elements_html_by_class('player_standard_tool__comments', html):
url = traverse_obj(extract_attributes(a), ('href', {url_or_none})) url = traverse_obj(extract_attributes(a), ('href', {url_or_none}))
if not url: if not url:
continue continue
url = url.replace('?play=1', '') url = url.replace('#comments', '')
is_video = '/videos/' in url is_video = '/videos/' in url
if is_video and 'video' in allowed_media_cats or not is_video and 'music' in allowed_media_cats: if is_video and 'video' in allowed_media_cats or not is_video and 'music' in allowed_media_cats:
yield self.url_result(url, PromoDJIE) yield self.url_result(url, PromoDJIE)
@ -139,6 +139,7 @@ class PromoDJBaseIE(InfoExtractor):
video = traverse_obj( video = traverse_obj(
self._parse_json(media_data['config'], id), ('playlist', 'item', 0)) self._parse_json(media_data['config'], id), ('playlist', 'item', 0))
formats = [{ formats = [{
'format_id': 'web',
'url': traverse_obj(video, ('play', '@url')).replace('?returnurl=1', ''), 'url': traverse_obj(video, ('play', '@url')).replace('?returnurl=1', ''),
**traverse_obj(media_data, { **traverse_obj(media_data, {
'width': ('width', {int_or_none}), 'width': ('width', {int_or_none}),
@ -162,7 +163,9 @@ class PromoDJBaseIE(InfoExtractor):
'url': ('URL', {url_or_none}), 'url': ('URL', {url_or_none}),
'size': ('size', {int_or_none}), 'size': ('size', {int_or_none}),
}) for source in traverse_obj(media_data, ('sources'))] }) for source in traverse_obj(media_data, ('sources'))]
thumbnails = [{'url': url} for url in traverse_obj(media_data, ('coverURL', ('600', '1200', '2000'))) if url_or_none] thumbnails = [{
'url': url,
} for url in traverse_obj(media_data, ('coverURL', ('600', '1200', '2000'))) if url_or_none(url)]
return { return {
'id': id, 'id': id,
'title': clean_html(dict_get(media_data, ('title_html', 'title'))), 'title': clean_html(dict_get(media_data, ('title_html', 'title'))),
@ -178,11 +181,13 @@ class PromoDJPageIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<id>{_PAGES_RE})' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<id>{_PAGES_RE})'
_TESTS = [{ _TESTS = [{
'url': 'https://promodj.com/featured', 'url': 'https://promodj.com/featured',
'only_matching': True, 'info_dict': {
}, { 'id': 'featured',
# second page },
'url': 'https://promodj.com/featured/rap?download=1&page=2', 'playlist_count': 40,
'only_matching': True, 'params': {
'playlistend': 40,
},
}, { }, {
# filtered # filtered
'url': 'https://promodj.com/remixes?top=1', 'url': 'https://promodj.com/remixes?top=1',
@ -196,9 +201,25 @@ class PromoDJPageIE(PromoDJBaseIE):
'url': 'https://promodj.com/mixes?kind=mixes&styleID=&searchfor=dance', 'url': 'https://promodj.com/mixes?kind=mixes&styleID=&searchfor=dance',
'only_matching': True, 'only_matching': True,
}, { }, {
# no download button # shop
'url': 'https://promodj.com/shop', 'url': 'https://promodj.com/shop',
'only_matching': True, 'info_dict': {
'id': 'shop',
},
'playlist_count': 20,
'params': {
'playlistend': 20,
},
}, {
# videos
'url': 'https://promodj.com/videos',
'info_dict': {
'id': 'videos',
},
'playlist_count': 20,
'params': {
'playlistend': 20,
},
}] }]
_PAGE_SIZE = 20 _PAGE_SIZE = 20
@ -215,11 +236,25 @@ class PromoDJPageIE(PromoDJBaseIE):
class PromoDJUserIE(PromoDJBaseIE): class PromoDJUserIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})$' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})$'
_TESTS = [{ _TESTS = [{
'url': 'https://promodj.com/dj-trojan',
'info_dict': {
'id': 'dj-trojan',
},
'playlist_mincount': 89,
}, {
# with default video playlist
'url': 'https://promodj.com/djperetse', 'url': 'https://promodj.com/djperetse',
'only_matching': True, 'info_dict': {
'id': 'djperetse',
},
'playlist_mincount': 15,
}, { }, {
'url': 'https://promodj.com/dj-trojan', # without any playlists
'only_matching': True, 'url': 'https://promodj.com/slim96',
'info_dict': {
'id': 'slim96',
},
'playlist_count': 0,
}] }]
def _real_extract(self, url): def _real_extract(self, url):
@ -236,15 +271,31 @@ class PromoDJUserIE(PromoDJBaseIE):
class PromoDJUserMediaIE(PromoDJBaseIE): class PromoDJUserMediaIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<type>music|video)$' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<type>music|video)$'
_TESTS = [{ _TESTS = [{
'url': 'https://promodj.com/feel/music', 'url': 'https://promodj.com/worobyev/music',
'only_matching': True, 'info_dict': {
'id': 'worobyev-music',
},
'playlist_mincount': 11,
}, { }, {
'url': 'https://promodj.com/djmikis/video', # no music
'only_matching': True, 'url': 'https://promodj.com/xsev71/music',
'info_dict': {
'id': 'xsev71-music',
},
'playlist_count': 0,
}, { }, {
# a user without any videos 'url': 'https://promodj.com/cosmonaut/video',
'info_dict': {
'id': 'cosmonaut-video',
},
'playlist_mincount': 2,
}, {
# no video
'url': 'https://promodj.com/worobyev/video', 'url': 'https://promodj.com/worobyev/video',
'only_matching': True, 'info_dict': {
'id': 'worobyev-video',
},
'playlist_count': 0,
}] }]
def _real_extract(self, url): def _real_extract(self, url):
@ -264,19 +315,40 @@ class PromoDJUserPagesIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<type>pages|blog)$' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<type>pages|blog)$'
_TESTS = [{ _TESTS = [{
'url': 'https://promodj.com/djperetse/pages', 'url': 'https://promodj.com/djperetse/pages',
'only_matching': True, 'info_dict': {
'id': 'djperetse-pages',
},
'playlist_count': 10,
}, { }, {
'url': 'https://promodj.com/golub/blog', # no pages
'only_matching': True, 'url': 'https://promodj.com/djlosev/pages',
'info_dict': {
'id': 'djlosev-pages',
},
'playlist_count': 0,
}, {
'url': 'https://promodj.com/ivanroudyk/blog',
'info_dict': {
'id': 'ivanroudyk-blog',
},
'playlist_mincount': 37,
}, {
# no blog
'url': 'https://promodj.com/worobyev/blog',
'info_dict': {
'id': 'worobyev-blog',
},
'playlist_count': 0,
}] }]
_PAGE_SIZE = 10 _PAGE_SIZE = 10
def _parse_pages(self, url, playlist_id): def _parse_pages(self, url, playlist_id):
html = self._download_webpage(url, playlist_id) html = self._download_webpage(url, playlist_id)
content_html = get_element_by_class('dj_universal', get_element_by_class('dj_bblock', html)) content_html = get_element_by_class('dj_content ', html)
for page_url, page_title in re.findall(r'<a href=\"([^\"]+)\">([^<]+)</a>', content_html): if pages_html := get_element_by_class('dj_universal', content_html):
yield self.url_result(page_url, PromoDJUserPageIE, video_title=page_title) for page_url, page_title in re.findall(r'<a href=\"([^\"]+)\">([^<]+)</a>', pages_html):
yield self.url_result(page_url, PromoDJUserPageIE, video_title=page_title)
def _fetch_blogs_page(self, url, playlist_id, page): def _fetch_blogs_page(self, url, playlist_id, page):
page_url = self._set_url_page(url, page + 1) page_url = self._set_url_page(url, page + 1)
@ -318,7 +390,10 @@ class PromoDJUserPageIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<slug>{_USER_PAGE_RE})$' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<slug>{_USER_PAGE_RE})$'
_TESTS = [{ _TESTS = [{
'url': 'https://promodj.com/djperetse/MaxMixes', 'url': 'https://promodj.com/djperetse/MaxMixes',
'only_matching': True, 'info_dict': {
'id': 'djperetse-MaxMixes',
},
'playlist_count': 5,
}] }]
def _real_extract(self, url): def _real_extract(self, url):
@ -331,24 +406,40 @@ class PromoDJUserPageIE(PromoDJBaseIE):
class PromoDJBlogPageIE(PromoDJBaseIE): class PromoDJBlogPageIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/blog/(?P<id>\d+)(?:/(?P<slug>\w+))?' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/blog/(?P<id>\d+)(?:/\w+)?'
_TESTS = [{ _TESTS = [{
# with small and big audio players and youtube video # with small and big audio players and youtube video
'url': 'https://promodj.com/golub/blog/1163895/DJ_Andrey_Golubev_To_Depeche_Mode_with_love_part_9_special_dj_edits_mix', 'url': 'https://promodj.com/golub/blog/1163895/DJ_Andrey_Golubev_To_Depeche_Mode_with_love_part_9_special_dj_edits_mix',
'only_matching': True, 'info_dict': {
'id': 'golub-blog-1163895',
},
'playlist_count': 13,
}, { }, {
# with audio and video # with audio and video
'url': 'https://promodj.com/svetmusic/blog/1101958/SVET_I_Like_It_Extra_Sound_Recordings', 'url': 'https://promodj.com/svetmusic/blog/1101958/SVET_I_Like_It_Extra_Sound_Recordings',
'only_matching': True, 'info_dict': {
'id': 'svetmusic-blog-1101958',
},
'playlist_count': 5,
}, { }, {
# without any media # without any media
'url': 'https://promodj.com/svetmusic/blog/915878/DJ_SVET_pobeditel_konkursa_Burn_City_Sound', 'url': 'https://promodj.com/svetmusic/blog/915878/DJ_SVET_pobeditel_konkursa_Burn_City_Sound',
'only_matching': True, 'info_dict': {
'id': 'svetmusic-blog-915878',
},
'playlist_count': 0,
}, {
# with deleted and blocked music
'url': 'https://promodj.com/djperetse/blog/1048739/DJ_Peretse_i_Coca_Cola_obyavlyayut_MEGAMIX_BATTLE_2015',
'info_dict': {
'id': 'djperetse-blog-1048739',
},
'playlist_count': 29,
}] }]
def _real_extract(self, url): def _real_extract(self, url):
login, id, slug = self._match_valid_url(url).groups() login, id = self._match_valid_url(url).groups()
page_id = f'{login}-blog-{id}-{slug}' page_id = f'{login}-blog-{id}'
html = self._download_webpage(url, page_id) html = self._download_webpage(url, page_id)
content_html = get_element_by_class('post_body', html) content_html = get_element_by_class('post_body', html)
return self.playlist_result( return self.playlist_result(
@ -361,29 +452,57 @@ class PromoDJPlaylistIE(PromoDJBaseIE):
rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<type>groups)/(?P<id>\d+)(?:/(?P<slug>\w+))?', rf'{PromoDJBaseIE._BASE_URL_RE}/(?P<login>{PromoDJBaseIE._LOGIN_RE})/(?P<type>groups)/(?P<id>\d+)(?:/(?P<slug>\w+))?',
] ]
_TESTS = [{ _TESTS = [{
# default playlist: tracks (audio) # default playlist: music (with songs without player)
'url': 'https://promodj.com/gluk/tracks', 'url': 'https://promodj.com/gluk/tracks',
'only_matching': True, 'info_dict': {
'id': 'gluk-tracks',
},
'playlist_mincount': 29,
}, {
# default playlist: with pagination
'url': 'https://promodj.com/gluk/mixes',
'info_dict': {
'id': 'gluk-mixes',
},
'playlist_count': 60,
'params': {
'playlistend': 60,
},
}, { }, {
# default playlist: video # default playlist: video
'url': 'https://promodj.com/djperetse/videos', 'url': 'https://promodj.com/djperetse/videos',
'only_matching': True, 'info_dict': {
'id': 'djperetse-videos',
},
'playlist_mincount': 6,
}, { }, {
# user playlist: audio # user playlist: audio
'url': 'https://promodj.com/fonarev/groups/608158/Digital_Emotions_Night', 'url': 'https://promodj.com/fonarev/groups/608158/Digital_Emotions_Night',
'only_matching': True, 'info_dict': {
'id': 'fonarev-groups-608158',
},
'playlist_mincount': 9,
}, { }, {
# two pages # user playlist: with pagination
'url': 'https://promodj.com/lavrov/groups/677132/VINYL', 'url': 'https://promodj.com/lavrov/groups/677132/VINYL',
'only_matching': True, 'info_dict': {
'id': 'lavrov-groups-677132',
},
'playlist_mincount': 33,
}, { }, {
# user playlist: video # user playlist: video
'url': 'https://promodj.com/deeplecture/groups/672782/LAROCCA_TV', 'url': 'https://promodj.com/deeplecture/groups/672782/LAROCCA_TV',
'only_matching': True, 'info_dict': {
'id': 'deeplecture-groups-672782',
},
'playlist_mincount': 4,
}, { }, {
# user playlist: audio and video # user playlist: audio and video
'url': 'https://promodj.com/djperetse/groups/637358/Russkie_treki', 'url': 'https://promodj.com/djperetse/groups/637358/Russkie_treki',
'only_matching': True, 'info_dict': {
'id': 'djperetse-groups-637358',
},
'playlist_mincount': 17,
}, { }, {
# 900+ items # 900+ items
'url': 'https://promodj.com/fonarev/groups/17350/Digital_Emotions_Podcast', 'url': 'https://promodj.com/fonarev/groups/17350/Digital_Emotions_Podcast',
@ -406,10 +525,12 @@ class PromoDJPlaylistIE(PromoDJBaseIE):
class PromoDJMusicPlaylistIE(PromoDJPlaylistIE): class PromoDJMusicPlaylistIE(PromoDJPlaylistIE):
_VALID_URL = []
_ALLOWED_MEDIA_CATS = ['music'] _ALLOWED_MEDIA_CATS = ['music']
class PromoDJVideoPlaylistIE(PromoDJPlaylistIE): class PromoDJVideoPlaylistIE(PromoDJPlaylistIE):
_VALID_URL = []
_ALLOWED_MEDIA_CATS = ['video'] _ALLOWED_MEDIA_CATS = ['video']
@ -429,18 +550,17 @@ class PromoDJIE(PromoDJBaseIE):
'view_count': int, 'view_count': int,
}, },
}, { }, {
# samples type
'url': 'https://promodj.com/j-factory/samples/7560171/Amedici_BW1_Intro', 'url': 'https://promodj.com/j-factory/samples/7560171/Amedici_BW1_Intro',
'info_dict': { 'only_matching': True,
'id': '7560171', }, {
'ext': 'mp3', # acapellas type
'title': 'Amedici - BW1 - Intro', 'url': 'https://promodj.com/cosmonaut/acapellas/200970/Kosmonavt_golosovoe_ID',
'tags': ['Multitrack master', 'Fx'], 'only_matching': True,
'upload_date': '20240212', }, {
'timestamp': 1707748800.0, # realtones type
'duration': 21.0, 'url': 'https://promodj.com/plashstringer/realtones/965489/bomba_bomba',
'size': 838041, 'only_matching': True,
'view_count': int,
},
}, { }, {
# music: no download links in html # music: no download links in html
'url': 'https://promodj.com/gluk/tracks/4713922/DJ_Glyuk_Folk_ing_DJ_Steven_Smile_Remix_2005', 'url': 'https://promodj.com/gluk/tracks/4713922/DJ_Glyuk_Folk_ing_DJ_Steven_Smile_Remix_2005',
@ -489,6 +609,10 @@ class PromoDJIE(PromoDJBaseIE):
'params': { 'params': {
'skip_download': 'Link is broken', 'skip_download': 'Link is broken',
}, },
}, {
# no player (the link from html is broken but the link from API is ok)
'url': 'https://promodj.com/scratchin/remixes/374580/Katya_First_Perestala_DJ_Ivan_Scratchin_Mix',
'only_matching': True,
}, { }, {
# without slug # without slug
'url': 'https://promodj.com/djlykov/tracks/7551590', 'url': 'https://promodj.com/djlykov/tracks/7551590',
@ -632,7 +756,7 @@ class PromoDJIE(PromoDJBaseIE):
_IS_PAID_RE = r'<b>Цена:</b>' _IS_PAID_RE = r'<b>Цена:</b>'
# examples: MP3, 320 Кбит | MP4, 20157 Кбит | WAV, 1412 Кбит | AVI, 1731 Кбит | ASF, 6905 Кбит | FLAC, 1509 Кбит # examples: MP3, 320 Кбит | MP4, 20157 Кбит | WAV, 1412 Кбит | AVI, 1731 Кбит | ASF, 6905 Кбит | FLAC, 1509 Кбит
# https://regex101.com/r/2AuaxB/1 # https://regex101.com/r/2AuaxB/1
_FORMATS_RE = r'(?:<a\s+href=\"(?P<url>[^\"]+)\">)?\s*(?P<format>\w+), (?P<bitrate>\d+) Кбит' _FORMATS_RE = r'(?:<a\s+href=\"(?P<url>[^\"]+)\">)?\s*\w+, (?P<bitrate>\d+) Кбит'
_VIEW_COUNT_RE = r'<b>(?:Прослушиваний|Просмотров):</b>\s*(\d+)' _VIEW_COUNT_RE = r'<b>(?:Прослушиваний|Просмотров):</b>\s*(\d+)'
# examples: 0:21 | 1:07 | 74:38 # examples: 0:21 | 1:07 | 74:38
_DURATION_RE = r'<b>Продолжительность:</b>\s*(\d+:\d{2})' _DURATION_RE = r'<b>Продолжительность:</b>\s*(\d+:\d{2})'
@ -701,9 +825,10 @@ class PromoDJIE(PromoDJBaseIE):
# size field describes best quality # size field describes best quality
size = self._parse_ru_size(re.search(self._SIZE_RE, meta_html).groups()) size = self._parse_ru_size(re.search(self._SIZE_RE, meta_html).groups())
if type == 'videos': if type == 'videos':
for url, _, bitrate in formats_from_html: for url, bitrate in formats_from_html:
if url_or_none(url): if url_or_none(url):
metadata['formats'].append({ metadata['formats'].append({
'format_id': 'source',
'url': url, 'url': url,
'tbr': int(bitrate), 'tbr': int(bitrate),
'size': size, 'size': size,
@ -711,7 +836,7 @@ class PromoDJIE(PromoDJBaseIE):
}) })
else: else:
for i, match in enumerate(formats_from_html): for i, match in enumerate(formats_from_html):
url, _, bitrate = match url, bitrate = match
is_last = i == len(formats_from_html) - 1 is_last = i == len(formats_from_html) - 1
if is_last: if is_last:
metadata['formats'][0]['abr'] = int(bitrate) metadata['formats'][0]['abr'] = int(bitrate)
@ -726,7 +851,7 @@ class PromoDJIE(PromoDJBaseIE):
'title': clean_html(get_element_by_class('file_title', html)), 'title': clean_html(get_element_by_class('file_title', html)),
'view_count': int_or_none(self._search_regex(self._VIEW_COUNT_RE, meta_html, 'view_count', default=None)), 'view_count': int_or_none(self._search_regex(self._VIEW_COUNT_RE, meta_html, 'view_count', default=None)),
'duration': parse_duration(self._search_regex(self._DURATION_RE, meta_html, 'duration')), 'duration': parse_duration(self._search_regex(self._DURATION_RE, meta_html, 'duration')),
'timestamp': self._parse_ru_date(re.findall(self._TIMESTAMP_RE, meta_html)[0]), 'timestamp': self._parse_ru_date(re.search(self._TIMESTAMP_RE, meta_html).groups()),
'tags': self._html_search_regex(self._TAGS_RE, meta_html, 'tags').split(', '), 'tags': self._html_search_regex(self._TAGS_RE, meta_html, 'tags').split(', '),
}) })
@ -735,14 +860,47 @@ class PromoDJEmbedIE(PromoDJBaseIE):
_VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/embed/(?P<id>\d+)/(?P<type>cover|big)' _VALID_URL = rf'{PromoDJBaseIE._BASE_URL_RE}/embed/(?P<id>\d+)/(?P<type>cover|big)'
_TESTS = [{ _TESTS = [{
'url': 'https://promodj.com/embed/7555440/cover', 'url': 'https://promodj.com/embed/7555440/cover',
'only_matching': True, 'info_dict': {
'id': '7555440',
'ext': 'mp3',
'title': 'Kolya Funk - Exclusive Mix (February 2024)',
'tags': ['House', 'Indie Dance'],
'upload_date': '20240131',
'timestamp': 1706738400.0,
'duration': 3697.0,
'size': 148478361,
'view_count': int,
},
}, { }, {
'url': 'https://promodj.com/embed/7540163/big', 'url': 'https://promodj.com/embed/7540163/big',
'only_matching': True, 'info_dict': {
'id': '7540163',
'ext': 'mp3',
'title': 'Khalif - Amore (Akif Pro Remix)',
'tags': ['Deep House', 'Slap House'],
'upload_date': '20231224',
'timestamp': 1703418600.0,
'duration': 157.0,
'size': 8178892,
'view_count': int,
},
}, { }, {
# video (can be only big) # video (can be only big)
'url': 'https://promodj.com/embed/3922099/big', 'url': 'https://promodj.com/embed/3922099/big',
'only_matching': True, 'info_dict': {
'id': '3922099',
'ext': 'mp4',
'title': 'Will I Am & Britney Spears - Scream & Shout (DJ Nejtrino & DJ Stranger Remix) Video Full HD',
'tags': ['Club House', 'Vocal House'],
'thumbnail': r're:^https?://',
'upload_date': '20130211',
'timestamp': 1360583760.0,
'duration': 234560,
'size': 309644492,
'view_count': int,
'channel_url': 'https://promodj.com/dj-stranger',
'channel': 'DJ Stranger',
},
}, { }, {
# blocked # blocked
'url': 'https://promodj.com/embed/5586967/big', 'url': 'https://promodj.com/embed/5586967/big',
@ -763,8 +921,36 @@ class PromoDJEmbedIE(PromoDJBaseIE):
class PromoDJShortIE(PromoDJBaseIE): class PromoDJShortIE(PromoDJBaseIE):
_VALID_URL = r'https://pdj.cc/(?P<id>\w+)' _VALID_URL = r'https://pdj.cc/(?P<id>\w+)'
_TESTS = [{ _TESTS = [{
# music
'url': 'https://pdj.cc/fv8VD', 'url': 'https://pdj.cc/fv8VD',
'only_matching': True, 'info_dict': {
'id': '7422493',
'ext': 'flac',
'title': 'Sasha Orbeat — Pure Love 3',
'tags': ['Lo-Fi', 'Downtempo'],
'upload_date': '20230213',
'timestamp': 1676306160.0,
'duration': 3631.0,
'size': 685139558,
'view_count': int,
},
}, {
# video
'url': 'https://pdj.cc/fvcpX',
'info_dict': {
'id': '7435905',
'ext': 'mp4',
'title': 'JULIA - DEBRI FM (guest mix 18.03.23)',
'tags': ['Drum & Bass'],
'thumbnail': r're:^https?://',
'upload_date': '20230321',
'timestamp': 1679441100.0,
'duration': 2329640,
'size': 2952790016,
'view_count': int,
'channel': 'JULIA',
'channel_url': 'https://promodj.com/julia-breaks',
},
}] }]
def _real_extract(self, url): def _real_extract(self, url):

Loading…
Cancel
Save