Proposal automated exports for xbvr. #355
Tweeticoats
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
Wouldn't it be better to have a stash-box scraper in xbvr that could query files, or is that the purpose of this export? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description:
XBVR is an open source video manager for VR porn see https://github.com/xbapps/xbvr
This has it's own set of scrapers written in go and will automatically run these scrapers and match them to file names.
As these are compiled in to the binary they cannot be easily changed and break form time to time requiring a new release of the program.
XBVR does have a json export / import format for importing bundles of scenes.
As we are adding metadata of all video including many VR studios I would like to start generating these json bundles from stashdb and make them available to xbvr.
There are some studios that no longer exist and some studios occasionally remove scenes so a place to manually create these scenes would be useful.
I have started writing the script as a proof of concept to do this but it needs further testing and work before it is ready for production.
https://github.com/Tweeticoats/stashdb2xbvr
Needed resources:
Example json structure:
{
"timestamp": "2030-01-01T00:00:00.6984107Z",
"bundleVersion": "1",
"scenes": [
{
"_id": "vrhush-xxxxx",
"scene_id": "xxxx",
"scene_type": "VR",
"title": "Title of Scene",
"studio": "VRHush",
"site": "VRHush",
"covers": [
"url"
],
"gallery": [
"url"
],
"tags": ["tag1"],
"cast": [
"performer"
],
"filename": [
"VRHush_xxxxxxx_1k.mp4",
"VRHush_xxxxxxx_2k.mp4",
"VRHush_xxxxxxx_4k.mp4",
"VRHush_xxxxxxx_6k.mp4",
"VRHush_xxxxxxx_8k.mp4"
],
"synopsis": "description",
"duration": 0,
"released": "2021-12-05",
"homepage_url": "url"
}
]
}
Beta Was this translation helpful? Give feedback.
All reactions