mirror of
https://github.com/l1ving/youtube-dl
synced 2024-11-20 22:52:55 +08:00
[eporner] +age_limit
This commit is contained in:
parent
e4039057be
commit
563f6dea59
@ -21,6 +21,7 @@ class EpornerIE(InfoExtractor):
|
|||||||
'title': 'Infamous Tiffany Teen Strip Tease Video',
|
'title': 'Infamous Tiffany Teen Strip Tease Video',
|
||||||
'duration': 194,
|
'duration': 194,
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
|
'age_limit': 18,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -35,9 +36,10 @@ class EpornerIE(InfoExtractor):
|
|||||||
r'<script type="text/javascript" src="/config5/%s/([a-f\d]+)/">' % video_id,
|
r'<script type="text/javascript" src="/config5/%s/([a-f\d]+)/">' % video_id,
|
||||||
webpage, 'redirect_code')
|
webpage, 'redirect_code')
|
||||||
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, redirect_code)
|
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, redirect_code)
|
||||||
webpage2 = self._download_webpage(redirect_url, video_id)
|
player_code = self._download_webpage(
|
||||||
|
redirect_url, video_id, note='Downloading player config')
|
||||||
video_url = self._html_search_regex(
|
video_url = self._html_search_regex(
|
||||||
r'file: "(.*?)",', webpage2, 'video_url')
|
r'file: "(.*?)",', player_code, 'video_url')
|
||||||
|
|
||||||
duration = parse_duration(self._search_regex(
|
duration = parse_duration(self._search_regex(
|
||||||
r'class="mbtim">([0-9:]+)</div>', webpage, 'duration',
|
r'class="mbtim">([0-9:]+)</div>', webpage, 'duration',
|
||||||
@ -52,4 +54,5 @@ class EpornerIE(InfoExtractor):
|
|||||||
'title': title,
|
'title': title,
|
||||||
'duration': duration,
|
'duration': duration,
|
||||||
'view_count': view_count,
|
'view_count': view_count,
|
||||||
|
'age_limit': self._rta_search(webpage),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user