[extractor/vocaroo] Add extractor (#6117)

Authored by: qbnu, SuperSonicHub1
Closes #6152
This commit is contained in:
qbnu 2023-02-17 03:18:07 +00:00 committed by GitHub
parent da880559a6
commit e4a8b1769e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 66 additions and 0 deletions

View File

@ -2190,6 +2190,7 @@ from .vk import (
VKUserVideosIE,
VKWallPostIE,
)
from .vocaroo import VocarooIE
from .vodlocker import VodlockerIE
from .vodpl import VODPlIE
from .vodplatform import VODPlatformIE

View File

@ -0,0 +1,65 @@
from .common import InfoExtractor
from ..utils import (
HEADRequest,
float_or_none,
)
class VocarooIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?(?:vocaroo\.com|voca\.ro)/(?:embed/)?(?P<id>\w+)'
_EMBED_REGEX = [r'<iframe[^>]+src=(["\'])(?P<url>(?:https?://)?(?:www\.)?vocaroo\.com/embed/.+?)\1']
_TESTS = [
{
'url': 'https://vocaroo.com/1de8yA3LNe77',
'md5': 'c557841d5e50261777a6585648adf439',
'info_dict': {
'id': '1de8yA3LNe77',
'ext': 'mp3',
'title': 'Vocaroo video #1de8yA3LNe77',
'timestamp': 1675059800.370,
'upload_date': '20230130',
},
},
{
'url': 'https://vocaroo.com/embed/12WqtjLnpj6g?autoplay=0',
'only_matching': True,
},
{
'url': 'https://voca.ro/12D52rgpzkB0',
'only_matching': True,
},
]
_WEBPAGE_TESTS = [
{
'url': 'https://qbnu.github.io/cool.html',
'md5': 'f322e529275dd8a47994919eeac404a5',
'info_dict': {
'id': '19cgWmKO6AmC',
'ext': 'mp3',
'title': 'Vocaroo video #19cgWmKO6AmC',
'timestamp': 1675093841.408,
'upload_date': '20230130',
},
},
]
def _real_extract(self, url):
audio_id = self._match_id(url)
if len(audio_id) == 10 or (len(audio_id) == 12 and audio_id[0] == '1'):
media_subdomain = 'media1'
else:
media_subdomain = 'media'
url = f'https://{media_subdomain}.vocaroo.com/mp3/{audio_id}'
http_headers = {'Referer': 'https://vocaroo.com/'}
resp = self._request_webpage(HEADRequest(url), audio_id, headers=http_headers)
return {
'id': audio_id,
'title': '',
'url': url,
'ext': 'mp3',
'timestamp': float_or_none(resp.getheader('x-bz-upload-timestamp'), scale=1000),
'vcodec': 'none',
'http_headers': http_headers,
}