mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
parent
d1483ec693
commit
56793f74c3
1 changed files with 9 additions and 1 deletions
|
@ -8,6 +8,7 @@ from ..utils import (
|
|||
OnDemandPagedList,
|
||||
int_or_none,
|
||||
mimetype2ext,
|
||||
qualities,
|
||||
traverse_obj,
|
||||
unified_timestamp,
|
||||
)
|
||||
|
@ -64,13 +65,15 @@ class IwaraIE(InfoExtractor):
|
|||
# https://github.com/yt-dlp/yt-dlp/issues/6549#issuecomment-1473771047
|
||||
x_version = hashlib.sha1('_'.join((paths[-1], q['expires'][0], '5nFp9kmbNnHdAFhaqMvt')).encode()).hexdigest()
|
||||
|
||||
preference = qualities(['preview', '360', '540', 'Source'])
|
||||
|
||||
files = self._download_json(fileurl, video_id, headers={'X-Version': x_version})
|
||||
for fmt in files:
|
||||
yield traverse_obj(fmt, {
|
||||
'format_id': 'name',
|
||||
'url': ('src', ('view', 'download'), {self._proto_relative_url}),
|
||||
'ext': ('type', {mimetype2ext}),
|
||||
'quality': ('name', {lambda x: int_or_none(x) or 1e4}),
|
||||
'quality': ('name', {preference}),
|
||||
'height': ('name', {int_or_none}),
|
||||
}, get_all=False)
|
||||
|
||||
|
@ -84,6 +87,11 @@ class IwaraIE(InfoExtractor):
|
|||
elif errmsg:
|
||||
raise ExtractorError(f'Iwara says: {errmsg}')
|
||||
|
||||
if not video_data.get('fileUrl'):
|
||||
if video_data.get('embedUrl'):
|
||||
return self.url_result(video_data.get('embedUrl'))
|
||||
raise ExtractorError('This video is unplayable', expected=True)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'age_limit': 18 if video_data.get('rating') == 'ecchi' else 0, # ecchi is 'sexy' in Japanese
|
||||
|
|
Loading…
Reference in a new issue