Rapsys Git
/
youtubedl
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Initiate new release.
[youtubedl]
/
youtube_dl
/
extractor
/
hentaistigma.py
diff --git
a/youtube_dl/extractor/hentaistigma.py
b/youtube_dl/extractor/hentaistigma.py
index 63d87b74cc2d5258960fce3b0c6cd5eca48a0b11..86a93de4d62cd906d5efb03faa9e568792d82392 100644
(file)
--- a/
youtube_dl/extractor/hentaistigma.py
+++ b/
youtube_dl/extractor/hentaistigma.py
@@
-1,7
+1,5
@@
from __future__ import unicode_literals
from __future__ import unicode_literals
-import re
-
from .common import InfoExtractor
from .common import InfoExtractor
@@
-13,26
+11,25
@@
class HentaiStigmaIE(InfoExtractor):
'info_dict': {
'id': 'inyouchuu-etsu-bonus',
'ext': 'mp4',
'info_dict': {
'id': 'inyouchuu-etsu-bonus',
'ext': 'mp4',
-
"title": "Inyouchuu Etsu Bonus"
,
-
"age_limit"
: 18,
+
'title': 'Inyouchuu Etsu Bonus'
,
+
'age_limit'
: 18,
}
}
def _real_extract(self, url):
}
}
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
- video_id = mobj.group('id')
+ video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(
- r'<h2
class="posttitle"
><a[^>]*>([^<]+)</a>',
+ r'<h2
[^>]+class="posttitle"[^>]*
><a[^>]*>([^<]+)</a>',
webpage, 'title')
wrap_url = self._html_search_regex(
webpage, 'title')
wrap_url = self._html_search_regex(
- r'<iframe
src="([^"]+mp4)"', webpage, 'wrapper url')
+ r'<iframe
[^>]+
src="([^"]+mp4)"', webpage, 'wrapper url')
wrap_webpage = self._download_webpage(wrap_url, video_id)
video_url = self._html_search_regex(
wrap_webpage = self._download_webpage(wrap_url, video_id)
video_url = self._html_search_regex(
- r'
clip:\s*{\s*url: "([^"]*
)"', wrap_webpage, 'video url')
+ r'
file\s*:\s*"([^"]+
)"', wrap_webpage, 'video url')
return {
'id': video_id,
return {
'id': video_id,