mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[eporner] Simplify and hardcode age limit
This commit is contained in:
parent
c8c34ccb20
commit
37f885650c
@ -35,8 +35,7 @@ def _real_extract(self, url):
|
||||
title = self._html_search_regex(
|
||||
r'<title>(.*?) - EPORNER', webpage, 'title')
|
||||
|
||||
|
||||
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, display_id)
|
||||
redirect_url = 'http://www.eporner.com/config5/%s' % video_id
|
||||
player_code = self._download_webpage(
|
||||
redirect_url, display_id, note='Downloading player config')
|
||||
|
||||
@ -67,5 +66,5 @@ def _real_extract(self, url):
|
||||
'duration': duration,
|
||||
'view_count': view_count,
|
||||
'formats': formats,
|
||||
'age_limit': self._rta_search(webpage),
|
||||
'age_limit': 18,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user