2022-12-27 08:04:56 +01:00
|
|
|
from .common import InfoExtractor
|
|
|
|
from .youtube import YoutubeIE, YoutubeTabIE
|
|
|
|
|
|
|
|
|
|
|
|
class BeatBumpVideoIE(InfoExtractor):
|
2024-02-01 19:38:42 +01:00
|
|
|
_VALID_URL = r'https?://beatbump\.(?:ml|io)/listen\?id=(?P<id>[\w-]+)'
|
2022-12-27 08:04:56 +01:00
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://beatbump.ml/listen?id=MgNrAu2pzNs',
|
|
|
|
'md5': '5ff3fff41d3935b9810a9731e485fe66',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'MgNrAu2pzNs',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'artist': 'Stephen',
|
|
|
|
'thumbnail': 'https://i.ytimg.com/vi_webp/MgNrAu2pzNs/maxresdefault.webp',
|
|
|
|
'channel_url': 'https://www.youtube.com/channel/UC-pWHpBjdGG69N9mM2auIAA',
|
|
|
|
'upload_date': '20190312',
|
|
|
|
'categories': ['Music'],
|
|
|
|
'playable_in_embed': True,
|
|
|
|
'duration': 169,
|
|
|
|
'like_count': int,
|
|
|
|
'alt_title': 'Voyeur Girl',
|
|
|
|
'view_count': int,
|
|
|
|
'track': 'Voyeur Girl',
|
2023-11-15 15:34:39 +01:00
|
|
|
'uploader': 'Stephen',
|
2022-12-27 08:04:56 +01:00
|
|
|
'title': 'Voyeur Girl',
|
|
|
|
'channel_follower_count': int,
|
|
|
|
'age_limit': 0,
|
|
|
|
'availability': 'public',
|
|
|
|
'live_status': 'not_live',
|
|
|
|
'album': 'it\'s too much love to know my dear',
|
|
|
|
'channel': 'Stephen',
|
|
|
|
'comment_count': int,
|
|
|
|
'description': 'md5:7ae382a65843d6df2685993e90a8628f',
|
|
|
|
'tags': 'count:11',
|
|
|
|
'creator': 'Stephen',
|
|
|
|
'channel_id': 'UC-pWHpBjdGG69N9mM2auIAA',
|
2023-11-15 15:34:39 +01:00
|
|
|
'channel_is_verified': True,
|
|
|
|
'heatmap': 'count:100',
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'url': 'https://beatbump.io/listen?id=LDGZAprNGWo',
|
|
|
|
'only_matching': True,
|
2022-12-27 08:04:56 +01:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
id_ = self._match_id(url)
|
|
|
|
return self.url_result(f'https://music.youtube.com/watch?v={id_}', YoutubeIE, id_)
|
|
|
|
|
|
|
|
|
|
|
|
class BeatBumpPlaylistIE(InfoExtractor):
|
2024-02-01 19:38:42 +01:00
|
|
|
_VALID_URL = r'https?://beatbump\.(?:ml|io)/(?:release\?id=|artist/|playlist/)(?P<id>[\w-]+)'
|
2022-12-27 08:04:56 +01:00
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://beatbump.ml/release?id=MPREb_gTAcphH99wE',
|
|
|
|
'playlist_count': 50,
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'OLAK5uy_l1m0thk3g31NmIIz_vMIbWtyv7eZixlH0',
|
|
|
|
'availability': 'unlisted',
|
|
|
|
'view_count': int,
|
|
|
|
'title': 'Album - Royalty Free Music Library V2 (50 Songs)',
|
|
|
|
'description': '',
|
|
|
|
'tags': [],
|
2023-11-15 15:34:39 +01:00
|
|
|
'modified_date': '20231110',
|
|
|
|
},
|
|
|
|
'expected_warnings': ['YouTube Music is not directly supported'],
|
2022-12-27 08:04:56 +01:00
|
|
|
}, {
|
|
|
|
'url': 'https://beatbump.ml/artist/UC_aEa8K-EOJ3D6gOs7HcyNg',
|
|
|
|
'playlist_mincount': 1,
|
|
|
|
'params': {'flatplaylist': True},
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'UC_aEa8K-EOJ3D6gOs7HcyNg',
|
2023-11-15 15:34:39 +01:00
|
|
|
'uploader_url': 'https://www.youtube.com/@NoCopyrightSounds',
|
2022-12-27 08:04:56 +01:00
|
|
|
'channel_url': 'https://www.youtube.com/channel/UC_aEa8K-EOJ3D6gOs7HcyNg',
|
2023-11-15 15:34:39 +01:00
|
|
|
'uploader_id': '@NoCopyrightSounds',
|
2022-12-27 08:04:56 +01:00
|
|
|
'channel_follower_count': int,
|
2023-11-15 15:34:39 +01:00
|
|
|
'title': 'NoCopyrightSounds',
|
2022-12-27 08:04:56 +01:00
|
|
|
'uploader': 'NoCopyrightSounds',
|
|
|
|
'description': 'md5:cd4fd53d81d363d05eee6c1b478b491a',
|
|
|
|
'channel': 'NoCopyrightSounds',
|
2023-11-15 15:34:39 +01:00
|
|
|
'tags': 'count:65',
|
2022-12-27 08:04:56 +01:00
|
|
|
'channel_id': 'UC_aEa8K-EOJ3D6gOs7HcyNg',
|
2023-11-15 15:34:39 +01:00
|
|
|
'channel_is_verified': True,
|
2022-12-27 08:04:56 +01:00
|
|
|
},
|
2023-11-15 15:34:39 +01:00
|
|
|
'expected_warnings': ['YouTube Music is not directly supported'],
|
2022-12-27 08:04:56 +01:00
|
|
|
}, {
|
|
|
|
'url': 'https://beatbump.ml/playlist/VLPLRBp0Fe2GpgmgoscNFLxNyBVSFVdYmFkq',
|
|
|
|
'playlist_mincount': 1,
|
|
|
|
'params': {'flatplaylist': True},
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'PLRBp0Fe2GpgmgoscNFLxNyBVSFVdYmFkq',
|
|
|
|
'uploader_url': 'https://www.youtube.com/@NoCopyrightSounds',
|
|
|
|
'description': 'Providing you with copyright free / safe music for gaming, live streaming, studying and more!',
|
|
|
|
'view_count': int,
|
2023-11-15 15:34:39 +01:00
|
|
|
'channel_url': 'https://www.youtube.com/channel/UC_aEa8K-EOJ3D6gOs7HcyNg',
|
|
|
|
'uploader_id': '@NoCopyrightSounds',
|
2022-12-27 08:04:56 +01:00
|
|
|
'title': 'NCS : All Releases 💿',
|
|
|
|
'uploader': 'NoCopyrightSounds',
|
|
|
|
'availability': 'public',
|
|
|
|
'channel': 'NoCopyrightSounds',
|
|
|
|
'tags': [],
|
2023-11-15 15:34:39 +01:00
|
|
|
'modified_date': '20231112',
|
2022-12-27 08:04:56 +01:00
|
|
|
'channel_id': 'UC_aEa8K-EOJ3D6gOs7HcyNg',
|
2023-11-15 15:34:39 +01:00
|
|
|
},
|
|
|
|
'expected_warnings': ['YouTube Music is not directly supported'],
|
|
|
|
}, {
|
|
|
|
'url': 'https://beatbump.io/playlist/VLPLFCHGavqRG-q_2ZhmgU2XB2--ZY6irT1c',
|
|
|
|
'only_matching': True,
|
2022-12-27 08:04:56 +01:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
id_ = self._match_id(url)
|
|
|
|
return self.url_result(f'https://music.youtube.com/browse/{id_}', YoutubeTabIE, id_)
|