aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/pornotube.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-06 06:06:30 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-06 06:08:56 +0200
commit8dbe9899a985a04690e467510c94c14f3314843b (patch)
tree137d7cff17d806d180f7763cfa369ceab607759c /youtube_dl/extractor/pornotube.py
parentf4aac741d5c98c4350dda478fa4564144d99d13a (diff)
downloadyoutube-dl-8dbe9899a985a04690e467510c94c14f3314843b.tar.xz
Allow users to specify an age limit (fixes #1545)
With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS . Add rudimentary support in youtube, pornotube, and youporn.
Diffstat (limited to 'youtube_dl/extractor/pornotube.py')
-rw-r--r--youtube_dl/extractor/pornotube.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pornotube.py b/youtube_dl/extractor/pornotube.py
index add76a11e..9039dff5a 100644
--- a/youtube_dl/extractor/pornotube.py
+++ b/youtube_dl/extractor/pornotube.py
@@ -38,6 +38,7 @@ class PornotubeIE(InfoExtractor):
VIDEO_UPLOADED_RE = r'<div class="video_added_by">Added (?P<date>[0-9\/]+) by'
upload_date = self._html_search_regex(VIDEO_UPLOADED_RE, webpage, u'upload date', fatal=False)
if upload_date: upload_date = unified_strdate(upload_date)
+ age_limit = self._rta_search(webpage)
info = {'id': video_id,
'url': video_url,
@@ -45,6 +46,7 @@ class PornotubeIE(InfoExtractor):
'upload_date': upload_date,
'title': video_title,
'ext': 'flv',
- 'format': 'flv'}
+ 'format': 'flv',
+ 'age_restriction': age_limit}
return [info]