From b7340781df5fed768535ebc1ba2c8356b2e30917 Mon Sep 17 00:00:00 2001 From: DarkFighterLuke Date: Sat, 26 Feb 2022 14:54:42 +0100 Subject: [PATCH] Scrape creator --- youtube_dl/extractor/xvideos.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/youtube_dl/extractor/xvideos.py b/youtube_dl/extractor/xvideos.py index 5036b3ba9..214cbb97c 100644 --- a/youtube_dl/extractor/xvideos.py +++ b/youtube_dl/extractor/xvideos.py @@ -10,6 +10,7 @@ from ..utils import ( ExtractorError, int_or_none, parse_duration, + urljoin, ) @@ -25,15 +26,16 @@ class XVideosIE(InfoExtractor): (?P[0-9]+) ''' _TESTS = [{ - 'url': 'https://www.xvideos.com/video23686408/le_ragazze_universitarie_provano_cose_nuove', - 'md5': '69638dcd63e14f587fb5b6efc932ccc3', + 'url': 'https://www.xvideos.com/video50011247/when_girls_play_-_adriana_chechik_abella_danger_-_tradimento_-_twistys', + 'md5': 'aa54f96311768b3a8bfe54b8c8fda070', 'info_dict': { - 'id': '23686408', + 'id': '50011247', 'ext': 'mp4', - 'title': 'College Girls try new things', - 'duration': 277, + 'title': 'When Girls Play - (Adriana Chechik, Abella Danger) - Betrayal - Twistys', + 'duration': 720, 'age_limit': 18, - 'tags': ['teen', 'amateur', 'college', 'dorm', '18', 'sorority'], + 'tags': ['lesbian', 'teen', 'hardcore', 'latina', 'rough', 'squirt', 'big-ass', 'cheater', 'twistys', 'cheat', 'ass-play', 'when-girls-play'], + 'creator': 'Twistys', } }, { 'url': 'https://flashservice.xvideos.com/embedframe/4588838', @@ -140,6 +142,8 @@ class XVideosIE(InfoExtractor): tags = self._search_regex(r'(?P.+?)<', webpage, 'creator', group='creator') + return { 'id': video_id, 'formats': formats, @@ -148,4 +152,5 @@ class XVideosIE(InfoExtractor): 'thumbnails': thumbnails, 'age_limit': 18, 'tags': tags, + 'creator': creator, }