]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/soundgasm.py
[ie/orf:on] Improve extraction (#9677)
[yt-dlp.git] / yt_dlp / extractor / soundgasm.py
CommitLineData
1044f8af 1import re
2
3from .common import InfoExtractor
4
ba7aa464 5
1044f8af 6class SoundgasmIE(InfoExtractor):
80af2b73 7 IE_NAME = 'soundgasm'
30e61617 8 _VALID_URL = r'https?://(?:www\.)?soundgasm\.net/u/(?P<user>[0-9a-zA-Z_-]+)/(?P<display_id>[0-9a-zA-Z_-]+)'
1044f8af 9 _TEST = {
10 'url': 'http://soundgasm.net/u/ytdl/Piano-sample',
11 'md5': '010082a2c802c5275bb00030743e75ad',
12 'info_dict': {
13 'id': '88abd86ea000cafe98f96321b23cc1206cbcbcc9',
14 'ext': 'm4a',
30e61617
S
15 'title': 'Piano sample',
16 'description': 'Royalty Free Sample Music',
17 'uploader': 'ytdl',
1044f8af 18 }
19 }
20
21 def _real_extract(self, url):
5ad28e7f 22 mobj = self._match_valid_url(url)
30e61617
S
23 display_id = mobj.group('display_id')
24
ba7aa464 25 webpage = self._download_webpage(url, display_id)
30e61617 26
ba7aa464 27 audio_url = self._html_search_regex(
30e61617
S
28 r'(?s)m4a\s*:\s*(["\'])(?P<url>(?:(?!\1).)+)\1', webpage,
29 'audio URL', group='url')
30
31 title = self._search_regex(
32 r'<div[^>]+\bclass=["\']jp-title[^>]+>([^<]+)',
33 webpage, 'title', default=display_id)
34
ba7aa464 35 description = self._html_search_regex(
30e61617
S
36 (r'(?s)<div[^>]+\bclass=["\']jp-description[^>]+>(.+?)</div>',
37 r'(?s)<li>Description:\s(.*?)<\/li>'),
38 webpage, 'description', fatal=False)
39
40 audio_id = self._search_regex(
41 r'/([^/]+)\.m4a', audio_url, 'audio id', default=display_id)
1044f8af 42
43 return {
44 'id': audio_id,
ba7aa464 45 'display_id': display_id,
1044f8af 46 'url': audio_url,
30e61617
S
47 'vcodec': 'none',
48 'title': title,
49 'description': description,
50 'uploader': mobj.group('user'),
1044f8af 51 }
93b5071f 52
591ab1df 53
93b5071f 54class SoundgasmProfileIE(InfoExtractor):
80af2b73 55 IE_NAME = 'soundgasm:profile'
40969398 56 _VALID_URL = r'https?://(?:www\.)?soundgasm\.net/u/(?P<id>[^/]+)/?(?:\#.*)?$'
93b5071f
LP
57 _TEST = {
58 'url': 'http://soundgasm.net/u/ytdl',
93b5071f 59 'info_dict': {
93b5071f 60 'id': 'ytdl',
3cc57f96
S
61 },
62 'playlist_count': 1,
93b5071f
LP
63 }
64
65 def _real_extract(self, url):
66 profile_id = self._match_id(url)
93b5071f 67
3cc57f96 68 webpage = self._download_webpage(url, profile_id)
93b5071f 69
3cc57f96
S
70 entries = [
71 self.url_result(audio_url, 'Soundgasm')
72 for audio_url in re.findall(r'href="([^"]+/u/%s/[^"]+)' % profile_id, webpage)]
93b5071f 73
3cc57f96 74 return self.playlist_result(entries, profile_id)