3 from .common
import InfoExtractor
4 from ..utils
import ExtractorError
, clean_html
, int_or_none
, try_get
, unified_strdate
7 class DamtomoBaseIE(InfoExtractor
):
8 def _real_extract(self
, url
):
9 video_id
= self
._match
_id
(url
)
10 webpage
, handle
= self
._download
_webpage
_handle
(self
._WEBPAGE
_URL
_TMPL
% video_id
, video_id
, encoding
='sjis')
12 if handle
.url
== 'https://www.clubdam.com/sorry/':
13 raise ExtractorError('You are rate-limited. Try again later.', expected
=True)
14 if '<h2>予期せぬエラーが発生しました。</h2>' in webpage
:
15 raise ExtractorError('There is an error on server-side. Try again later.', expected
=True)
17 description
= self
._search
_regex
(r
'(?m)<div id="public_comment">\s*<p>\s*([^<]*?)\s*</p>', webpage
, 'description', default
=None)
18 uploader_id
= self
._search
_regex
(r
'<a href="https://www\.clubdam\.com/app/damtomo/member/info/Profile\.do\?damtomoId=([^"]+)"', webpage
, 'uploader_id', default
=None)
21 mobj
.group('class'): re
.sub(r
'\s+', ' ', clean_html(mobj
.group('value')))
22 for mobj
in re
.finditer(r
'(?s)<(p|div)\s+class="(?P<class>[^" ]+?)">(?P<value>.+?)</\1>', webpage
)}
24 # since videos do not have title, give the name of song instead
25 data_dict
['user_name'] = re
.sub(r
'\s*さん\s*$', '', data_dict
['user_name'])
26 title
= data_dict
.get('song_title')
28 stream_tree
= self
._download
_xml
(
29 self
._DKML
_XML
_URL
% video_id
, video_id
, note
='Requesting stream information', encoding
='sjis',
30 # doing this has no problem since there is no character outside ASCII,
31 # and never likely to happen in the future
32 transform_source
=lambda x
: re
.sub(r
'\s*encoding="[^"]+?"', '', x
))
33 m3u8_url
= try_get(stream_tree
, lambda x
: x
.find(
34 './/d:streamingUrl', {'d': self
._DKML
_XML
_NS
}).text
.strip(), str)
36 raise ExtractorError('Failed to obtain m3u8 URL')
37 formats
= self
._extract
_m
3u8_formats
(m3u8_url
, video_id
, ext
='mp4')
42 'uploader_id': uploader_id
,
43 'description': description
,
44 'uploader': data_dict
.get('user_name'),
45 'upload_date': unified_strdate(self
._search
_regex
(r
'(\d{4}/\d{2}/\d{2})', data_dict
.get('date'), 'upload_date', default
=None)),
46 'view_count': int_or_none(self
._search
_regex
(r
'(\d+)', data_dict
['audience'], 'view_count', default
=None)),
47 'like_count': int_or_none(self
._search
_regex
(r
'(\d+)', data_dict
['nice'], 'like_count', default
=None)),
49 'artist': data_dict
.get('song_artist'),
54 class DamtomoVideoIE(DamtomoBaseIE
):
55 IE_NAME
= 'damtomo:video'
56 _VALID_URL
= r
'https?://(?:www\.)?clubdam\.com/app/damtomo/(?:SP/)?karaokeMovie/StreamingDkm\.do\?karaokeMovieId=(?P<id>\d+)'
57 _WEBPAGE_URL_TMPL
= 'https://www.clubdam.com/app/damtomo/karaokeMovie/StreamingDkm.do?karaokeMovieId=%s'
58 _DKML_XML_URL
= 'https://www.clubdam.com/app/damtomo/karaokeMovie/GetStreamingDkmUrlXML.do?movieSelectFlg=2&karaokeMovieId=%s'
59 _DKML_XML_NS
= 'https://www.clubdam.com/app/damtomo/karaokeMovie/GetStreamingDkmUrlXML'
61 'url': 'https://www.clubdam.com/app/damtomo/karaokeMovie/StreamingDkm.do?karaokeMovieId=2414316',
66 'uploader_id': 'ODk5NTQwMzQ',
68 'artist': 'TM NETWORK(TMN)',
69 'upload_date': '20201226',
74 class DamtomoRecordIE(DamtomoBaseIE
):
75 IE_NAME
= 'damtomo:record'
76 _VALID_URL
= r
'https?://(?:www\.)?clubdam\.com/app/damtomo/(?:SP/)?karaokePost/StreamingKrk\.do\?karaokeContributeId=(?P<id>\d+)'
77 _WEBPAGE_URL_TMPL
= 'https://www.clubdam.com/app/damtomo/karaokePost/StreamingKrk.do?karaokeContributeId=%s'
78 _DKML_XML_URL
= 'https://www.clubdam.com/app/damtomo/karaokePost/GetStreamingKrkUrlXML.do?karaokeContributeId=%s'
79 _DKML_XML_NS
= 'https://www.clubdam.com/app/damtomo/karaokePost/GetStreamingKrkUrlXML'
81 'url': 'https://www.clubdam.com/app/damtomo/karaokePost/StreamingKrk.do?karaokeContributeId=27376862',
84 'title': 'イカSUMMER [良音]',
86 'uploader_id': 'MzAyMDExNTY',
87 'upload_date': '20210721',
90 'track': 'イカSUMMER [良音]',
91 'artist': 'ORANGE RANGE',
94 'url': 'https://www.clubdam.com/app/damtomo/karaokePost/StreamingKrk.do?karaokeContributeId=27489418',
97 'title': '心みだれて〜say it with flowers〜(生音)',
98 'uploader_id': 'NjI1MjI2MjU',
99 'description': 'やっぱりキーを下げて正解だった感じ。リベンジ成功ということで。',
100 'uploader': '箱の「中の人」',
101 'upload_date': '20210815',
104 'track': '心みだれて〜say it with flowers〜(生音)',