1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
from .common import InfoExtractor
from ..networking import HEADRequest
from ..utils import 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.headers.get('x-bz-upload-timestamp'), scale=1000),
'vcodec': 'none',
'http_headers': http_headers,
}
|