mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-22 02:15:12 +00:00
[redtube] add age_limit
This commit is contained in:
parent
b24f347190
commit
1310bf2474
1 changed files with 9 additions and 4 deletions
|
@ -30,9 +30,14 @@ def _real_extract(self, url):
|
||||||
r'<h1 class="videoTitle slidePanelMovable">(.+?)</h1>',
|
r'<h1 class="videoTitle slidePanelMovable">(.+?)</h1>',
|
||||||
webpage, u'title')
|
webpage, u'title')
|
||||||
|
|
||||||
|
# No self-labeling, but they describe themselves as
|
||||||
|
# "Home of Videos Porno"
|
||||||
|
age_limit = 18
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'ext': video_extension,
|
'ext': video_extension,
|
||||||
'title': video_title,
|
'title': video_title,
|
||||||
|
'age_limit': age_limit,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue