mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	extractor: Set age limit on some adult-related extractors.
More age limit of videos for adult-related sites. Note that, for redtube, I explicitly left the variable containing the age limit, since the comment justifying the age limit is a good thing to have. That being said, I included the age limit field on the test, to better reflect what the information extractor does (even if it may not break the automated tests). Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
This commit is contained in:
		@@ -10,7 +10,8 @@ class RedTubeIE(InfoExtractor):
 | 
				
			|||||||
        u'file': u'66418.mp4',
 | 
					        u'file': u'66418.mp4',
 | 
				
			||||||
        u'md5': u'7b8c22b5e7098a3e1c09709df1126d2d',
 | 
					        u'md5': u'7b8c22b5e7098a3e1c09709df1126d2d',
 | 
				
			||||||
        u'info_dict': {
 | 
					        u'info_dict': {
 | 
				
			||||||
            u"title": u"Sucked on a toilet"
 | 
					            u"title": u"Sucked on a toilet",
 | 
				
			||||||
 | 
					            u"age_limit": 18,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,7 +19,8 @@ class XHamsterIE(InfoExtractor):
 | 
				
			|||||||
        u'info_dict': {
 | 
					        u'info_dict': {
 | 
				
			||||||
            u"upload_date": u"20121014", 
 | 
					            u"upload_date": u"20121014", 
 | 
				
			||||||
            u"uploader_id": u"Ruseful2011", 
 | 
					            u"uploader_id": u"Ruseful2011", 
 | 
				
			||||||
            u"title": u"FemaleAgent Shy beauty takes the bait"
 | 
					            u"title": u"FemaleAgent Shy beauty takes the bait",
 | 
				
			||||||
 | 
					            u"age_limit": 18,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -29,7 +30,8 @@ class XHamsterIE(InfoExtractor):
 | 
				
			|||||||
        u'info_dict': {
 | 
					        u'info_dict': {
 | 
				
			||||||
            u"upload_date": u"20130914", 
 | 
					            u"upload_date": u"20130914", 
 | 
				
			||||||
            u"uploader_id": u"jojo747400", 
 | 
					            u"uploader_id": u"jojo747400", 
 | 
				
			||||||
            u"title": u"Britney Spears  Sexy Booty"
 | 
					            u"title": u"Britney Spears  Sexy Booty",
 | 
				
			||||||
 | 
					            u"age_limit": 18,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }]
 | 
					    }]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -80,5 +82,6 @@ class XHamsterIE(InfoExtractor):
 | 
				
			|||||||
            'description': video_description,
 | 
					            'description': video_description,
 | 
				
			||||||
            'upload_date': video_upload_date,
 | 
					            'upload_date': video_upload_date,
 | 
				
			||||||
            'uploader_id': video_uploader_id,
 | 
					            'uploader_id': video_uploader_id,
 | 
				
			||||||
            'thumbnail': video_thumbnail
 | 
					            'thumbnail': video_thumbnail,
 | 
				
			||||||
 | 
					            'age_limit': 18,
 | 
				
			||||||
        }]
 | 
					        }]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user