2021-08-31 19:29:30 +00:00
|
|
|
|
import re
|
2022-05-04 15:49:46 +00:00
|
|
|
|
import urllib
|
2016-09-10 19:02:00 +00:00
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2017-02-05 13:48:13 +00:00
|
|
|
|
from ..utils import (
|
|
|
|
|
int_or_none,
|
|
|
|
|
mimetype2ext,
|
|
|
|
|
remove_end,
|
2018-07-21 11:02:41 +00:00
|
|
|
|
url_or_none,
|
2022-05-04 15:49:46 +00:00
|
|
|
|
urljoin,
|
2021-08-31 19:29:30 +00:00
|
|
|
|
unified_strdate,
|
|
|
|
|
strip_or_none,
|
2017-02-05 13:48:13 +00:00
|
|
|
|
)
|
2016-09-10 19:02:00 +00:00
|
|
|
|
|
|
|
|
|
|
2022-05-04 15:49:46 +00:00
|
|
|
|
class IwaraBaseIE(InfoExtractor):
|
|
|
|
|
_BASE_REGEX = r'(?P<base_url>https?://(?:www\.|ecchi\.)?iwara\.tv)'
|
|
|
|
|
|
|
|
|
|
def _extract_playlist(self, base_url, webpage):
|
|
|
|
|
for path in re.findall(r'class="title">\s*<a[^<]+href="([^"]+)', webpage):
|
|
|
|
|
yield self.url_result(urljoin(base_url, path))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IwaraIE(IwaraBaseIE):
|
|
|
|
|
_VALID_URL = fr'{IwaraBaseIE._BASE_REGEX}/videos/(?P<id>[a-zA-Z0-9]+)'
|
2016-09-10 19:02:00 +00:00
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'http://iwara.tv/videos/amVwUl1EHpAD9RD',
|
2017-02-05 13:48:13 +00:00
|
|
|
|
# md5 is unstable
|
2016-09-10 19:02:00 +00:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'amVwUl1EHpAD9RD',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': '【MMD R-18】ガールフレンド carry_me_off',
|
|
|
|
|
'age_limit': 18,
|
2021-08-31 19:29:30 +00:00
|
|
|
|
'thumbnail': 'https://i.iwara.tv/sites/default/files/videos/thumbnails/7951/thumbnail-7951_0001.png',
|
|
|
|
|
'uploader': 'Reimu丨Action',
|
|
|
|
|
'upload_date': '20150828',
|
|
|
|
|
'description': 'md5:1d4905ce48c66c9299c617f08e106e0f',
|
2016-09-10 19:02:00 +00:00
|
|
|
|
},
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://ecchi.iwara.tv/videos/Vb4yf2yZspkzkBO',
|
|
|
|
|
'md5': '7e5f1f359cd51a027ba4a7b7710a50f0',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '0B1LvuHnL-sRFNXB1WHNqbGw4SXc',
|
|
|
|
|
'ext': 'mp4',
|
2017-02-05 13:48:13 +00:00
|
|
|
|
'title': '[3D Hentai] Kyonyu × Genkai × Emaki Shinobi Girls.mp4',
|
2016-09-10 19:02:00 +00:00
|
|
|
|
'age_limit': 18,
|
|
|
|
|
},
|
|
|
|
|
'add_ie': ['GoogleDrive'],
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.iwara.tv/videos/nawkaumd6ilezzgq',
|
2017-02-05 13:48:13 +00:00
|
|
|
|
# md5 is unstable
|
2016-09-10 19:02:00 +00:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '6liAP9s2Ojc',
|
|
|
|
|
'ext': 'mp4',
|
2017-02-05 13:48:13 +00:00
|
|
|
|
'age_limit': 18,
|
2016-09-10 19:02:00 +00:00
|
|
|
|
'title': '[MMD] Do It Again Ver.2 [1080p 60FPS] (Motion,Camera,Wav+DL)',
|
|
|
|
|
'description': 'md5:590c12c0df1443d833fbebe05da8c47a',
|
|
|
|
|
'upload_date': '20160910',
|
|
|
|
|
'uploader': 'aMMDsork',
|
|
|
|
|
'uploader_id': 'UCVOFyOSCyFkXTYYHITtqB7A',
|
|
|
|
|
},
|
|
|
|
|
'add_ie': ['Youtube'],
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
|
|
|
|
|
webpage, urlh = self._download_webpage_handle(url, video_id)
|
|
|
|
|
|
2022-05-04 15:49:46 +00:00
|
|
|
|
hostname = urllib.parse.urlparse(urlh.geturl()).hostname
|
2016-09-10 19:02:00 +00:00
|
|
|
|
# ecchi is 'sexy' in Japanese
|
|
|
|
|
age_limit = 18 if hostname.split('.')[0] == 'ecchi' else 0
|
|
|
|
|
|
2017-02-05 13:48:13 +00:00
|
|
|
|
video_data = self._download_json('http://www.iwara.tv/api/video/%s' % video_id, video_id)
|
2016-09-10 19:02:00 +00:00
|
|
|
|
|
2017-02-05 13:48:13 +00:00
|
|
|
|
if not video_data:
|
2016-09-10 19:02:00 +00:00
|
|
|
|
iframe_url = self._html_search_regex(
|
|
|
|
|
r'<iframe[^>]+src=([\'"])(?P<url>[^\'"]+)\1',
|
|
|
|
|
webpage, 'iframe URL', group='url')
|
|
|
|
|
return {
|
|
|
|
|
'_type': 'url_transparent',
|
|
|
|
|
'url': iframe_url,
|
|
|
|
|
'age_limit': age_limit,
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-04 08:27:35 +00:00
|
|
|
|
title = remove_end(self._html_extract_title(webpage), ' | Iwara')
|
2016-09-10 19:02:00 +00:00
|
|
|
|
|
2021-08-24 21:36:15 +00:00
|
|
|
|
thumbnail = self._html_search_regex(
|
2021-08-31 19:29:30 +00:00
|
|
|
|
r'poster=[\'"]([^\'"]+)', webpage, 'thumbnail', default=None)
|
|
|
|
|
|
|
|
|
|
uploader = self._html_search_regex(
|
|
|
|
|
r'class="username">([^<]+)', webpage, 'uploader', fatal=False)
|
|
|
|
|
|
|
|
|
|
upload_date = unified_strdate(self._html_search_regex(
|
|
|
|
|
r'作成日:([^\s]+)', webpage, 'upload_date', fatal=False))
|
|
|
|
|
|
|
|
|
|
description = strip_or_none(self._search_regex(
|
|
|
|
|
r'<p>(.+?(?=</div))', webpage, 'description', fatal=False,
|
|
|
|
|
flags=re.DOTALL))
|
2021-08-24 21:36:15 +00:00
|
|
|
|
|
2017-02-05 13:48:13 +00:00
|
|
|
|
formats = []
|
|
|
|
|
for a_format in video_data:
|
2018-07-21 11:02:41 +00:00
|
|
|
|
format_uri = url_or_none(a_format.get('uri'))
|
|
|
|
|
if not format_uri:
|
|
|
|
|
continue
|
2017-02-05 13:48:13 +00:00
|
|
|
|
format_id = a_format.get('resolution')
|
|
|
|
|
height = int_or_none(self._search_regex(
|
|
|
|
|
r'(\d+)p', format_id, 'height', default=None))
|
|
|
|
|
formats.append({
|
2018-07-21 11:02:41 +00:00
|
|
|
|
'url': self._proto_relative_url(format_uri, 'https:'),
|
2017-02-05 13:48:13 +00:00
|
|
|
|
'format_id': format_id,
|
|
|
|
|
'ext': mimetype2ext(a_format.get('mime')) or 'mp4',
|
|
|
|
|
'height': height,
|
2017-02-05 14:30:13 +00:00
|
|
|
|
'width': int_or_none(height / 9.0 * 16.0 if height else None),
|
2017-02-05 13:48:13 +00:00
|
|
|
|
'quality': 1 if format_id == 'Source' else 0,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
|
|
return {
|
2016-09-10 19:02:00 +00:00
|
|
|
|
'id': video_id,
|
|
|
|
|
'title': title,
|
|
|
|
|
'age_limit': age_limit,
|
2017-02-05 13:48:13 +00:00
|
|
|
|
'formats': formats,
|
2021-08-24 21:36:15 +00:00
|
|
|
|
'thumbnail': self._proto_relative_url(thumbnail, 'https:'),
|
2021-08-31 19:29:30 +00:00
|
|
|
|
'uploader': uploader,
|
|
|
|
|
'upload_date': upload_date,
|
|
|
|
|
'description': description,
|
2017-02-05 13:48:13 +00:00
|
|
|
|
}
|
2022-05-04 15:49:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IwaraPlaylistIE(IwaraBaseIE):
|
|
|
|
|
_VALID_URL = fr'{IwaraBaseIE._BASE_REGEX}/playlist/(?P<id>[^/?#&]+)'
|
|
|
|
|
IE_NAME = 'iwara:playlist'
|
|
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'https://ecchi.iwara.tv/playlist/best-enf',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'title': 'Best enf',
|
|
|
|
|
'uploader': 'Jared98112',
|
|
|
|
|
'id': 'best-enf',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 1097,
|
|
|
|
|
}, {
|
|
|
|
|
# urlencoded
|
|
|
|
|
'url': 'https://ecchi.iwara.tv/playlist/%E3%83%97%E3%83%AC%E3%82%A4%E3%83%AA%E3%82%B9%E3%83%88-2',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'プレイリスト-2',
|
|
|
|
|
'title': 'プレイリスト',
|
|
|
|
|
'uploader': 'mainyu',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 91,
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
playlist_id, base_url = self._match_valid_url(url).group('id', 'base_url')
|
|
|
|
|
playlist_id = urllib.parse.unquote(playlist_id)
|
|
|
|
|
webpage = self._download_webpage(url, playlist_id)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'_type': 'playlist',
|
|
|
|
|
'id': playlist_id,
|
|
|
|
|
'title': self._html_search_regex(r'class="title"[^>]*>([^<]+)', webpage, 'title', fatal=False),
|
|
|
|
|
'uploader': self._html_search_regex(r'<h2>([^<]+)', webpage, 'uploader', fatal=False),
|
|
|
|
|
'entries': self._extract_playlist(base_url, webpage),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IwaraUserIE(IwaraBaseIE):
|
|
|
|
|
_VALID_URL = fr'{IwaraBaseIE._BASE_REGEX}/users/(?P<id>[^/?#&]+)'
|
|
|
|
|
IE_NAME = 'iwara:user'
|
|
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'https://ecchi.iwara.tv/users/CuteMMD',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'CuteMMD',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 198,
|
|
|
|
|
}, {
|
|
|
|
|
# urlencoded
|
|
|
|
|
'url': 'https://ecchi.iwara.tv/users/%E5%92%95%E5%98%BF%E5%98%BF',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '咕嘿嘿',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 141,
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def _entries(self, playlist_id, base_url, webpage):
|
|
|
|
|
yield from self._extract_playlist(base_url, webpage)
|
|
|
|
|
|
|
|
|
|
page_urls = re.findall(
|
|
|
|
|
r'class="pager-item"[^>]*>\s*<a[^<]+href="([^"]+)', webpage)
|
|
|
|
|
|
|
|
|
|
for n, path in enumerate(page_urls, 2):
|
|
|
|
|
yield from self._extract_playlist(
|
|
|
|
|
base_url, self._download_webpage(
|
|
|
|
|
urljoin(base_url, path), playlist_id, note=f'Downloading playlist page {n}'))
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
playlist_id, base_url = self._match_valid_url(url).group('id', 'base_url')
|
|
|
|
|
playlist_id = urllib.parse.unquote(playlist_id)
|
|
|
|
|
|
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
|
f'{base_url}/users/{playlist_id}/videos', playlist_id)
|
|
|
|
|
|
|
|
|
|
return self.playlist_result(
|
|
|
|
|
self._entries(playlist_id, base_url, webpage), playlist_id)
|