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,33 @@
name: "StasyQVR"
sceneByURL:
- action: scrapeXPath
url:
- stasyqvr.com/virtualreality
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Title: //div[@class='video-title']/h1/text()
Details: //div[@class='video-info']/p/text()
Date:
selector: //div[@class='video-meta-date']/text()
postProcess:
- parseDate: Jan 2, 2006
Code:
selector: //script[contains(.,'vrPlayerSettings')]/text()
postProcess:
- replace:
- regex: '[\s\S]*videoId: (\d+),[\s\S]*'
with: $1
Studio:
Name:
fixed: StasyQVR
Performers:
Name: //div[@class='video-info']//a/h2/text()
Image:
selector: //div[@id='webvr']/div[contains(@style,'background-image:')]/@style
postProcess:
- replace:
- regex: '^background-image: url\(|\);$'
with: ""
# Last Updated October 20, 2023