Skip to content

Commit

Permalink
[extractors] Add missing age limits
Browse files Browse the repository at this point in the history
  • Loading branch information
iwconfig authored and dstftw committed Jan 1, 2019
1 parent d9f1123 commit 9b5c875
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions youtube_dl/extractor/cammodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class CamModelsIE(InfoExtractor):
_TESTS = [{
'url': 'https://www.cammodels.com/cam/AutumnKnight/',
'only_matching': True,
'age_limit': 18
}]

def _real_extract(self, url):
Expand Down Expand Up @@ -93,4 +94,5 @@ def _real_extract(self, url):
'title': self._live_title(user_id),
'is_live': True,
'formats': formats,
'age_limit': 18
}
2 changes: 2 additions & 0 deletions youtube_dl/extractor/camtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class CamTubeIE(InfoExtractor):
'duration': 1274,
'timestamp': 1528018608,
'upload_date': '20180603',
'age_limit': 18
},
'params': {
'skip_download': True,
Expand Down Expand Up @@ -66,4 +67,5 @@ def _real_extract(self, url):
'like_count': like_count,
'creator': creator,
'formats': formats,
'age_limit': 18
}
2 changes: 2 additions & 0 deletions youtube_dl/extractor/camwithher.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class CamWithHerIE(InfoExtractor):
'comment_count': int,
'uploader': 'MileenaK',
'upload_date': '20160322',
'age_limit': 18,
},
'params': {
'skip_download': True,
Expand Down Expand Up @@ -84,4 +85,5 @@ def _real_extract(self, url):
'comment_count': comment_count,
'uploader': uploader,
'upload_date': upload_date,
'age_limit': 18
}
2 changes: 2 additions & 0 deletions youtube_dl/extractor/yourporn.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class YourPornIE(InfoExtractor):
'ext': 'mp4',
'title': 'md5:c9f43630bd968267672651ba905a7d35',
'thumbnail': r're:^https?://.*\.jpg$',
'age_limit': 18
},
}

Expand All @@ -38,4 +39,5 @@ def _real_extract(self, url):
'url': video_url,
'title': title,
'thumbnail': thumbnail,
'age_limit': 18
}

0 comments on commit 9b5c875

Please sign in to comment.