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,67 @@
name: DartTechStudios
sceneByURL:
- action: scrapeXPath
url:
- darttechstudios.com/Media.php
scraper: sceneScraper
sceneByFragment:
action: scrapeXPath
queryURL: https://www.darttechstudios.com/Media.php?ID={filename}
queryURLReplace:
filename:
# the filename of the file downloaded from the site is the ID with an mp4 extension
- regex: (.*).mp4 # support filenames in the form 12345_performer_other_data.mp4
with: $1
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Title:
selector: &titledateSelector //font[@size="+1"]/b/text()
postProcess:
- replace:
- regex: ([^-]+).*
with: $1
Date:
selector: *titledateSelector
postProcess:
- replace:
- regex: .*([0-9]{2}/[0-9]{2}/[0-9]{4})
with: $1
- parseDate: 01/02/2006
Performers:
Name: //div[@class="item2"]/a[contains(@href, '/Videos.php?Model=')]
Tags:
Name: //div[@class="item2"]/a[contains(@href, '/Videos.php?Fetish=')]
Details:
selector: //div[@class="item2"]/text()
concat: "\n\n"
postProcess:
- replace:
- regex: "\n\n,"
with: ""
Image:
#selector: //div[@class="galleryEntry_UpdatePage"][1]//img/@src
selector: &imgSelector //img[@alt="Main Image"]/@src
postProcess:
- replace:
- regex: (.*)
with: https://www.darttechstudios.com$1
Code:
selector: *imgSelector
postProcess:
- replace:
- regex: &codeRegex /Content/[0-9]{4}_(.*)/Main.jpg
with: $1
URL:
selector: *imgSelector
postProcess:
- replace:
- regex: *codeRegex
with: https://www.darttechstudios.com/Media.php?ID=$1
Studio:
Name:
fixed: Dart_Tech Studios
# Last Updated October 08, 2023

View File

@@ -0,0 +1,9 @@
id: DartTechStudios
name: DartTechStudios
metadata: {}
version: bea3619
date: "2023-10-09 11:57:48"
requires: []
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
files:
- DartTechStudios.yml