aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yt_dlp/extractor/iwara.py23
1 files changed, 21 insertions, 2 deletions
diff --git a/yt_dlp/extractor/iwara.py b/yt_dlp/extractor/iwara.py
index dae3da32c..254d98692 100644
--- a/yt_dlp/extractor/iwara.py
+++ b/yt_dlp/extractor/iwara.py
@@ -1,5 +1,6 @@
# coding: utf-8
from __future__ import unicode_literals
+import re
from .common import InfoExtractor
from ..compat import compat_urllib_parse_urlparse
@@ -8,6 +9,8 @@ from ..utils import (
mimetype2ext,
remove_end,
url_or_none,
+ unified_strdate,
+ strip_or_none,
)
@@ -21,6 +24,10 @@ class IwaraIE(InfoExtractor):
'ext': 'mp4',
'title': '【MMD R-18】ガールフレンド carry_me_off',
'age_limit': 18,
+ 'thumbnail': 'https://i.iwara.tv/sites/default/files/videos/thumbnails/7951/thumbnail-7951_0001.png',
+ 'uploader': 'Reimu丨Action',
+ 'upload_date': '20150828',
+ 'description': 'md5:1d4905ce48c66c9299c617f08e106e0f',
},
}, {
'url': 'http://ecchi.iwara.tv/videos/Vb4yf2yZspkzkBO',
@@ -73,8 +80,17 @@ class IwaraIE(InfoExtractor):
r'<title>([^<]+)</title>', webpage, 'title'), ' | Iwara')
thumbnail = self._html_search_regex(
- r'<video[^>]+id=[\'"]video-player[\'"][^>]+poster=[\'"]([^\'"]+)',
- webpage, 'thumbnail', default=None)
+ 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))
formats = []
for a_format in video_data:
@@ -101,4 +117,7 @@ class IwaraIE(InfoExtractor):
'age_limit': age_limit,
'formats': formats,
'thumbnail': self._proto_relative_url(thumbnail, 'https:'),
+ 'uploader': uploader,
+ 'upload_date': upload_date,
+ 'description': description,
}