This commit is contained in:
Christoph Califice
2025-10-09 20:05:31 -03:00
parent ed22ef22bc
commit 0a5f88d75a
1442 changed files with 101562 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
name: "VirtualTaboo"
sceneByURL:
- action: scrapeXPath
url:
- virtualtaboo.com/videos/
scraper: sceneScraper
movieByURL:
- action: scrapeXPath
url:
- virtualtaboo.com/videos/
scraper: movieScraper
xPathScrapers:
sceneScraper:
common:
$info: &infoSel //div[@class="row video-detail"]
$genInfo: //div[@class="row video-detail"]//div[starts-with(@class,"info")]
scene:
Title: &titleSel $info//h1
Date: &dateAttr
selector: $genInfo/span[@class="bullet"]/following-sibling::text()
postProcess:
- parseDate: 02 January, 2006
Details: &detailsSel $info//*[@class="description"]
Tags:
Name: $info//div[starts-with( @class,"tag-list")]/a/text()
Performers:
Name: $info//div[starts-with(@class,"info")]/a/text()
Image: &imageSel //meta[@property="og:image"]/@content
Studio:
Name:
fixed: "Virtual Taboo"
movieScraper:
common:
$info: *infoSel
$genInfo: //div[@class="row video-detail"]//div[@class="info mt-5"]
movie:
Name:
selector: *titleSel
postProcess:
- replace:
- regex: ^
with: "VirtualTaboo - "
Duration:
selector: $genInfo/br/following-sibling::text()[1]
postProcess:
- replace:
- regex: \shour
with: ":"
- regex: \smin
with: ":00"
Date: *dateAttr
Studio:
Name:
fixed: VirtualTaboo
Synopsis: *detailsSel
FrontImage: *imageSel
# Last Updated August 04, 2023