Compare commits
77 Commits
a87fc4da3d
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 243f107ef5 | |||
| 9ad4e7972b | |||
| 6eec0890a7 | |||
| 8654d160b6 | |||
| 4452508dd4 | |||
| 1697523000 | |||
| eee4e6523e | |||
| 150992aaac | |||
| 80ddafc4e6 | |||
| 72a995f483 | |||
| 1de8749195 | |||
| ad8ca7b997 | |||
| bdca42e821 | |||
| 4bce4388f9 | |||
| e670975ee9 | |||
| b56d7e69dd | |||
| d362f9e0ca | |||
| 28aa838937 | |||
| 4ccfd9ef3a | |||
| 39ea45fade | |||
| eff12f546e | |||
| 37aba1b7d5 | |||
| f0cfc20db9 | |||
| d74ad1b034 | |||
| 5d1cbf8c09 | |||
| 5d0ccc81b6 | |||
| 83588c69f5 | |||
| 20262bc60a | |||
| 78584ce1b6 | |||
| e5a65114d1 | |||
| b64d5aa6ed | |||
| 3b9ebd0325 | |||
| 8532a33988 | |||
| f63395fca3 | |||
| c7279b4e8b | |||
| d68c44de99 | |||
| f8adaf050e | |||
| b153826a0d | |||
| 0521b28626 | |||
| 9e056b752d | |||
| 62e22e4965 | |||
| 153e50a356 | |||
| d4028e8f7f | |||
| 3d239d039b | |||
| 6aa51c14a2 | |||
| 37baaf72ab | |||
| 38fcfa4e98 | |||
| fcd1df0102 | |||
| b25f6990d9 | |||
| fa494f9b14 | |||
| 39b2e792e7 | |||
| 9ccde2bc74 | |||
| 6031141113 | |||
| 55f83bfbaa | |||
| 1c03b862fc | |||
| 1cf23caac6 | |||
| b04fc14a6f | |||
| 821a4d126a | |||
| 4d6d8c6750 | |||
| d81bb5e929 | |||
| 3a66ecc808 | |||
| 888b27e275 | |||
| 00d08a41e9 | |||
| 9343e389fb | |||
| 0415eb9df0 | |||
| da12056d5a | |||
| 5278bbe2c7 | |||
| d1dc0090cd | |||
| 5b03bb74b7 | |||
| 23063988b1 | |||
| 6b8c840cbd | |||
| 49d3805ba7 | |||
| fc76765594 | |||
| e40272313b | |||
| 47b1223479 | |||
| ee91c41a3d | |||
| c523e32219 |
18
.clinerules/generators.md
Normal file
18
.clinerules/generators.md
Normal file
@ -0,0 +1,18 @@
|
||||
#Image and Video generation
|
||||
|
||||
## Simple image generation with prompt
|
||||
Use this file src\lib\image-generator.ts
|
||||
|
||||
## Image generation with existing image
|
||||
Use this file src\lib\image-generator-face.ts
|
||||
|
||||
## Image converting
|
||||
Use this file src\lib\image-converter.ts
|
||||
|
||||
## Video generation with static image
|
||||
Use this ilfe src\lib\video-generator.ts
|
||||
|
||||
Everything when generator need to use existing image you have to copy to input folder to the server and use only filename.
|
||||
For example if
|
||||
inputfolderFullpath = SERVER1_COMFY_OUTPUT_DIR.replece("output","input");
|
||||
Then copy image to the path, and pass only filename to generator function
|
||||
10
.clinerules/lib.md
Normal file
10
.clinerules/lib.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Library Functions
|
||||
|
||||
## PNG Metadata
|
||||
Use this file `src/lib/util.ts` for embedding and reading JSON data from PNG files.
|
||||
|
||||
### Embed JSON to PNG
|
||||
Use this method `embedJsonToPng(path, obj)`
|
||||
|
||||
### Read JSON from PNG
|
||||
Use this method `readJsonToPng(path)`
|
||||
26
.clinerules/llm.md
Normal file
26
.clinerules/llm.md
Normal file
@ -0,0 +1,26 @@
|
||||
# LLM API
|
||||
|
||||
## LMstudio
|
||||
Use this file src\lib\lmstudio.ts
|
||||
|
||||
- async function callLmstudio(prompt: string): Promise<any> {
|
||||
for just run prompt
|
||||
- async function callLMStudioAPIWithFile(imagePath: string, prompt: string): Promise<any> {
|
||||
for send file to llm
|
||||
|
||||
## OpenAI
|
||||
Use this file src\lib\openai.ts
|
||||
|
||||
- async function callOpenAI(prompt: string): Promise<any>
|
||||
for just run prompt
|
||||
- async function callOpenAIWithFile(imagePath: string, prompt: string): Promise<any>
|
||||
for send file to llm
|
||||
|
||||
|
||||
Please construct prompt to return json alswasy for calling llm api to generate text.
|
||||
If nothing specified add following instructin in the given prompt
|
||||
|
||||
Return the result in this forket
|
||||
{"result":""}
|
||||
|
||||
Then extract the result param in program you generate, don't change the original function
|
||||
9
.clinerules/pinterest.md
Normal file
9
.clinerules/pinterest.md
Normal file
@ -0,0 +1,9 @@
|
||||
# Pinterest operations
|
||||
Use this file src\lib\pinterest.ts for pinterest operation.
|
||||
You can modify if needed.
|
||||
|
||||
# Get PinId from Keyword
|
||||
Use this method getPinUrlFromPinterest
|
||||
|
||||
# Get image from pinId
|
||||
Use this method downloadImageFromPin
|
||||
53
.clinerules/prompt-generation.md
Normal file
53
.clinerules/prompt-generation.md
Normal file
@ -0,0 +1,53 @@
|
||||
# Main task
|
||||
Generate prompt and base idea for image and video genration
|
||||
|
||||
## Process
|
||||
- Read source file from here : src\data\genres.json
|
||||
- Generate json based on genre and subgenre.
|
||||
|
||||
Sample output
|
||||
{
|
||||
"nature": [
|
||||
{
|
||||
"subGenre": "Caves",
|
||||
"scene": "Stalactite cathedral with shafts of light",
|
||||
"sceneVariants": [
|
||||
"Stalactite cathedral with shafts of light",
|
||||
"High vaulted chamber dripping mineral curtains",
|
||||
"Sunbeams piercing a ceiling skylight",
|
||||
"Massive columns connecting floor and roof",
|
||||
"A still pool reflecting the vaulted ceiling"
|
||||
],
|
||||
"actions": [
|
||||
"Dust motes drifting through light shafts",
|
||||
"Water droplets falling and rippling small pools",
|
||||
"A guide pointing a beam across the chamber",
|
||||
"Echoing footsteps of slow visitors"
|
||||
],
|
||||
"camera": "Wide low-angle dolly to capture vertical scale with periodic push-ins on formations",
|
||||
"accents": [
|
||||
"golden rim-light in shafts and mirrored pool reflections",
|
||||
"high micro-detail on speleothem textures"
|
||||
],
|
||||
"mood": "reverent awe",
|
||||
"lighting": "selective shafts of warm sunlight in a cool dark interior",
|
||||
"style": "epic subterranean cinematography"
|
||||
},...
|
||||
]
|
||||
}
|
||||
|
||||
- Create file under src/data as ${genre}_${subgenre}.json
|
||||
- Generate 20 entries for each subgenre
|
||||
- Half of entry is in dark ( night if it is real world), half of entry is in light atmosphare.
|
||||
|
||||
## Rules
|
||||
- Don't try to get it done via making script, generate json files.
|
||||
- Be creative and generate 5 scenes based on subGenre
|
||||
- Be creative and generate 4 actions based on scene
|
||||
- Be creative and generate beset camera action for the scene
|
||||
- Accents: should be something impressive to implrove luminence, enhance atmosphare.
|
||||
- Generate 2 accents for each entry
|
||||
- Same for mood, lighting and style.
|
||||
- Your task is generate json files which will use for prompts.
|
||||
- Focus on generating json, don't try to get it done programatically.
|
||||
- No need to evaluate json.
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,3 +22,4 @@ yarn-error.log*
|
||||
/download/
|
||||
/generated/
|
||||
.env
|
||||
input/
|
||||
18
memory-bank/memories.json
Normal file
18
memory-bank/memories.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 1,
|
||||
"createdAt": "2025-08-18T08:51:00.000Z",
|
||||
"entries": [
|
||||
{
|
||||
"id": "init-1692342660000",
|
||||
"type": "system",
|
||||
"content": {
|
||||
"message": "memory bank initialized"
|
||||
},
|
||||
"tags": [
|
||||
"init"
|
||||
],
|
||||
"createdAt": "2025-08-18T08:51:00.000Z",
|
||||
"meta": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
633
package-lock.json
generated
633
package-lock.json
generated
@ -10,14 +10,27 @@
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@types/axios": "^0.14.4",
|
||||
"@types/fs-extra": "^11.0.4",
|
||||
"@types/pngjs": "^6.0.5",
|
||||
"@types/sharp": "^0.32.0",
|
||||
"axios": "^1.11.0",
|
||||
"dotenv": "^17.2.1",
|
||||
"fs-extra": "^11.3.2",
|
||||
"mysql2": "^3.14.3",
|
||||
"open": "^10.2.0",
|
||||
"puppeteer": "^24.16.2"
|
||||
"png-chunk-text": "^1.0.0",
|
||||
"png-chunks-encode": "^1.0.0",
|
||||
"png-chunks-extract": "^1.0.0",
|
||||
"pngjs": "^7.0.0",
|
||||
"puppeteer": "^24.16.2",
|
||||
"sharp": "^0.34.4",
|
||||
"uuid": "^11.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.0.0",
|
||||
"@types/node": "^20.19.19",
|
||||
"@types/png-chunk-text": "^1.0.3",
|
||||
"@types/png-chunks-encode": "^1.0.2",
|
||||
"@types/png-chunks-extract": "^1.0.2",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.0.0"
|
||||
}
|
||||
@ -55,6 +68,419 @@
|
||||
"node": ">=12"
|
||||
}
|
||||
},
|
||||
"node_modules/@emnapi/runtime": {
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.5.0.tgz",
|
||||
"integrity": "sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==",
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
"tslib": "^2.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/colour": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
|
||||
"integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-darwin-arm64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.4.tgz",
|
||||
"integrity": "sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-darwin-arm64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-darwin-x64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.4.tgz",
|
||||
"integrity": "sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-darwin-x64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.3.tgz",
|
||||
"integrity": "sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-darwin-x64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.3.tgz",
|
||||
"integrity": "sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linux-arm": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.3.tgz",
|
||||
"integrity": "sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linux-arm64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.3.tgz",
|
||||
"integrity": "sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.3.tgz",
|
||||
"integrity": "sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linux-s390x": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.3.tgz",
|
||||
"integrity": "sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==",
|
||||
"cpu": [
|
||||
"s390x"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linux-x64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.3.tgz",
|
||||
"integrity": "sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.3.tgz",
|
||||
"integrity": "sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.3.tgz",
|
||||
"integrity": "sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linux-arm": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.4.tgz",
|
||||
"integrity": "sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linux-arm": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linux-arm64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.4.tgz",
|
||||
"integrity": "sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linux-arm64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linux-ppc64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.4.tgz",
|
||||
"integrity": "sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linux-ppc64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linux-s390x": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.4.tgz",
|
||||
"integrity": "sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==",
|
||||
"cpu": [
|
||||
"s390x"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linux-s390x": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linux-x64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.4.tgz",
|
||||
"integrity": "sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linux-x64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linuxmusl-arm64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.4.tgz",
|
||||
"integrity": "sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linuxmusl-arm64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-linuxmusl-x64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.4.tgz",
|
||||
"integrity": "sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-libvips-linuxmusl-x64": "1.2.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-wasm32": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.4.tgz",
|
||||
"integrity": "sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==",
|
||||
"cpu": [
|
||||
"wasm32"
|
||||
],
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
"@emnapi/runtime": "^1.5.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-win32-arm64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.4.tgz",
|
||||
"integrity": "sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-win32-ia32": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.4.tgz",
|
||||
"integrity": "sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@img/sharp-win32-x64": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.4.tgz",
|
||||
"integrity": "sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
}
|
||||
},
|
||||
"node_modules/@jridgewell/resolve-uri": {
|
||||
"version": "3.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
||||
@ -138,15 +564,66 @@
|
||||
"axios": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/fs-extra": {
|
||||
"version": "11.0.4",
|
||||
"resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-11.0.4.tgz",
|
||||
"integrity": "sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==",
|
||||
"dependencies": {
|
||||
"@types/jsonfile": "*",
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/jsonfile": {
|
||||
"version": "6.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@types/jsonfile/-/jsonfile-6.1.4.tgz",
|
||||
"integrity": "sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==",
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "20.19.11",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.11.tgz",
|
||||
"integrity": "sha512-uug3FEEGv0r+jrecvUUpbY8lLisvIjg6AAic6a2bSP5OEOLeJsDSnvhCDov7ipFFMXS3orMpzlmi0ZcuGkBbow==",
|
||||
"devOptional": true,
|
||||
"version": "20.19.19",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.19.tgz",
|
||||
"integrity": "sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==",
|
||||
"dependencies": {
|
||||
"undici-types": "~6.21.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/png-chunk-text": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/png-chunk-text/-/png-chunk-text-1.0.3.tgz",
|
||||
"integrity": "sha512-7keEFz73uNJ9Ar1XMCNnHEXT9pICJnouMQCCYgBEmHMgdkXaQzSTmSvr6tUDSqgdEgmlRAxZd97wprgliyZoCg==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@types/png-chunks-encode": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/png-chunks-encode/-/png-chunks-encode-1.0.2.tgz",
|
||||
"integrity": "sha512-Dxn0aXEcSg1wVeHjvNlygm/+fKBDzWMCdxJYhjGUTeefFW/jYxWcrg+W7ppLBfH44iJMqeVBHtHBwtYQUeYvgw==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@types/png-chunks-extract": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/png-chunks-extract/-/png-chunks-extract-1.0.2.tgz",
|
||||
"integrity": "sha512-z6djfFIbrrddtunoMJBOPlyZrnmeuG1kkvHUNi2QfpOb+JMMLuLliHHTmMyRi7k7LiTAut0HbdGCF6ibDtQAHQ==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@types/pngjs": {
|
||||
"version": "6.0.5",
|
||||
"resolved": "https://registry.npmjs.org/@types/pngjs/-/pngjs-6.0.5.tgz",
|
||||
"integrity": "sha512-0k5eKfrA83JOZPppLtS2C7OUtyNAl2wKNxfyYl9Q5g9lPkgBl/9hNyAu6HuEH2J4XmIv2znEpkDd0SaZVxW6iQ==",
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/sharp": {
|
||||
"version": "0.32.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.32.0.tgz",
|
||||
"integrity": "sha512-OOi3kL+FZDnPhVzsfD37J88FNeZh6gQsGcLc95NbeURRGvmSjeXiDcyWzF2o3yh/gQAUn2uhh/e+CPCa5nwAxw==",
|
||||
"deprecated": "This is a stub types definition. sharp provides its own type definitions, so you do not need this installed.",
|
||||
"dependencies": {
|
||||
"sharp": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/yauzl": {
|
||||
"version": "2.10.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
|
||||
@ -454,6 +931,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/crc-32": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/crc-32/-/crc-32-0.3.0.tgz",
|
||||
"integrity": "sha512-kucVIjOmMc1f0tv53BJ/5WIX+MGLcKuoBhnGqQrgKJNqLByb/sVMWfW/Aw6hw0jgcqjJ2pi9E5y32zOIpaUlsA==",
|
||||
"engines": {
|
||||
"node": ">=0.8"
|
||||
}
|
||||
},
|
||||
"node_modules/create-require": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
||||
@ -550,6 +1035,14 @@
|
||||
"node": ">=0.10"
|
||||
}
|
||||
},
|
||||
"node_modules/detect-libc": {
|
||||
"version": "2.1.1",
|
||||
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.1.tgz",
|
||||
"integrity": "sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==",
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/devtools-protocol": {
|
||||
"version": "0.0.1475386",
|
||||
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1475386.tgz",
|
||||
@ -780,6 +1273,19 @@
|
||||
"node": ">= 6"
|
||||
}
|
||||
},
|
||||
"node_modules/fs-extra": {
|
||||
"version": "11.3.2",
|
||||
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.2.tgz",
|
||||
"integrity": "sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==",
|
||||
"dependencies": {
|
||||
"graceful-fs": "^4.2.0",
|
||||
"jsonfile": "^6.0.1",
|
||||
"universalify": "^2.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.14"
|
||||
}
|
||||
},
|
||||
"node_modules/function-bind": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
||||
@ -877,6 +1383,11 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/graceful-fs": {
|
||||
"version": "4.2.11",
|
||||
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
||||
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
|
||||
},
|
||||
"node_modules/has-symbols": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
||||
@ -1055,6 +1566,17 @@
|
||||
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
|
||||
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
|
||||
},
|
||||
"node_modules/jsonfile": {
|
||||
"version": "6.2.0",
|
||||
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
|
||||
"integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
|
||||
"dependencies": {
|
||||
"universalify": "^2.0.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"graceful-fs": "^4.1.6"
|
||||
}
|
||||
},
|
||||
"node_modules/lines-and-columns": {
|
||||
"version": "1.2.4",
|
||||
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
||||
@ -1261,6 +1783,36 @@
|
||||
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
||||
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
|
||||
},
|
||||
"node_modules/png-chunk-text": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/png-chunk-text/-/png-chunk-text-1.0.0.tgz",
|
||||
"integrity": "sha512-DEROKU3SkkLGWNMzru3xPVgxyd48UGuMSZvioErCure6yhOc/pRH2ZV+SEn7nmaf7WNf3NdIpH+UTrRdKyq9Lw=="
|
||||
},
|
||||
"node_modules/png-chunks-encode": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/png-chunks-encode/-/png-chunks-encode-1.0.0.tgz",
|
||||
"integrity": "sha512-J1jcHgbQRsIIgx5wxW9UmCymV3wwn4qCCJl6KYgEU/yHCh/L2Mwq/nMOkRPtmV79TLxRZj5w3tH69pvygFkDqA==",
|
||||
"dependencies": {
|
||||
"crc-32": "^0.3.0",
|
||||
"sliced": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"node_modules/png-chunks-extract": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/png-chunks-extract/-/png-chunks-extract-1.0.0.tgz",
|
||||
"integrity": "sha512-ZiVwF5EJ0DNZyzAqld8BP1qyJBaGOFaq9zl579qfbkcmOwWLLO4I9L8i2O4j3HkI6/35i0nKG2n+dZplxiT89Q==",
|
||||
"dependencies": {
|
||||
"crc-32": "^0.3.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pngjs": {
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pngjs/-/pngjs-7.0.0.tgz",
|
||||
"integrity": "sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==",
|
||||
"engines": {
|
||||
"node": ">=14.19.0"
|
||||
}
|
||||
},
|
||||
"node_modules/progress": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
|
||||
@ -1385,6 +1937,52 @@
|
||||
"resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz",
|
||||
"integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q=="
|
||||
},
|
||||
"node_modules/sharp": {
|
||||
"version": "0.34.4",
|
||||
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.4.tgz",
|
||||
"integrity": "sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"@img/colour": "^1.0.0",
|
||||
"detect-libc": "^2.1.0",
|
||||
"semver": "^7.7.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://opencollective.com/libvips"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@img/sharp-darwin-arm64": "0.34.4",
|
||||
"@img/sharp-darwin-x64": "0.34.4",
|
||||
"@img/sharp-libvips-darwin-arm64": "1.2.3",
|
||||
"@img/sharp-libvips-darwin-x64": "1.2.3",
|
||||
"@img/sharp-libvips-linux-arm": "1.2.3",
|
||||
"@img/sharp-libvips-linux-arm64": "1.2.3",
|
||||
"@img/sharp-libvips-linux-ppc64": "1.2.3",
|
||||
"@img/sharp-libvips-linux-s390x": "1.2.3",
|
||||
"@img/sharp-libvips-linux-x64": "1.2.3",
|
||||
"@img/sharp-libvips-linuxmusl-arm64": "1.2.3",
|
||||
"@img/sharp-libvips-linuxmusl-x64": "1.2.3",
|
||||
"@img/sharp-linux-arm": "0.34.4",
|
||||
"@img/sharp-linux-arm64": "0.34.4",
|
||||
"@img/sharp-linux-ppc64": "0.34.4",
|
||||
"@img/sharp-linux-s390x": "0.34.4",
|
||||
"@img/sharp-linux-x64": "0.34.4",
|
||||
"@img/sharp-linuxmusl-arm64": "0.34.4",
|
||||
"@img/sharp-linuxmusl-x64": "0.34.4",
|
||||
"@img/sharp-wasm32": "0.34.4",
|
||||
"@img/sharp-win32-arm64": "0.34.4",
|
||||
"@img/sharp-win32-ia32": "0.34.4",
|
||||
"@img/sharp-win32-x64": "0.34.4"
|
||||
}
|
||||
},
|
||||
"node_modules/sliced": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz",
|
||||
"integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA=="
|
||||
},
|
||||
"node_modules/smart-buffer": {
|
||||
"version": "4.2.0",
|
||||
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
|
||||
@ -1573,8 +2171,27 @@
|
||||
"node_modules/undici-types": {
|
||||
"version": "6.21.0",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
||||
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
||||
"devOptional": true
|
||||
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="
|
||||
},
|
||||
"node_modules/universalify": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
||||
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
||||
"engines": {
|
||||
"node": ">= 10.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/uuid": {
|
||||
"version": "11.1.0",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
|
||||
"integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
|
||||
"funding": [
|
||||
"https://github.com/sponsors/broofa",
|
||||
"https://github.com/sponsors/ctavan"
|
||||
],
|
||||
"bin": {
|
||||
"uuid": "dist/esm/bin/uuid"
|
||||
}
|
||||
},
|
||||
"node_modules/v8-compile-cache-lib": {
|
||||
"version": "3.0.1",
|
||||
|
||||
26
package.json
26
package.json
@ -6,24 +6,40 @@
|
||||
"scripts": {
|
||||
"start": "tsc && node dist/index.js",
|
||||
"build": "tsc",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"db:schema": "ts-node src/schema.ts",
|
||||
"db:test": "ts-node src/testmysql.ts"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"db:schema": "ts-node src/schema.ts",
|
||||
"db:test": "ts-node src/testmysql.ts",
|
||||
"infinity:start": "ts-node src/infinityvideo_generator/start.ts",
|
||||
"convert:pinterest-face": "ts-node src/imageconverter/pinterest_face_portrait.ts",
|
||||
"tool:generate-video-from-input": "ts-node src/tools/generateVideoFromInput.ts"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.0.0",
|
||||
"@types/node": "^20.19.19",
|
||||
"@types/png-chunk-text": "^1.0.3",
|
||||
"@types/png-chunks-encode": "^1.0.2",
|
||||
"@types/png-chunks-extract": "^1.0.2",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/axios": "^0.14.4",
|
||||
"@types/fs-extra": "^11.0.4",
|
||||
"@types/pngjs": "^6.0.5",
|
||||
"@types/sharp": "^0.32.0",
|
||||
"axios": "^1.11.0",
|
||||
"dotenv": "^17.2.1",
|
||||
"fs-extra": "^11.3.2",
|
||||
"mysql2": "^3.14.3",
|
||||
"open": "^10.2.0",
|
||||
"puppeteer": "^24.16.2"
|
||||
"png-chunk-text": "^1.0.0",
|
||||
"png-chunks-encode": "^1.0.0",
|
||||
"png-chunks-extract": "^1.0.0",
|
||||
"pngjs": "^7.0.0",
|
||||
"puppeteer": "^24.16.2",
|
||||
"sharp": "^0.34.4",
|
||||
"uuid": "^11.1.0"
|
||||
}
|
||||
}
|
||||
|
||||
468
src/combined_pinterest_pipeline.ts
Normal file
468
src/combined_pinterest_pipeline.ts
Normal file
@ -0,0 +1,468 @@
|
||||
import { callOpenAI, callOpenAIWithFile } from './lib/openai';
|
||||
import { generateVideo } from './lib/video-generator';
|
||||
import { generateImage as generateImageMixStyle } from './lib/image-generator-mix-style';
|
||||
import { generateImage as generateImage } from './lib/image-generator';
|
||||
import { logger } from './lib/logger';
|
||||
import * as fs from 'fs/promises';
|
||||
import dotenv from 'dotenv';
|
||||
import path from 'path';
|
||||
import puppeteer from 'puppeteer';
|
||||
import { VideoModel } from './lib/db/video';
|
||||
|
||||
dotenv.config();
|
||||
|
||||
const RUN_ONCE = (process.env.RUN_ONCE || 'false').toLowerCase() === 'true';
|
||||
const NUMBER_OF_KEYWORDS = Number(process.env.NUMBER_OF_KEYWORDS) || 20;
|
||||
const SCROLL_SEARCH = Number(process.env.SCROLL_SEARCH) || 5; // scroll times on search results
|
||||
const SCROLL_PIN = Number(process.env.SCROLL_PIN) || 3; // scroll times on pin page
|
||||
|
||||
const USE_REFERENCE_IMAGE = (process.env.USE_REFERENCE_IMAGE || 'true').toLowerCase() === 'true';
|
||||
|
||||
// Hard-coded user prompt (used as the video generation instruction).
|
||||
// You can change this string here or set a different value if you edit the file.
|
||||
const HARDCODED_USER_PROMPT = process.env.HARDCODED_USER_PROMPT || "Generate 20 dance keywords more something like street dance. So I can search pinterest.";
|
||||
|
||||
const servers = [
|
||||
/*{
|
||||
baseUrl: process.env.SERVER1_COMFY_BASE_URL,
|
||||
outputDir: process.env.SERVER1_COMFY_OUTPUT_DIR,
|
||||
},*/
|
||||
{
|
||||
baseUrl: process.env.SERVER2_COMFY_BASE_URL,
|
||||
outputDir: process.env.SERVER2_COMFY_OUTPUT_DIR,
|
||||
},
|
||||
].filter((s): s is { baseUrl: string; outputDir: string } => !!s.baseUrl && !!s.outputDir);
|
||||
|
||||
interface PipelineItem {
|
||||
keyword: string;
|
||||
pinUrl: string;
|
||||
imagePrompt: string;
|
||||
videoPrompt: string;
|
||||
baseImagePath: string; // downloaded from pin
|
||||
generatedImagePath?: string; // generated on server
|
||||
}
|
||||
|
||||
// Re-usable helper to extract JSON embedded in text
|
||||
function extractJsonFromText(text: string): any | null {
|
||||
if (!text || typeof text !== 'string') return null;
|
||||
const fenced = text.match(/```(?:json)?\s*([\s\S]*?)\s*```/i);
|
||||
if (fenced && fenced[1]) {
|
||||
try { return JSON.parse(fenced[1].trim()); } catch (e) { /* fall through */ }
|
||||
}
|
||||
const brace = text.match(/\{[\s\S]*\}|\[[\s\S]*\]/);
|
||||
if (brace && brace[0]) {
|
||||
try { return JSON.parse(brace[0]); } catch (e) { return null; }
|
||||
}
|
||||
// Attempt line-separated keywords fallback
|
||||
const lines = text.split(/\r?\n/).map(l => l.trim()).filter(Boolean);
|
||||
if (lines.length > 1) return lines;
|
||||
return null;
|
||||
}
|
||||
|
||||
// Wrapper to call OpenAI with an image and prompt and extract JSON-like result
|
||||
async function callOpenAIWithFileAndExtract(imagePath: string, prompt: string, maxRetries = 5): Promise<any | null> {
|
||||
for (let attempt = 1; attempt <= maxRetries; attempt++) {
|
||||
try {
|
||||
const res = await callOpenAIWithFile(imagePath, prompt);
|
||||
if (!res) {
|
||||
logger.warn(`callOpenAIWithFileAndExtract attempt ${attempt} returned empty response`);
|
||||
continue;
|
||||
}
|
||||
if (typeof res === 'object') return res;
|
||||
if (typeof res === 'string') {
|
||||
const parsed = extractJsonFromText(res);
|
||||
if (parsed) return parsed;
|
||||
}
|
||||
logger.warn(`callOpenAIWithFileAndExtract: attempt ${attempt} unexpected shape`);
|
||||
} catch (err) {
|
||||
logger.warn(`callOpenAIWithFileAndExtract: attempt ${attempt} failed: ${err}`);
|
||||
}
|
||||
}
|
||||
logger.error(`callOpenAIWithFileAndExtract: failed after ${maxRetries} attempts`);
|
||||
return null;
|
||||
}
|
||||
|
||||
// Ask ChatGPT to produce keywords from a single high-level prompt
|
||||
async function generateKeywordsFromPrompt(prompt: string, count = NUMBER_OF_KEYWORDS): Promise<string[]> {
|
||||
const instruction = `You are given a short instruction describing the type of short 8-second cinematic videos to create.
|
||||
Return exactly a JSON array of ${count} short keyword phrases (each 1-3 words) suitable for searching Pinterest. Example output: ["sunset beach","city skyline",...]. Do not include commentary.`;
|
||||
const res = await callOpenAI(`${instruction}\n\nInstruction: ${prompt}`);
|
||||
const parsed = extractJsonFromText(typeof res === 'string' ? res : (res && (res.text || JSON.stringify(res))));
|
||||
if (Array.isArray(parsed)) {
|
||||
return parsed.map(String).slice(0, count);
|
||||
}
|
||||
// fallback: try to parse common fields
|
||||
if (res && typeof res === 'object') {
|
||||
const maybe = res.keywords || res.list || res.items || res.keywords_list;
|
||||
if (Array.isArray(maybe)) return maybe.map(String).slice(0, count);
|
||||
}
|
||||
// last fallback: split lines
|
||||
const text = typeof res === 'string' ? res : JSON.stringify(res);
|
||||
const lines = text.split(/\r?\n/).map(l => l.trim()).filter(Boolean);
|
||||
if (lines.length >= 1) {
|
||||
// extract up to count tokens (remove numbering)
|
||||
const cleaned = lines.map(l => l.replace(/^\d+[\).\s-]*/, '').trim()).filter(Boolean);
|
||||
return cleaned.slice(0, count);
|
||||
}
|
||||
return [];
|
||||
}
|
||||
|
||||
async function getPinUrlFromPinterest(keyword: string, scrollCount = SCROLL_SEARCH): Promise<string | null> {
|
||||
const browser = await puppeteer.launch({ headless: true });
|
||||
const page = await browser.newPage();
|
||||
await page.setUserAgent('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36');
|
||||
await page.setViewport({ width: 1920, height: 1080 });
|
||||
try {
|
||||
const searchUrl = `https://www.pinterest.com/search/pins/?q=${encodeURIComponent(keyword)}`;
|
||||
await page.goto(searchUrl, { waitUntil: 'networkidle2' });
|
||||
for (let i = 0; i < scrollCount; i++) {
|
||||
await page.evaluate('window.scrollTo(0, document.body.scrollHeight)');
|
||||
await new Promise(r => setTimeout(r, 500 + Math.random() * 1000));
|
||||
}
|
||||
const pinLinks = await page.$$eval('a', (anchors) =>
|
||||
anchors.map((a) => a.href).filter((href) => href.includes('/pin/'))
|
||||
);
|
||||
if (pinLinks.length > 0) return pinLinks[Math.floor(Math.random() * pinLinks.length)];
|
||||
return null;
|
||||
} catch (error) {
|
||||
logger.error('Error while getting pin URL from Pinterest:', error);
|
||||
return null;
|
||||
} finally {
|
||||
await browser.close();
|
||||
}
|
||||
}
|
||||
|
||||
// Download one high-quality image from a pin page
|
||||
async function downloadOneImageFromPin(pinUrl: string, count: number = 1, scrollTimes = SCROLL_PIN): Promise<string[]> {
|
||||
const browser = await puppeteer.launch({ headless: true });
|
||||
const page = await browser.newPage();
|
||||
await page.setUserAgent('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36');
|
||||
await page.setViewport({ width: 1920, height: 1080 });
|
||||
try {
|
||||
await page.goto(pinUrl, { waitUntil: 'networkidle2', timeout: 30000 });
|
||||
for (let i = 0; i < scrollTimes; i++) {
|
||||
await page.evaluate('window.scrollTo(0, document.body.scrollHeight)');
|
||||
await new Promise((r) => setTimeout(r, 700 + Math.random() * 800));
|
||||
}
|
||||
const imgs: string[] = await page.$$eval('img', imgs => {
|
||||
const urls: string[] = imgs.map(img => {
|
||||
const srcset = (img as HTMLImageElement).getAttribute('srcset') || '';
|
||||
if (!srcset) return '';
|
||||
const parts = srcset.split(',').map(p => p.trim());
|
||||
for (const part of parts) {
|
||||
const m = part.match(/^(\S+)\s+4x$/);
|
||||
if (m && m[1]) return m[1];
|
||||
}
|
||||
const src = (img as HTMLImageElement).src || '';
|
||||
if (src.includes('/originals/')) return src;
|
||||
return '';
|
||||
}).filter(s => !!s && s.includes('pinimg'));
|
||||
return urls;
|
||||
});
|
||||
if (!imgs || imgs.length === 0) {
|
||||
logger.warn(`No high-res images found on pin ${pinUrl}`);
|
||||
return [];
|
||||
}
|
||||
const shuffled = imgs.slice().sort(() => 0.5 - Math.random());
|
||||
const chosen = shuffled.slice(0, Math.min(count, shuffled.length));
|
||||
const outDir = path.join(process.cwd(), 'download');
|
||||
await fs.mkdir(outDir, { recursive: true });
|
||||
const results: string[] = [];
|
||||
for (let i = 0; i < chosen.length; i++) {
|
||||
const src = chosen[i];
|
||||
try {
|
||||
const imgPage = await browser.newPage();
|
||||
const resp = await imgPage.goto(src, { timeout: 30000, waitUntil: 'networkidle2' });
|
||||
if (!resp) { await imgPage.close(); continue; }
|
||||
const buffer = await resp.buffer();
|
||||
const pinId = pinUrl.split('/').filter(Boolean).pop() || `pin_${Date.now()}`;
|
||||
const timestamp = Date.now();
|
||||
const outPath = path.join(outDir, `${pinId}_${timestamp}_${i}.png`);
|
||||
await fs.writeFile(outPath, buffer);
|
||||
results.push(outPath);
|
||||
await imgPage.close();
|
||||
} catch (err) {
|
||||
logger.error(`Failed to download image ${src} from ${pinUrl}:`, err);
|
||||
}
|
||||
}
|
||||
return results;
|
||||
} catch (err) {
|
||||
logger.error(`Failed to download images from ${pinUrl}:`, err);
|
||||
return [];
|
||||
} finally {
|
||||
await browser.close();
|
||||
}
|
||||
}
|
||||
|
||||
// Reuse the getPromptsForImage logic (uses OpenAI + image)
|
||||
async function getPromptsForImage(imagePaths: string[], pinUrl: string, genrePrompt: string): Promise<{ imagePrompt: string; videoPrompt: string; baseImagePath: string } | null> {
|
||||
const pinId = pinUrl.split('/').filter(Boolean).pop() || `pin_${Date.now()}`;
|
||||
const timestamp = Date.now();
|
||||
const renamedImagePaths: string[] = [];
|
||||
for (let i = 0; i < imagePaths.length; i++) {
|
||||
const renamedPath = path.join(path.dirname(imagePaths[i]), `${pinId}_${timestamp}_${i}.png`);
|
||||
await fs.rename(imagePaths[i], renamedPath);
|
||||
renamedImagePaths.push(renamedPath);
|
||||
}
|
||||
const imageForPrompt = renamedImagePaths[Math.floor(Math.random() * renamedImagePaths.length)];
|
||||
|
||||
try {
|
||||
const step1Prompt = `Return exactly one JSON object: { "mainobject": "..." }. Look at the provided image and determine the single most prominent/main object or subject in the scene. Answer with a short noun or short phrase.`;
|
||||
const step1Res = await callOpenAIWithFileAndExtract(imageForPrompt, step1Prompt, 5);
|
||||
const mainobject = (step1Res && (step1Res.mainobject || step1Res.mainObject || step1Res.object)) ? String(step1Res.mainobject || step1Res.mainObject || step1Res.object).trim() : '';
|
||||
if (!mainobject) throw new Error('Could not detect main object');
|
||||
|
||||
const step2Prompt = `You have access to the image and the detected main object: "${mainobject}". Decide which single action type best fits this scene from the list: - no action - micro animation - big movement - impossible movement - Dance (if portrait). Return exactly one JSON object: { "actiontype": "..." }.`;
|
||||
const step2Res = await callOpenAIWithFileAndExtract(imageForPrompt, step2Prompt, 5);
|
||||
const actiontype = (step2Res && (step2Res.actiontype || step2Res.actionType)) ? String(step2Res.actiontype || step2Res.actionType).trim() : '';
|
||||
|
||||
const step3Prompt = `Given the image and the following information: - main object: "${mainobject}" - chosen action type: "${actiontype}" From the options pick the single best camera approach: - static camera - pan - rotation - follow the moving object - zoom to the object - impossible camera work. Return exactly one JSON object: { "cameraworkType": "..." }.`;
|
||||
const step3Res = await callOpenAIWithFileAndExtract(imageForPrompt, step3Prompt, 5);
|
||||
const cameraworkType = (step3Res && (step3Res.cameraworkType || step3Res.cameraWorkType || step3Res.camera)) ? String(step3Res.cameraworkType || step3Res.cameraWorkType || step3Res.camera).trim() : '';
|
||||
|
||||
const finalPrompt = `Return exactly one JSON object: { "scene": "...", "action":"...", "camera":"...", "image_prompt":"...", "videoPrompt":"..." } and nothing else.
|
||||
Write "videoPrompt" in 100–150 words, present tense, plain concrete language.
|
||||
Write "image_prompt" as a concise, detailed prompt suitable for generating a similar image.
|
||||
Here is information of the scene:
|
||||
Detected Main Object: ${mainobject}
|
||||
Suggested Action Type: ${actiontype}
|
||||
Suggested Camera Work: ${cameraworkType}
|
||||
Genre instruction: ${genrePrompt}`;
|
||||
|
||||
const finalRes = await callOpenAIWithFileAndExtract(imageForPrompt, finalPrompt, 5);
|
||||
const imagePrompt = finalRes && (finalRes.image_prompt || finalRes.imagePrompt || finalRes.image_prompt) ? String(finalRes.image_prompt || finalRes.imagePrompt) : '';
|
||||
const videoPrompt = finalRes && (finalRes.videoPrompt || finalRes.video_prompt || finalRes.video_prompt) ? String(finalRes.videoPrompt || finalRes.video_prompt) : '';
|
||||
if (!imagePrompt || !videoPrompt) throw new Error('Final LM output missing prompts');
|
||||
|
||||
return { imagePrompt, videoPrompt, baseImagePath: imageForPrompt };
|
||||
} catch (error) {
|
||||
logger.error('Failed to get prompts for image:', error);
|
||||
for (const p of renamedImagePaths) {
|
||||
try { await fs.unlink(p); } catch (e) { /* ignore */ }
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
async function generateImageForItem(item: PipelineItem, server: { baseUrl: string; outputDir: string; }): Promise<string | null> {
|
||||
const { imagePrompt, baseImagePath } = item as any;
|
||||
const { baseUrl, outputDir } = server;
|
||||
const inputDir = outputDir.replace("output", "input");
|
||||
const sourceFileNames: string[] = [];
|
||||
try {
|
||||
if (USE_REFERENCE_IMAGE) {
|
||||
const fileName = path.basename(baseImagePath);
|
||||
const destPath = path.join(inputDir, fileName);
|
||||
await fs.copyFile(baseImagePath, destPath);
|
||||
sourceFileNames.push(fileName);
|
||||
logger.info(`Copied ${baseImagePath} to ${destPath}`);
|
||||
|
||||
const srcA = sourceFileNames[0];
|
||||
const srcB = sourceFileNames[1] || sourceFileNames[0];
|
||||
|
||||
const generatedImagePath = await generateImageMixStyle(
|
||||
imagePrompt,
|
||||
srcA,
|
||||
srcB,
|
||||
`${path.basename(baseImagePath)}`,
|
||||
baseUrl,
|
||||
outputDir,
|
||||
{ width: 1280, height: 720 }
|
||||
);
|
||||
return generatedImagePath;
|
||||
} else {
|
||||
const generatedImagePath = await generateImage(
|
||||
imagePrompt,
|
||||
`${path.basename(baseImagePath)}`,
|
||||
baseUrl,
|
||||
outputDir,
|
||||
'qwen',
|
||||
{ width: 1280, height: 720 }
|
||||
);
|
||||
return generatedImagePath;
|
||||
}
|
||||
} catch (error) {
|
||||
logger.error(`Failed to generate image on server ${baseUrl}:`, error);
|
||||
return null;
|
||||
} finally {
|
||||
// cleanup base image copied to server input
|
||||
for (const fileName of sourceFileNames) {
|
||||
try {
|
||||
const serverPath = path.join(inputDir, fileName);
|
||||
await fs.unlink(serverPath);
|
||||
} catch (error) {
|
||||
logger.error(`Failed to delete server image ${fileName}:`, error);
|
||||
}
|
||||
}
|
||||
// local base image cleanup is left to caller if desired
|
||||
}
|
||||
}
|
||||
|
||||
(async () => {
|
||||
// Entry prompt: use hard-coded prompt defined at the top of the file
|
||||
const userPrompt = HARDCODED_USER_PROMPT;
|
||||
|
||||
if (servers.length === 0) {
|
||||
logger.error("No servers configured. Please set SERVER1_COMFY_BASE_URL/OUTPUT_DIR etc in .env");
|
||||
return;
|
||||
}
|
||||
|
||||
while (true) {
|
||||
logger.info(`Starting pipeline iteration for prompt: ${userPrompt}`);
|
||||
|
||||
// 1) Ask OpenAI to generate keywords
|
||||
const keywords = await generateKeywordsFromPrompt(userPrompt, NUMBER_OF_KEYWORDS);
|
||||
logger.info(`Generated ${keywords.length} keywords: ${keywords.join(', ')}`);
|
||||
|
||||
// 2) For each keyword: search pinterest, pick pinId, open pin page, pick one photo, generate prompts, generate image on servers
|
||||
const pipelineItems: PipelineItem[] = [];
|
||||
for (const kw of keywords) {
|
||||
try {
|
||||
const pinUrl = await getPinUrlFromPinterest(kw, SCROLL_SEARCH);
|
||||
if (!pinUrl) {
|
||||
logger.warn(`No pin found for keyword "${kw}"`);
|
||||
continue;
|
||||
}
|
||||
const downloaded = await downloadOneImageFromPin(pinUrl, 1, SCROLL_PIN);
|
||||
if (!downloaded || downloaded.length === 0) {
|
||||
logger.warn(`No photo downloaded for pin ${pinUrl}`);
|
||||
continue;
|
||||
}
|
||||
const prompts = await getPromptsForImage(downloaded, pinUrl, kw);
|
||||
if (!prompts) {
|
||||
logger.warn(`Failed to produce prompts for image from pin ${pinUrl}`);
|
||||
// cleanup downloaded file
|
||||
for (const f of downloaded) {
|
||||
try { await fs.unlink(f); } catch (e) { /* ignore */ }
|
||||
}
|
||||
continue;
|
||||
}
|
||||
const item: PipelineItem = {
|
||||
keyword: kw,
|
||||
pinUrl,
|
||||
imagePrompt: prompts.imagePrompt,
|
||||
videoPrompt: prompts.videoPrompt,
|
||||
baseImagePath: prompts.baseImagePath,
|
||||
};
|
||||
pipelineItems.push(item);
|
||||
logger.info(`Prepared pipeline item for keyword "${kw}"`);
|
||||
} catch (err) {
|
||||
logger.error(`Error processing keyword ${kw}:`, err);
|
||||
}
|
||||
}
|
||||
|
||||
// 3) Generate images for all pipeline items, distributed across servers concurrently
|
||||
logger.info(`Starting image generation for ${pipelineItems.length} items`);
|
||||
if (pipelineItems.length > 0) {
|
||||
const tasksByServer: PipelineItem[][] = servers.map(() => []);
|
||||
pipelineItems.forEach((it, idx) => {
|
||||
const si = idx % servers.length;
|
||||
tasksByServer[si].push(it);
|
||||
});
|
||||
await Promise.all(servers.map(async (server, si) => {
|
||||
const tasks = tasksByServer[si];
|
||||
if (!tasks || tasks.length === 0) return;
|
||||
logger.info(`Server ${server.baseUrl} generating ${tasks.length} images`);
|
||||
const results = await Promise.all(tasks.map(t => generateImageForItem(t, server)));
|
||||
for (let i = 0; i < tasks.length; i++) {
|
||||
const res = results[i];
|
||||
if (res) tasks[i].generatedImagePath = res;
|
||||
}
|
||||
logger.info(`Server ${server.baseUrl} finished image generation`);
|
||||
}));
|
||||
}
|
||||
|
||||
// 4) Collect successful items and generate videos (distributed across servers concurrently)
|
||||
const readyItems = pipelineItems.filter(i => i.generatedImagePath);
|
||||
logger.info(`Starting video generation for ${readyItems.length} items`);
|
||||
if (readyItems.length > 0) {
|
||||
const tasksByServer: PipelineItem[][] = servers.map(() => []);
|
||||
readyItems.forEach((it, idx) => {
|
||||
const si = idx % servers.length;
|
||||
tasksByServer[si].push(it);
|
||||
});
|
||||
|
||||
await Promise.all(servers.map(async (server, si) => {
|
||||
const tasks = tasksByServer[si];
|
||||
if (!tasks || tasks.length === 0) return;
|
||||
logger.info(`Server ${server.baseUrl} starting ${tasks.length} video task(s)`);
|
||||
|
||||
await Promise.allSettled(tasks.map(async (task) => {
|
||||
if (!task.generatedImagePath) {
|
||||
logger.warn(`Skipping a task on ${server.baseUrl} - missing generatedImagePath`);
|
||||
return;
|
||||
}
|
||||
const inputDir = server.outputDir.replace("output", "input");
|
||||
const generatedImageName = path.basename(task.generatedImagePath);
|
||||
const serverImagePath = path.join(inputDir, generatedImageName);
|
||||
try {
|
||||
await fs.copyFile(task.generatedImagePath, serverImagePath);
|
||||
logger.info(`Copied ${task.generatedImagePath} to ${serverImagePath}`);
|
||||
|
||||
const videoFileName = `${path.basename(task.generatedImagePath, path.extname(task.generatedImagePath))}.mp4`;
|
||||
const videoPath = await generateVideo(
|
||||
task.videoPrompt,
|
||||
generatedImageName,
|
||||
videoFileName,
|
||||
server.baseUrl,
|
||||
server.outputDir,
|
||||
{ width: 1280, height: 720 },
|
||||
false,
|
||||
false
|
||||
);
|
||||
|
||||
if (videoPath) {
|
||||
const videoData = {
|
||||
genre: task.keyword,
|
||||
sub_genre: task.keyword,
|
||||
scene: '',
|
||||
action: '',
|
||||
camera: '',
|
||||
image_prompt: task.imagePrompt,
|
||||
video_prompt: task.videoPrompt,
|
||||
image_path: task.generatedImagePath,
|
||||
video_path: videoPath,
|
||||
};
|
||||
// ensure image_path is string (guard above)
|
||||
const videoId = await VideoModel.create(videoData);
|
||||
logger.info(`Saved video record ID: ${videoId}`);
|
||||
|
||||
const newImageName = `${videoId}_${task.keyword}${path.extname(task.generatedImagePath)}`;
|
||||
const newVideoName = `${videoId}_${task.keyword}${path.extname(videoPath)}`;
|
||||
const newImagePath = path.join(path.dirname(task.generatedImagePath), newImageName);
|
||||
const newVideoPath = path.join(path.dirname(videoPath), newVideoName);
|
||||
|
||||
await fs.rename(task.generatedImagePath, newImagePath);
|
||||
await fs.rename(videoPath, newVideoPath);
|
||||
|
||||
await VideoModel.update(videoId, {
|
||||
image_path: newImagePath,
|
||||
video_path: newVideoPath,
|
||||
});
|
||||
logger.info(`Renamed and updated DB for video ID: ${videoId}`);
|
||||
} else {
|
||||
logger.warn(`Video generation returned no path for ${task.generatedImagePath} on ${server.baseUrl}`);
|
||||
}
|
||||
} catch (err) {
|
||||
logger.error('Error during video generation pipeline step:', err);
|
||||
} finally {
|
||||
try { await fs.unlink(serverImagePath); } catch (e) { /* ignore */ }
|
||||
}
|
||||
}));
|
||||
logger.info(`Server ${server.baseUrl} finished video tasks`);
|
||||
}));
|
||||
}
|
||||
|
||||
logger.info('Pipeline iteration finished.');
|
||||
|
||||
// Cleanup base images downloaded from pins if you want to remove them.
|
||||
for (const item of pipelineItems) {
|
||||
try { await fs.unlink(item.baseImagePath); } catch (e) { /* ignore */ }
|
||||
}
|
||||
|
||||
if (RUN_ONCE) {
|
||||
logger.info('RUN_ONCE=true - exiting after one iteration');
|
||||
return;
|
||||
}
|
||||
}
|
||||
})();
|
||||
207
src/comfyworkflows/cloth_extractor.json
Normal file
207
src/comfyworkflows/cloth_extractor.json
Normal file
@ -0,0 +1,207 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 1088883674457465,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"66",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"11",
|
||||
6
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": true,
|
||||
"enable_vl_resize": true,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenedit",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "extract the outfit onto a white background"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"inputs": {
|
||||
"measurement": "pixels",
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"fit": "contain",
|
||||
"method": "nearest-exact",
|
||||
"image": [
|
||||
"64",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Resize (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Resize (rgthree)"
|
||||
}
|
||||
},
|
||||
"64": {
|
||||
"inputs": {
|
||||
"image": "3096293489212792_1758825204441_2.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"65": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"66": {
|
||||
"inputs": {
|
||||
"lora_name": "extract-outfit_v3.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
}
|
||||
}
|
||||
396
src/comfyworkflows/edit_image_2_qwen.json
Normal file
396
src/comfyworkflows/edit_image_2_qwen.json
Normal file
@ -0,0 +1,396 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 936152772258115,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"28",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"10",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"image1_text": "Original image",
|
||||
"image2_text": "Reference",
|
||||
"image3_text": "Result",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image2": [
|
||||
"11",
|
||||
2
|
||||
],
|
||||
"image3": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"30",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"27",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"image": "model_outfit_location_1760043932148.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "load base image"
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"inputs": {
|
||||
"rgthree_comparer": {
|
||||
"images": [
|
||||
{
|
||||
"name": "A",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_dxzmg_00211_.png&type=temp&subfolder=&rand=0.09499077981761894"
|
||||
},
|
||||
{
|
||||
"name": "B",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_dxzmg_00212_.png&type=temp&subfolder=&rand=0.21125213225471684"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image_a": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image_b": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Comparer (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Comparer (rgthree)"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "combined",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "请将图2中的模特处理成手持图1中包包的照片。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"22": {
|
||||
"inputs": {
|
||||
"filename_prefix": "ComfyUI",
|
||||
"images": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"inputs": {
|
||||
"vae_name": "sdxl_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"23",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"25",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "resize",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"inputs": {
|
||||
"pixels": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEEncode",
|
||||
"_meta": {
|
||||
"title": "VAE Encode"
|
||||
}
|
||||
},
|
||||
"29": {
|
||||
"inputs": {
|
||||
"image": "handbag_1760043932148.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "load reference image"
|
||||
}
|
||||
},
|
||||
"30": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "resize",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"29",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"inputs": {
|
||||
"Value": 720
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "width"
|
||||
}
|
||||
},
|
||||
"32": {
|
||||
"inputs": {
|
||||
"Value": 1280
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "height"
|
||||
}
|
||||
}
|
||||
}
|
||||
444
src/comfyworkflows/edit_image_2_qwen_empty.json
Normal file
444
src/comfyworkflows/edit_image_2_qwen_empty.json
Normal file
@ -0,0 +1,444 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 38026585691397,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"36",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"10",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"image1_text": "Original image",
|
||||
"image2_text": "Reference",
|
||||
"image3_text": "Result",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image2": [
|
||||
"11",
|
||||
2
|
||||
],
|
||||
"image3": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"33",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"image": "model_1760082843769.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "load base image"
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"inputs": {
|
||||
"rgthree_comparer": {
|
||||
"images": [
|
||||
{
|
||||
"name": "A",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_uoazy_00279_.png&type=temp&subfolder=&rand=0.4405150352070387"
|
||||
},
|
||||
{
|
||||
"name": "B",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_uoazy_00280_.png&type=temp&subfolder=&rand=0.9388629603648289"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image_a": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image_b": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Comparer (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Comparer (rgthree)"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "combined",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "以图像2为基础,生成一张女性肖像照片。她穿着一件黑色薄纱长袖上衣,一条光滑的皮革及膝裙,和勃艮第色的尖头靴子,手提一个深红色的手提包。场景改为极简主义风格的客厅,摆放着中性的沙发、镜面墙饰、盆栽植物和浅色地板,营造出明亮而宽敞的美感。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"22": {
|
||||
"inputs": {
|
||||
"filename_prefix": "ComfyUI",
|
||||
"images": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"inputs": {
|
||||
"vae_name": "sdxl_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"23",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"25",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "resize",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"inputs": {
|
||||
"pixels": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEEncode",
|
||||
"_meta": {
|
||||
"title": "VAE Encode"
|
||||
}
|
||||
},
|
||||
"29": {
|
||||
"inputs": {
|
||||
"image": "pose_1760082843769.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "load reference image"
|
||||
}
|
||||
},
|
||||
"30": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "resize",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"29",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"inputs": {
|
||||
"Value": 720
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "width"
|
||||
}
|
||||
},
|
||||
"32": {
|
||||
"inputs": {
|
||||
"Value": 1280
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "height"
|
||||
}
|
||||
},
|
||||
"33": {
|
||||
"inputs": {
|
||||
"detect_hand": "enable",
|
||||
"detect_body": "enable",
|
||||
"detect_face": "enable",
|
||||
"resolution": 512,
|
||||
"bbox_detector": "yolox_l.onnx",
|
||||
"pose_estimator": "dw-ll_ucoco_384_bs5.torchscript.pt",
|
||||
"scale_stick_for_xinsr_cn": "disable",
|
||||
"image": [
|
||||
"30",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "DWPreprocessor",
|
||||
"_meta": {
|
||||
"title": "DWPose Estimator"
|
||||
}
|
||||
},
|
||||
"35": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"33",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"36": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
396
src/comfyworkflows/edit_image_2_qwen_handbag.json
Normal file
396
src/comfyworkflows/edit_image_2_qwen_handbag.json
Normal file
@ -0,0 +1,396 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 323591075024702,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"28",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"10",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"image1_text": "Original image",
|
||||
"image2_text": "Reference",
|
||||
"image3_text": "Result",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image2": [
|
||||
"11",
|
||||
2
|
||||
],
|
||||
"image3": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": true,
|
||||
"enable_vl_resize": true,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"30",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"image": "model_outfit_location_handbag1_1760085003312.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"inputs": {
|
||||
"rgthree_comparer": {
|
||||
"images": [
|
||||
{
|
||||
"name": "A",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_uoazy_00305_.png&type=temp&subfolder=&rand=0.5408789951924671"
|
||||
},
|
||||
{
|
||||
"name": "B",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_uoazy_00306_.png&type=temp&subfolder=&rand=0.2425856190711294"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image_a": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image_b": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Comparer (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Comparer (rgthree)"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "combined",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "请将图2中的女性修改成把图1的包背在肩上。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"22": {
|
||||
"inputs": {
|
||||
"filename_prefix": "ComfyUI",
|
||||
"images": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"inputs": {
|
||||
"vae_name": "sdxl_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"23",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"25",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"inputs": {
|
||||
"pixels": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEEncode",
|
||||
"_meta": {
|
||||
"title": "VAE Encode"
|
||||
}
|
||||
},
|
||||
"29": {
|
||||
"inputs": {
|
||||
"image": "handbag_1760085003312.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"30": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"29",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"inputs": {
|
||||
"Value": 720
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "width"
|
||||
}
|
||||
},
|
||||
"32": {
|
||||
"inputs": {
|
||||
"Value": 1280
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "height"
|
||||
}
|
||||
}
|
||||
}
|
||||
444
src/comfyworkflows/edit_image_2_qwen_pose.json
Normal file
444
src/comfyworkflows/edit_image_2_qwen_pose.json
Normal file
@ -0,0 +1,444 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 38026585691397,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"36",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"10",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"image1_text": "Original image",
|
||||
"image2_text": "Reference",
|
||||
"image3_text": "Result",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image2": [
|
||||
"11",
|
||||
2
|
||||
],
|
||||
"image3": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"33",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"image": "model_1760082843769.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "load base image"
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"inputs": {
|
||||
"rgthree_comparer": {
|
||||
"images": [
|
||||
{
|
||||
"name": "A",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_uoazy_00279_.png&type=temp&subfolder=&rand=0.4405150352070387"
|
||||
},
|
||||
{
|
||||
"name": "B",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_uoazy_00280_.png&type=temp&subfolder=&rand=0.9388629603648289"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image_a": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image_b": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Comparer (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Comparer (rgthree)"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "combined",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "以图像2为基础,生成一张女性肖像照片。她穿着一件黑色薄纱长袖上衣,一条光滑的皮革及膝裙,和勃艮第色的尖头靴子,手提一个深红色的手提包。场景改为极简主义风格的客厅,摆放着中性的沙发、镜面墙饰、盆栽植物和浅色地板,营造出明亮而宽敞的美感。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"22": {
|
||||
"inputs": {
|
||||
"filename_prefix": "ComfyUI",
|
||||
"images": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"inputs": {
|
||||
"vae_name": "sdxl_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"23",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"25",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "resize",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"inputs": {
|
||||
"pixels": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEEncode",
|
||||
"_meta": {
|
||||
"title": "VAE Encode"
|
||||
}
|
||||
},
|
||||
"29": {
|
||||
"inputs": {
|
||||
"image": "pose_1760082843769.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "load reference image"
|
||||
}
|
||||
},
|
||||
"30": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "resize",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"29",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"inputs": {
|
||||
"Value": 720
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "width"
|
||||
}
|
||||
},
|
||||
"32": {
|
||||
"inputs": {
|
||||
"Value": 1280
|
||||
},
|
||||
"class_type": "DF_Integer",
|
||||
"_meta": {
|
||||
"title": "height"
|
||||
}
|
||||
},
|
||||
"33": {
|
||||
"inputs": {
|
||||
"detect_hand": "enable",
|
||||
"detect_body": "enable",
|
||||
"detect_face": "enable",
|
||||
"resolution": 512,
|
||||
"bbox_detector": "yolox_l.onnx",
|
||||
"pose_estimator": "dw-ll_ucoco_384_bs5.torchscript.pt",
|
||||
"scale_stick_for_xinsr_cn": "disable",
|
||||
"image": [
|
||||
"30",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "DWPreprocessor",
|
||||
"_meta": {
|
||||
"title": "DWPose Estimator"
|
||||
}
|
||||
},
|
||||
"35": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"33",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"36": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"32",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
558
src/comfyworkflows/edit_image_multiple_qwen.json
Normal file
558
src/comfyworkflows/edit_image_multiple_qwen.json
Normal file
@ -0,0 +1,558 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 1058883705232539,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"66",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"11",
|
||||
6
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"84",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"image": "cloth_0001.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "change clothes of image1 with image2"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"64": {
|
||||
"inputs": {
|
||||
"image": "Lauren_body.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"66": {
|
||||
"inputs": {
|
||||
"lora_name": "extract-outfit_v3.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"67": {
|
||||
"inputs": {
|
||||
"detect_hand": "enable",
|
||||
"detect_body": "enable",
|
||||
"detect_face": "enable",
|
||||
"resolution": 512,
|
||||
"bbox_detector": "yolox_l.onnx",
|
||||
"pose_estimator": "dw-ll_ucoco_384_bs5.torchscript.pt",
|
||||
"scale_stick_for_xinsr_cn": "disable",
|
||||
"image": [
|
||||
"68",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "DWPreprocessor",
|
||||
"_meta": {
|
||||
"title": "DWPose Estimator"
|
||||
}
|
||||
},
|
||||
"68": {
|
||||
"inputs": {
|
||||
"image": "281543721672978_1758880135639_0.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"69": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"81",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"number": 720
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"77": {
|
||||
"inputs": {
|
||||
"number": 1280
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"78": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"81": {
|
||||
"inputs": {
|
||||
"width": 480,
|
||||
"height": 962,
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "pad",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"67",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"82": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "255,255,255",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"15",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"83": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "pad",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"64",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"85": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"86": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"87": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"88": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"87",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"89": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"95",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"90": {
|
||||
"inputs": {
|
||||
"lora_name": "extract-outfit_v3.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"88",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"91": {
|
||||
"inputs": {
|
||||
"seed": 416948400785889,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"90",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"95",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"89",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"95",
|
||||
6
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"92": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"91",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"94",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"93": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenedit",
|
||||
"images": [
|
||||
"92",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"94": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"95": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"96",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"86",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"94",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"8",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"81",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"96": {
|
||||
"inputs": {
|
||||
"value": "change pose of image1 with image2, keep background same as image1"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"132": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"133": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenimtermediate",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"134": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenpose",
|
||||
"images": [
|
||||
"81",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
333
src/comfyworkflows/edit_image_qwen.json
Normal file
333
src/comfyworkflows/edit_image_qwen.json
Normal file
@ -0,0 +1,333 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 639545413023960,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"28",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"10",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"image1_text": "Original image",
|
||||
"image2_text": "Reference",
|
||||
"image3_text": "Result",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image2": [
|
||||
"11",
|
||||
2
|
||||
],
|
||||
"image3": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": true,
|
||||
"enable_vl_resize": true,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"27",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"image": "7318418139276581_1759654853736_18 - コピー.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"inputs": {
|
||||
"rgthree_comparer": {
|
||||
"images": [
|
||||
{
|
||||
"name": "A",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_niitk_00003_.png&type=temp&subfolder=&rand=0.9166876008508786"
|
||||
},
|
||||
{
|
||||
"name": "B",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_niitk_00004_.png&type=temp&subfolder=&rand=0.06689875639286158"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image_a": [
|
||||
"11",
|
||||
1
|
||||
],
|
||||
"image_b": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Comparer (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Comparer (rgthree)"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenedit",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "请从图1中提取主要主体,把背景设置为浅灰色,并让主体正面朝向,制作成产品照片。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"22": {
|
||||
"inputs": {
|
||||
"filename_prefix": "ComfyUI",
|
||||
"images": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"inputs": {
|
||||
"vae_name": "sdxl_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"23",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"24",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"25",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "pad",
|
||||
"pad_color": "192,192,192",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"inputs": {
|
||||
"pixels": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEEncode",
|
||||
"_meta": {
|
||||
"title": "VAE Encode"
|
||||
}
|
||||
}
|
||||
}
|
||||
354
src/comfyworkflows/edit_image_vton.json
Normal file
354
src/comfyworkflows/edit_image_vton.json
Normal file
@ -0,0 +1,354 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 506786026379830,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"140",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"11",
|
||||
6
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"84",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"image": "cloth_0026.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load cloth"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "change clothes of image1 to image2, remove the cap from head"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"64": {
|
||||
"inputs": {
|
||||
"image": "Courtney_body.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load model"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"number": 832
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"77": {
|
||||
"inputs": {
|
||||
"number": 1248
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"78": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"82": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "255,255,255",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"15",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"83": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"64",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"85": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"93": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenedit",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"132": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"136": {
|
||||
"inputs": {
|
||||
"image": "281543721672978_1758880135639_0.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"137": {
|
||||
"inputs": {
|
||||
"detect_hand": "enable",
|
||||
"detect_body": "enable",
|
||||
"detect_face": "enable",
|
||||
"resolution": 512,
|
||||
"bbox_detector": "yolox_l.onnx",
|
||||
"pose_estimator": "dw-ll_ucoco_384_bs5.torchscript.pt",
|
||||
"scale_stick_for_xinsr_cn": "disable",
|
||||
"image": [
|
||||
"136",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "DWPreprocessor",
|
||||
"_meta": {
|
||||
"title": "DWPose Estimator"
|
||||
}
|
||||
},
|
||||
"139": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"137",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"140": {
|
||||
"inputs": {
|
||||
"lora_name": "Try_On_Qwen_Edit_Lora.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
}
|
||||
}
|
||||
111
src/comfyworkflows/facerestore_upscale.json
Normal file
111
src/comfyworkflows/facerestore_upscale.json
Normal file
@ -0,0 +1,111 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"image": "model_outfit_location_handbag3_1760086053609.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"enabled": true,
|
||||
"swap_model": "inswapper_128.onnx",
|
||||
"facedetection": "YOLOv5l",
|
||||
"face_restore_model": "GPEN-BFR-1024.onnx",
|
||||
"face_restore_visibility": 0.5200000000000001,
|
||||
"codeformer_weight": 0.5,
|
||||
"detect_gender_input": "no",
|
||||
"detect_gender_source": "no",
|
||||
"input_faces_index": "0",
|
||||
"source_faces_index": "0",
|
||||
"console_log_level": 1,
|
||||
"input_image": [
|
||||
"6",
|
||||
0
|
||||
],
|
||||
"source_image": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ReActorFaceSwap",
|
||||
"_meta": {
|
||||
"title": "ReActor 🌌 Fast Face Swap"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"image": "outfit_1760086053609.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"2",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"inputs": {
|
||||
"resize_to": "4k",
|
||||
"images": [
|
||||
"1",
|
||||
0
|
||||
],
|
||||
"upscaler_trt_model": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "UpscalerTensorrt",
|
||||
"_meta": {
|
||||
"title": "Upscaler Tensorrt ⚡"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"6",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"model": "4x-UltraSharp",
|
||||
"precision": "fp16"
|
||||
},
|
||||
"class_type": "LoadUpscalerTensorrtModel",
|
||||
"_meta": {
|
||||
"title": "Load Upscale Tensorrt Model"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"filename_prefix": "upscaled",
|
||||
"images": [
|
||||
"2",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -71,7 +71,7 @@
|
||||
},
|
||||
"38": {
|
||||
"inputs": {
|
||||
"unet_name": "flux1-dev.safetensors",
|
||||
"unet_name": "flux1-krea-dev_fp8_scaled.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
|
||||
193
src/comfyworkflows/generate_image_mix_style.json
Normal file
193
src/comfyworkflows/generate_image_mix_style.json
Normal file
@ -0,0 +1,193 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"clip_name1": "clip_l.safetensors",
|
||||
"clip_name2": "t5xxl_fp16.safetensors",
|
||||
"type": "flux",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "DualCLIPLoader",
|
||||
"_meta": {
|
||||
"title": "DualCLIPLoader"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"unet_name": "flux1-krea-dev_fp8_scaled.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptySD3LatentImage",
|
||||
"_meta": {
|
||||
"title": "EmptySD3LatentImage"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"seed": 844515265883614,
|
||||
"steps": 20,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"12",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"style_model_name": "flux1-redux-dev.safetensors"
|
||||
},
|
||||
"class_type": "StyleModelLoader",
|
||||
"_meta": {
|
||||
"title": "Load Style Model"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"crop": "center",
|
||||
"clip_vision": [
|
||||
"10",
|
||||
0
|
||||
],
|
||||
"image": [
|
||||
"13",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPVisionEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Vision Encode"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"clip_name": "sigclip_vision_patch14_384.safetensors"
|
||||
},
|
||||
"class_type": "CLIPVisionLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP Vision"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"strength": 0.6000000000000001,
|
||||
"conditioning": [
|
||||
"14",
|
||||
0
|
||||
],
|
||||
"style_model": [
|
||||
"8",
|
||||
0
|
||||
],
|
||||
"clip_vision_output": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ApplyStyleModelAdjust",
|
||||
"_meta": {
|
||||
"title": "Apply Style Model (Adjusted)"
|
||||
}
|
||||
},
|
||||
"12": {
|
||||
"inputs": {
|
||||
"vae_name": "ae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"13": {
|
||||
"inputs": {
|
||||
"image": "7a103725df2576b79c7306f0d3050991.jpg"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image 1"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"text": "scify movie scene",
|
||||
"clip": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Prompt)"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"filename_prefix": "STYLEDVIDEOMAKER",
|
||||
"images": [
|
||||
"6",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
229
src/comfyworkflows/generate_image_style_faceswap.json
Normal file
229
src/comfyworkflows/generate_image_style_faceswap.json
Normal file
@ -0,0 +1,229 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"clip_name1": "clip_l.safetensors",
|
||||
"clip_name2": "t5xxl_fp16.safetensors",
|
||||
"type": "flux",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "DualCLIPLoader",
|
||||
"_meta": {
|
||||
"title": "DualCLIPLoader"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"unet_name": "flux1-krea-dev_fp8_scaled.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptySD3LatentImage",
|
||||
"_meta": {
|
||||
"title": "EmptySD3LatentImage"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"seed": 445107772143446,
|
||||
"steps": 20,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"12",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"style_model_name": "flux1-redux-dev.safetensors"
|
||||
},
|
||||
"class_type": "StyleModelLoader",
|
||||
"_meta": {
|
||||
"title": "Load Style Model"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"crop": "center",
|
||||
"clip_vision": [
|
||||
"10",
|
||||
0
|
||||
],
|
||||
"image": [
|
||||
"13",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPVisionEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Vision Encode"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"clip_name": "sigclip_vision_patch14_384.safetensors"
|
||||
},
|
||||
"class_type": "CLIPVisionLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP Vision"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"strength": 0.30000000000000004,
|
||||
"conditioning": [
|
||||
"14",
|
||||
0
|
||||
],
|
||||
"style_model": [
|
||||
"8",
|
||||
0
|
||||
],
|
||||
"clip_vision_output": [
|
||||
"9",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ApplyStyleModelAdjust",
|
||||
"_meta": {
|
||||
"title": "Apply Style Model (Adjusted)"
|
||||
}
|
||||
},
|
||||
"12": {
|
||||
"inputs": {
|
||||
"vae_name": "ae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"13": {
|
||||
"inputs": {
|
||||
"image": "281543725739981_1759177922955_0.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image 1"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"text": "realistic photo of woman, wavy long blong hair, fullbody shot,, A dynamic dance scene begins with a distorted glitch effect mirroring the image’s grayscale aesthetic, quickly transitioning into a vibrant, fast-paced choreography featuring dancers in similar pale makeup and unsettling expressions. The music is electronic with heavy bass and industrial elements. The camera work should be kinetic and disorienting, utilizing quick cuts and unconventional angles, emphasizing the feeling of being trapped or haunted. The dance evolves from frantic movements to controlled yet eerie poses that echo the image’s gesture of covering the face. The setting changes between a stark white room similar to the image's background and abstract digital landscapes.",
|
||||
"clip": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Prompt)"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"filename_prefix": "STYLEDVIDEOMAKER",
|
||||
"images": [
|
||||
"20",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"inputs": {
|
||||
"image": "face.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"enabled": true,
|
||||
"swap_model": "inswapper_128.onnx",
|
||||
"facedetection": "retinaface_resnet50",
|
||||
"face_restore_model": "GPEN-BFR-2048.onnx",
|
||||
"face_restore_visibility": 1,
|
||||
"codeformer_weight": 1,
|
||||
"detect_gender_input": "no",
|
||||
"detect_gender_source": "no",
|
||||
"input_faces_index": "0",
|
||||
"source_faces_index": "0",
|
||||
"console_log_level": 1,
|
||||
"input_image": [
|
||||
"6",
|
||||
0
|
||||
],
|
||||
"source_image": [
|
||||
"19",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ReActorFaceSwap",
|
||||
"_meta": {
|
||||
"title": "ReActor 🌌 Fast Face Swap"
|
||||
}
|
||||
}
|
||||
}
|
||||
195
src/comfyworkflows/generate_image_with_face.json
Normal file
195
src/comfyworkflows/generate_image_with_face.json
Normal file
@ -0,0 +1,195 @@
|
||||
{
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"31",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"39",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"filename_prefix": "FACEIMAGE",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptySD3LatentImage",
|
||||
"_meta": {
|
||||
"title": "EmptySD3LatentImage"
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"inputs": {
|
||||
"seed": 161646847059712,
|
||||
"steps": 20,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"45",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"41",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"42",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"27",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"38": {
|
||||
"inputs": {
|
||||
"unet_name": "flux1-krea-dev_fp8_scaled.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"39": {
|
||||
"inputs": {
|
||||
"vae_name": "ae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"40": {
|
||||
"inputs": {
|
||||
"clip_name1": "clip_l.safetensors",
|
||||
"clip_name2": "t5xxl_fp16.safetensors",
|
||||
"type": "flux",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "DualCLIPLoader",
|
||||
"_meta": {
|
||||
"title": "DualCLIPLoader"
|
||||
}
|
||||
},
|
||||
"41": {
|
||||
"inputs": {
|
||||
"clip_l": "realistic photo of 25 years old girl , face zoom up, Neutral face, long straight hair, pastel blue and purple hair color",
|
||||
"t5xxl": "realistic photo of 25 years old girl , face zoom up, Neutral face, long straight hair, pastel blue and purple hair color",
|
||||
"guidance": 3.5,
|
||||
"clip": [
|
||||
"40",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncodeFlux",
|
||||
"_meta": {
|
||||
"title": "CLIPTextEncodeFlux"
|
||||
}
|
||||
},
|
||||
"42": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"41",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"45": {
|
||||
"inputs": {
|
||||
"weight": 0.7700000000000001,
|
||||
"start_at": 0,
|
||||
"end_at": 1,
|
||||
"model": [
|
||||
"38",
|
||||
0
|
||||
],
|
||||
"pulid_flux": [
|
||||
"46",
|
||||
0
|
||||
],
|
||||
"eva_clip": [
|
||||
"47",
|
||||
0
|
||||
],
|
||||
"face_analysis": [
|
||||
"48",
|
||||
0
|
||||
],
|
||||
"image": [
|
||||
"49",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ApplyPulidFlux",
|
||||
"_meta": {
|
||||
"title": "Apply PuLID Flux"
|
||||
}
|
||||
},
|
||||
"46": {
|
||||
"inputs": {
|
||||
"pulid_file": "pulid_flux_v0.9.1.safetensors"
|
||||
},
|
||||
"class_type": "PulidFluxModelLoader",
|
||||
"_meta": {
|
||||
"title": "Load PuLID Flux Model"
|
||||
}
|
||||
},
|
||||
"47": {
|
||||
"inputs": {},
|
||||
"class_type": "PulidFluxEvaClipLoader",
|
||||
"_meta": {
|
||||
"title": "Load Eva Clip (PuLID Flux)"
|
||||
}
|
||||
},
|
||||
"48": {
|
||||
"inputs": {
|
||||
"provider": "CUDA"
|
||||
},
|
||||
"class_type": "PulidFluxInsightFaceLoader",
|
||||
"_meta": {
|
||||
"title": "Load InsightFace (PuLID Flux)"
|
||||
}
|
||||
},
|
||||
"49": {
|
||||
"inputs": {
|
||||
"image": "Generated Image September 12, 2025 - 1_04PM.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -97,7 +97,7 @@
|
||||
},
|
||||
"52": {
|
||||
"inputs": {
|
||||
"image": "ComfyUI_00036_.png"
|
||||
"image": "zagreb_musicspot_s14_c1_v1.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
@ -133,7 +133,7 @@
|
||||
"57": {
|
||||
"inputs": {
|
||||
"add_noise": "enable",
|
||||
"noise_seed": 375574453154296,
|
||||
"noise_seed": 989367225141070,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
@ -216,9 +216,9 @@
|
||||
},
|
||||
"63": {
|
||||
"inputs": {
|
||||
"frame_rate": 32,
|
||||
"frame_rate": 24,
|
||||
"loop_count": 0,
|
||||
"filename_prefix": "RADOMVIDEOMAKERVIDEO",
|
||||
"filename_prefix": "wan22_",
|
||||
"format": "video/h264-mp4",
|
||||
"pix_fmt": "yuv420p",
|
||||
"crf": 19,
|
||||
@ -227,7 +227,7 @@
|
||||
"pingpong": false,
|
||||
"save_output": true,
|
||||
"images": [
|
||||
"71",
|
||||
"73",
|
||||
0
|
||||
]
|
||||
},
|
||||
@ -336,44 +336,11 @@
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"71": {
|
||||
"inputs": {
|
||||
"ckpt_name": "rife49.pth",
|
||||
"clear_cache_after_n_frames": 10,
|
||||
"multiplier": 2,
|
||||
"fast_mode": true,
|
||||
"ensemble": true,
|
||||
"scale_factor": 1,
|
||||
"frames": [
|
||||
"73",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "RIFE VFI",
|
||||
"_meta": {
|
||||
"title": "RIFE VFI (recommend rife47 and rife49)"
|
||||
}
|
||||
},
|
||||
"72": {
|
||||
"inputs": {
|
||||
"upscale_model": "4x-UltraSharp.pth",
|
||||
"mode": "rescale",
|
||||
"rescale_factor": 2.0000000000000004,
|
||||
"resize_width": 832,
|
||||
"resampling_method": "lanczos",
|
||||
"supersample": "true",
|
||||
"rounding_modulus": 8
|
||||
},
|
||||
"class_type": "CR Upscale Image",
|
||||
"_meta": {
|
||||
"title": "🔍 CR Upscale Image"
|
||||
}
|
||||
},
|
||||
"73": {
|
||||
"inputs": {
|
||||
"resize_to": "4k",
|
||||
"images": [
|
||||
"8",
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"upscaler_trt_model": [
|
||||
@ -388,12 +355,24 @@
|
||||
},
|
||||
"75": {
|
||||
"inputs": {
|
||||
"model": "4xNomos2_otf_esrgan",
|
||||
"model": "4x-UltraSharp",
|
||||
"precision": "fp16"
|
||||
},
|
||||
"class_type": "LoadUpscalerTensorrtModel",
|
||||
"_meta": {
|
||||
"title": "Load Upscale Tensorrt Model"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"anything": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "easy cleanGpuUsed",
|
||||
"_meta": {
|
||||
"title": "Clean VRAM Used"
|
||||
}
|
||||
}
|
||||
}
|
||||
349
src/comfyworkflows/generate_video_light.json
Normal file
349
src/comfyworkflows/generate_video_light.json
Normal file
@ -0,0 +1,349 @@
|
||||
{
|
||||
"6": {
|
||||
"inputs": {
|
||||
"text": "Create an 8-second animated loop featuring a young man sitting on a stone ledge overlooking a nighttime cityscape. The scene should begin with a slow zoom into the boy’s face as he gazes upwards at the starry sky. Throughout the video, have shooting stars streak across the sky – some fast, some slower, creating a dynamic visual effect. Gentle wind blows his hair and clothing.",
|
||||
"clip": [
|
||||
"38",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Positive Prompt)"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"text": "色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走",
|
||||
"clip": [
|
||||
"38",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Negative Prompt)"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"58",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"39",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"38": {
|
||||
"inputs": {
|
||||
"clip_name": "umt5_xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"type": "wan",
|
||||
"device": "cpu"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"39": {
|
||||
"inputs": {
|
||||
"vae_name": "wan_2.1_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"50": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"64",
|
||||
1
|
||||
],
|
||||
"height": [
|
||||
"64",
|
||||
2
|
||||
],
|
||||
"length": 121,
|
||||
"batch_size": 1,
|
||||
"positive": [
|
||||
"6",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"39",
|
||||
0
|
||||
],
|
||||
"start_image": [
|
||||
"64",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "WanImageToVideo",
|
||||
"_meta": {
|
||||
"title": "WanImageToVideo"
|
||||
}
|
||||
},
|
||||
"52": {
|
||||
"inputs": {
|
||||
"image": "ComfyUI_00036_.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"54": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"69",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"55": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"70",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"57": {
|
||||
"inputs": {
|
||||
"add_noise": "enable",
|
||||
"noise_seed": 375574453154296,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 0,
|
||||
"end_at_step": 3,
|
||||
"return_with_leftover_noise": "enable",
|
||||
"model": [
|
||||
"54",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"50",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"50",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"50",
|
||||
2
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"58": {
|
||||
"inputs": {
|
||||
"add_noise": "disable",
|
||||
"noise_seed": 0,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 3,
|
||||
"end_at_step": 10000,
|
||||
"return_with_leftover_noise": "disable",
|
||||
"model": [
|
||||
"55",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"50",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"50",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"57",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"61": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_i2v_high_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"62": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_i2v_low_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"63": {
|
||||
"inputs": {
|
||||
"frame_rate": 25,
|
||||
"loop_count": 0,
|
||||
"filename_prefix": "wan22_",
|
||||
"format": "video/h264-mp4",
|
||||
"pix_fmt": "yuv420p",
|
||||
"crf": 19,
|
||||
"save_metadata": true,
|
||||
"trim_to_audio": false,
|
||||
"pingpong": false,
|
||||
"save_output": true,
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VHS_VideoCombine",
|
||||
"_meta": {
|
||||
"title": "Video Combine 🎥🅥🅗🅢"
|
||||
}
|
||||
},
|
||||
"64": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"upscale_method": "lanczos",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 16,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"52",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"65": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"61",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"66": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"65",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"67": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"62",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"68": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"67",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"69": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_I2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 3.0000000000000004,
|
||||
"model": [
|
||||
"66",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"70": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_T2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 1.5000000000000002,
|
||||
"model": [
|
||||
"68",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"75": {
|
||||
"inputs": {
|
||||
"model": "4xNomos2_otf_esrgan",
|
||||
"precision": "fp16"
|
||||
},
|
||||
"class_type": "LoadUpscalerTensorrtModel",
|
||||
"_meta": {
|
||||
"title": "Load Upscale Tensorrt Model"
|
||||
}
|
||||
}
|
||||
}
|
||||
348
src/comfyworkflows/generate_video_text.json
Normal file
348
src/comfyworkflows/generate_video_text.json
Normal file
@ -0,0 +1,348 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"text": "色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走",
|
||||
"clip": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Negative Prompt)"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "wan_2.1_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"7",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"26",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"20",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"13",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"14",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"clip_name": "umt5_xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"type": "wan",
|
||||
"device": "cpu"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"12": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_t2v_low_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"13": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_T2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 3.0000000000000004,
|
||||
"model": [
|
||||
"6",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_T2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 1.5000000000000002,
|
||||
"model": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"frame_rate": 16,
|
||||
"loop_count": 0,
|
||||
"filename_prefix": "RADOMVIDEOMAKERVIDEO",
|
||||
"format": "video/h264-mp4",
|
||||
"pix_fmt": "yuv420p",
|
||||
"crf": 19,
|
||||
"save_metadata": true,
|
||||
"trim_to_audio": false,
|
||||
"pingpong": false,
|
||||
"save_output": true,
|
||||
"images": [
|
||||
"32",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VHS_VideoCombine",
|
||||
"_meta": {
|
||||
"title": "Video Combine 🎥🅥🅗🅢"
|
||||
}
|
||||
},
|
||||
"16": {
|
||||
"inputs": {
|
||||
"add_noise": "enable",
|
||||
"noise_seed": 728021180422686,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 0,
|
||||
"end_at_step": 3,
|
||||
"return_with_leftover_noise": "enable",
|
||||
"model": [
|
||||
"9",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"1",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"28",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"17": {
|
||||
"inputs": {
|
||||
"add_noise": "disable",
|
||||
"noise_seed": 0,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 3,
|
||||
"end_at_step": 10000,
|
||||
"return_with_leftover_noise": "disable",
|
||||
"model": [
|
||||
"10",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"27",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"1",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"16",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"18": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"17",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"12",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_t2v_high_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"inputs": {
|
||||
"text": "A lone elven maiden with glowing silver hair walks barefoot through a luminous crystal forest at twilight. Giant bioluminescent mushrooms and floating lanterns light her path. The trees shimmer with glassy bark and refract the moonlight like prisms. Small ethereal spirits dance in the air, leaving trails of soft golden dust. The air is filled with the sound of chimes and distant ancient singing. Camera follows her in slow motion as she reaches a shimmering pool that reflects the stars above — and a hidden portal opens beneath the water’s surface.",
|
||||
"clip": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Positive Prompt)"
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"inputs": {
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"length": 121,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyHunyuanLatentVideo",
|
||||
"_meta": {
|
||||
"title": "EmptyHunyuanLatentVideo"
|
||||
}
|
||||
},
|
||||
"30": {
|
||||
"inputs": {
|
||||
"model": "4xNomos2_otf_esrgan",
|
||||
"precision": "fp16"
|
||||
},
|
||||
"class_type": "LoadUpscalerTensorrtModel",
|
||||
"_meta": {
|
||||
"title": "Load Upscale Tensorrt Model"
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"inputs": {
|
||||
"resize_to": "4k",
|
||||
"images": [
|
||||
"18",
|
||||
0
|
||||
],
|
||||
"upscaler_trt_model": [
|
||||
"30",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "UpscalerTensorrt",
|
||||
"_meta": {
|
||||
"title": "Upscaler Tensorrt ⚡"
|
||||
}
|
||||
},
|
||||
"32": {
|
||||
"inputs": {
|
||||
"ckpt_name": "rife49.pth",
|
||||
"clear_cache_after_n_frames": 10,
|
||||
"multiplier": 2,
|
||||
"fast_mode": true,
|
||||
"ensemble": true,
|
||||
"scale_factor": 1,
|
||||
"frames": [
|
||||
"31",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "RIFE VFI",
|
||||
"_meta": {
|
||||
"title": "RIFE VFI (recommend rife47 and rife49)"
|
||||
}
|
||||
},
|
||||
"33": {
|
||||
"inputs": {
|
||||
"upscale_model": "2xNomosUni_span_multijpg_ldl.pth",
|
||||
"mode": "rescale",
|
||||
"rescale_factor": 2.0000000000000004,
|
||||
"resize_width": 832,
|
||||
"resampling_method": "lanczos",
|
||||
"supersample": "true",
|
||||
"rounding_modulus": 8
|
||||
},
|
||||
"class_type": "CR Upscale Image",
|
||||
"_meta": {
|
||||
"title": "🔍 CR Upscale Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
581
src/comfyworkflows/prototyping_style_flux_wan22.json
Normal file
581
src/comfyworkflows/prototyping_style_flux_wan22.json
Normal file
@ -0,0 +1,581 @@
|
||||
{
|
||||
"70": {
|
||||
"inputs": {
|
||||
"text": "色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走",
|
||||
"clip": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Negative Prompt)"
|
||||
}
|
||||
},
|
||||
"73": {
|
||||
"inputs": {
|
||||
"vae_name": "wan_2.1_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"77",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"77": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"83",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"78": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"79": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"78",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"80": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"89",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"81": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"90",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"82": {
|
||||
"inputs": {
|
||||
"clip_name": "umt5_xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"type": "wan",
|
||||
"device": "cpu"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"83": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_i2v_high_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_i2v_low_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"85": {
|
||||
"inputs": {
|
||||
"frame_rate": 32,
|
||||
"loop_count": 0,
|
||||
"filename_prefix": "STYLEDVIDEOMAKER",
|
||||
"format": "video/h264-mp4",
|
||||
"pix_fmt": "yuv420p",
|
||||
"crf": 19,
|
||||
"save_metadata": true,
|
||||
"trim_to_audio": false,
|
||||
"pingpong": false,
|
||||
"save_output": true,
|
||||
"images": [
|
||||
"88",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VHS_VideoCombine",
|
||||
"_meta": {
|
||||
"title": "Video Combine 🎥🅥🅗🅢"
|
||||
}
|
||||
},
|
||||
"86": {
|
||||
"inputs": {
|
||||
"upscale_model": "4x-UltraSharp.pth",
|
||||
"mode": "rescale",
|
||||
"rescale_factor": 2.0000000000000004,
|
||||
"resize_width": 832,
|
||||
"resampling_method": "lanczos",
|
||||
"supersample": "true",
|
||||
"rounding_modulus": 8
|
||||
},
|
||||
"class_type": "CR Upscale Image",
|
||||
"_meta": {
|
||||
"title": "🔍 CR Upscale Image"
|
||||
}
|
||||
},
|
||||
"87": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"92",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"73",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"88": {
|
||||
"inputs": {
|
||||
"ckpt_name": "rife49.pth",
|
||||
"clear_cache_after_n_frames": 10,
|
||||
"multiplier": 2,
|
||||
"fast_mode": true,
|
||||
"ensemble": true,
|
||||
"scale_factor": 1,
|
||||
"frames": [
|
||||
"98",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "RIFE VFI",
|
||||
"_meta": {
|
||||
"title": "RIFE VFI (recommend rife47 and rife49)"
|
||||
}
|
||||
},
|
||||
"89": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_I2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 3.0000000000000004,
|
||||
"model": [
|
||||
"76",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"90": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_T2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 1.5000000000000002,
|
||||
"model": [
|
||||
"79",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"91": {
|
||||
"inputs": {
|
||||
"add_noise": "enable",
|
||||
"noise_seed": 452107028428,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 0,
|
||||
"end_at_step": 3,
|
||||
"return_with_leftover_noise": "enable",
|
||||
"model": [
|
||||
"80",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"96",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"96",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"96",
|
||||
2
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"92": {
|
||||
"inputs": {
|
||||
"add_noise": "disable",
|
||||
"noise_seed": 0,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 3,
|
||||
"end_at_step": 10000,
|
||||
"return_with_leftover_noise": "disable",
|
||||
"model": [
|
||||
"81",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"96",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"96",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"91",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"93": {
|
||||
"inputs": {
|
||||
"model": "4xNomos2_otf_esrgan",
|
||||
"precision": "fp16"
|
||||
},
|
||||
"class_type": "LoadUpscalerTensorrtModel",
|
||||
"_meta": {
|
||||
"title": "Load Upscale Tensorrt Model"
|
||||
}
|
||||
},
|
||||
"95": {
|
||||
"inputs": {
|
||||
"text": "A luminous ballerina in mid-performance, illustrated in glowing white strokes against a deep black background. She balances gracefully en pointe on one foot, arms extended in a fluid pose, her tutu radiating light and motion like ethereal fabric made of starlight. Her hair flows upward, sketched in swirling white lines, blending with scattered glowing stars around her. The reflection of her figure shimmers on a dark water surface below, surrounded by circular ripples of light. The style is dreamy, abstract, and expressive, combining sketch-like brush strokes with glowing energy lines. High contrast, elegant, surreal ballet illustration.",
|
||||
"clip": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Positive Prompt)"
|
||||
}
|
||||
},
|
||||
"96": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"97",
|
||||
1
|
||||
],
|
||||
"height": [
|
||||
"97",
|
||||
2
|
||||
],
|
||||
"length": 121,
|
||||
"batch_size": 1,
|
||||
"positive": [
|
||||
"95",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"70",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"73",
|
||||
0
|
||||
],
|
||||
"start_image": [
|
||||
"97",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "WanImageToVideo",
|
||||
"_meta": {
|
||||
"title": "WanImageToVideo"
|
||||
}
|
||||
},
|
||||
"97": {
|
||||
"inputs": {
|
||||
"width": 320,
|
||||
"height": 640,
|
||||
"upscale_method": "lanczos",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 16,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"103",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"98": {
|
||||
"inputs": {
|
||||
"resize_to": "4k",
|
||||
"images": [
|
||||
"87",
|
||||
0
|
||||
],
|
||||
"upscaler_trt_model": [
|
||||
"93",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "UpscalerTensorrt",
|
||||
"_meta": {
|
||||
"title": "Upscaler Tensorrt ⚡"
|
||||
}
|
||||
},
|
||||
"99": {
|
||||
"inputs": {
|
||||
"filename_prefix": "STYLEDVIDEOMAKER",
|
||||
"images": [
|
||||
"103",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"100": {
|
||||
"inputs": {
|
||||
"clip_name1": "clip_l.safetensors",
|
||||
"clip_name2": "t5xxl_fp16.safetensors",
|
||||
"type": "flux",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "DualCLIPLoader",
|
||||
"_meta": {
|
||||
"title": "DualCLIPLoader"
|
||||
}
|
||||
},
|
||||
"101": {
|
||||
"inputs": {
|
||||
"vae_name": "ae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"102": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"105",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"103": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"106",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"101",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"104": {
|
||||
"inputs": {
|
||||
"width": 320,
|
||||
"height": 640,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptySD3LatentImage",
|
||||
"_meta": {
|
||||
"title": "EmptySD3LatentImage"
|
||||
}
|
||||
},
|
||||
"105": {
|
||||
"inputs": {
|
||||
"text": "A luminous ballerina in mid-performance, illustrated in glowing white strokes against a deep black background. She balances gracefully en pointe on one foot, arms extended in a fluid pose, her tutu radiating light and motion like ethereal fabric made of starlight. Her hair flows upward, sketched in swirling white lines, blending with scattered glowing stars around her. The reflection of her figure shimmers on a dark water surface below, surrounded by circular ripples of light. The style is dreamy, abstract, and expressive, combining sketch-like brush strokes with glowing energy lines. High contrast, elegant, surreal ballet illustration.",
|
||||
"clip": [
|
||||
"100",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Prompt)"
|
||||
}
|
||||
},
|
||||
"106": {
|
||||
"inputs": {
|
||||
"seed": 84283616550942,
|
||||
"steps": 20,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"107",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"111",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"102",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"104",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"107": {
|
||||
"inputs": {
|
||||
"unet_name": "flux1-krea-dev_fp8_scaled.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"110": {
|
||||
"inputs": {
|
||||
"style_model_name": "flux1-redux-dev.safetensors"
|
||||
},
|
||||
"class_type": "StyleModelLoader",
|
||||
"_meta": {
|
||||
"title": "Load Style Model"
|
||||
}
|
||||
},
|
||||
"111": {
|
||||
"inputs": {
|
||||
"strength": 0.5,
|
||||
"conditioning": [
|
||||
"105",
|
||||
0
|
||||
],
|
||||
"style_model": [
|
||||
"110",
|
||||
0
|
||||
],
|
||||
"clip_vision_output": [
|
||||
"112",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ApplyStyleModelAdjust",
|
||||
"_meta": {
|
||||
"title": "Apply Style Model (Adjusted)"
|
||||
}
|
||||
},
|
||||
"112": {
|
||||
"inputs": {
|
||||
"crop": "center",
|
||||
"clip_vision": [
|
||||
"113",
|
||||
0
|
||||
],
|
||||
"image": [
|
||||
"114",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPVisionEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Vision Encode"
|
||||
}
|
||||
},
|
||||
"113": {
|
||||
"inputs": {
|
||||
"clip_name": "sigclip_vision_patch14_384.safetensors"
|
||||
},
|
||||
"class_type": "CLIPVisionLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP Vision"
|
||||
}
|
||||
},
|
||||
"114": {
|
||||
"inputs": {
|
||||
"image": "440fb3cb2bcc993bdc7da34986a7135d.jpg"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
545
src/comfyworkflows/prototyping_style_flux_wan225b.json
Normal file
545
src/comfyworkflows/prototyping_style_flux_wan225b.json
Normal file
@ -0,0 +1,545 @@
|
||||
{
|
||||
"70": {
|
||||
"inputs": {
|
||||
"text": "色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走",
|
||||
"clip": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Negative Prompt)"
|
||||
}
|
||||
},
|
||||
"73": {
|
||||
"inputs": {
|
||||
"vae_name": "wan_2.1_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"77",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"77": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"83",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"78": {
|
||||
"inputs": {
|
||||
"sage_attention": "sageattn_qk_int8_pv_fp8_cuda++",
|
||||
"model": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PathchSageAttentionKJ",
|
||||
"_meta": {
|
||||
"title": "Patch Sage Attention KJ"
|
||||
}
|
||||
},
|
||||
"79": {
|
||||
"inputs": {
|
||||
"enable_fp16_accumulation": true,
|
||||
"model": [
|
||||
"78",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelPatchTorchSettings",
|
||||
"_meta": {
|
||||
"title": "Model Patch Torch Settings"
|
||||
}
|
||||
},
|
||||
"80": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"89",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"81": {
|
||||
"inputs": {
|
||||
"shift": 8.000000000000002,
|
||||
"model": [
|
||||
"90",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ModelSamplingSD3",
|
||||
"_meta": {
|
||||
"title": "ModelSamplingSD3"
|
||||
}
|
||||
},
|
||||
"82": {
|
||||
"inputs": {
|
||||
"clip_name": "umt5_xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"type": "wan",
|
||||
"device": "cpu"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"83": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_i2v_high_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"unet_name": "wan2.2_i2v_low_noise_14B_Q4_K_S.gguf"
|
||||
},
|
||||
"class_type": "UnetLoaderGGUF",
|
||||
"_meta": {
|
||||
"title": "Unet Loader (GGUF)"
|
||||
}
|
||||
},
|
||||
"85": {
|
||||
"inputs": {
|
||||
"frame_rate": 32,
|
||||
"loop_count": 0,
|
||||
"filename_prefix": "STYLEDVIDEOMAKER",
|
||||
"format": "video/h264-mp4",
|
||||
"pix_fmt": "yuv420p",
|
||||
"crf": 19,
|
||||
"save_metadata": true,
|
||||
"trim_to_audio": false,
|
||||
"pingpong": false,
|
||||
"save_output": true,
|
||||
"images": [
|
||||
"87",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VHS_VideoCombine",
|
||||
"_meta": {
|
||||
"title": "Video Combine 🎥🅥🅗🅢"
|
||||
}
|
||||
},
|
||||
"86": {
|
||||
"inputs": {
|
||||
"upscale_model": "4x-UltraSharp.pth",
|
||||
"mode": "rescale",
|
||||
"rescale_factor": 2.0000000000000004,
|
||||
"resize_width": 832,
|
||||
"resampling_method": "lanczos",
|
||||
"supersample": "true",
|
||||
"rounding_modulus": 8
|
||||
},
|
||||
"class_type": "CR Upscale Image",
|
||||
"_meta": {
|
||||
"title": "🔍 CR Upscale Image"
|
||||
}
|
||||
},
|
||||
"87": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"92",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"73",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"89": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_I2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 3.0000000000000004,
|
||||
"model": [
|
||||
"76",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"90": {
|
||||
"inputs": {
|
||||
"lora_name": "Wan21_T2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors",
|
||||
"strength_model": 1.5000000000000002,
|
||||
"model": [
|
||||
"79",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"91": {
|
||||
"inputs": {
|
||||
"add_noise": "enable",
|
||||
"noise_seed": 452107028428,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 0,
|
||||
"end_at_step": 3,
|
||||
"return_with_leftover_noise": "enable",
|
||||
"model": [
|
||||
"80",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"96",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"96",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"96",
|
||||
2
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"92": {
|
||||
"inputs": {
|
||||
"add_noise": "disable",
|
||||
"noise_seed": 0,
|
||||
"steps": 6,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"start_at_step": 3,
|
||||
"end_at_step": 10000,
|
||||
"return_with_leftover_noise": "disable",
|
||||
"model": [
|
||||
"81",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"96",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"96",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"91",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSamplerAdvanced",
|
||||
"_meta": {
|
||||
"title": "KSampler (Advanced)"
|
||||
}
|
||||
},
|
||||
"94": {
|
||||
"inputs": {
|
||||
"image": "ComfyUI_00036_.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"95": {
|
||||
"inputs": {
|
||||
"text": "A luminous ballerina in mid-performance, illustrated in glowing white strokes against a deep black background. She balances gracefully en pointe on one foot, arms extended in a fluid pose, her tutu radiating light and motion like ethereal fabric made of starlight. Her hair flows upward, sketched in swirling white lines, blending with scattered glowing stars around her. The reflection of her figure shimmers on a dark water surface below, surrounded by circular ripples of light. The style is dreamy, abstract, and expressive, combining sketch-like brush strokes with glowing energy lines. High contrast, elegant, surreal ballet illustration.",
|
||||
"clip": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Positive Prompt)"
|
||||
}
|
||||
},
|
||||
"96": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"97",
|
||||
1
|
||||
],
|
||||
"height": [
|
||||
"97",
|
||||
2
|
||||
],
|
||||
"length": 89,
|
||||
"batch_size": 1,
|
||||
"positive": [
|
||||
"95",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"70",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"73",
|
||||
0
|
||||
],
|
||||
"start_image": [
|
||||
"97",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "WanImageToVideo",
|
||||
"_meta": {
|
||||
"title": "WanImageToVideo"
|
||||
}
|
||||
},
|
||||
"97": {
|
||||
"inputs": {
|
||||
"width": 320,
|
||||
"height": 640,
|
||||
"upscale_method": "lanczos",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 16,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"103",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"99": {
|
||||
"inputs": {
|
||||
"filename_prefix": "STYLEDVIDEOMAKER",
|
||||
"images": [
|
||||
"103",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"100": {
|
||||
"inputs": {
|
||||
"clip_name1": "clip_l.safetensors",
|
||||
"clip_name2": "t5xxl_fp16.safetensors",
|
||||
"type": "flux",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "DualCLIPLoader",
|
||||
"_meta": {
|
||||
"title": "DualCLIPLoader"
|
||||
}
|
||||
},
|
||||
"101": {
|
||||
"inputs": {
|
||||
"vae_name": "ae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"102": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"105",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"103": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"106",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"101",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"104": {
|
||||
"inputs": {
|
||||
"width": 320,
|
||||
"height": 640,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptySD3LatentImage",
|
||||
"_meta": {
|
||||
"title": "EmptySD3LatentImage"
|
||||
}
|
||||
},
|
||||
"105": {
|
||||
"inputs": {
|
||||
"text": "A luminous ballerina in mid-performance, illustrated in glowing white strokes against a deep black background. She balances gracefully en pointe on one foot, arms extended in a fluid pose, her tutu radiating light and motion like ethereal fabric made of starlight. Her hair flows upward, sketched in swirling white lines, blending with scattered glowing stars around her. The reflection of her figure shimmers on a dark water surface below, surrounded by circular ripples of light. The style is dreamy, abstract, and expressive, combining sketch-like brush strokes with glowing energy lines. High contrast, elegant, surreal ballet illustration.",
|
||||
"clip": [
|
||||
"100",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Prompt)"
|
||||
}
|
||||
},
|
||||
"106": {
|
||||
"inputs": {
|
||||
"seed": 84283616550942,
|
||||
"steps": 20,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "simple",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"107",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"111",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"102",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"104",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"107": {
|
||||
"inputs": {
|
||||
"unet_name": "flux1-krea-dev_fp8_scaled.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"110": {
|
||||
"inputs": {
|
||||
"style_model_name": "flux1-redux-dev.safetensors"
|
||||
},
|
||||
"class_type": "StyleModelLoader",
|
||||
"_meta": {
|
||||
"title": "Load Style Model"
|
||||
}
|
||||
},
|
||||
"111": {
|
||||
"inputs": {
|
||||
"strength": 0.15,
|
||||
"conditioning": [
|
||||
"105",
|
||||
0
|
||||
],
|
||||
"style_model": [
|
||||
"110",
|
||||
0
|
||||
],
|
||||
"clip_vision_output": [
|
||||
"112",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ApplyStyleModelAdjust",
|
||||
"_meta": {
|
||||
"title": "Apply Style Model (Adjusted)"
|
||||
}
|
||||
},
|
||||
"112": {
|
||||
"inputs": {
|
||||
"crop": "center",
|
||||
"clip_vision": [
|
||||
"113",
|
||||
0
|
||||
],
|
||||
"image": [
|
||||
"114",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPVisionEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Vision Encode"
|
||||
}
|
||||
},
|
||||
"113": {
|
||||
"inputs": {
|
||||
"clip_name": "sigclip_vision_patch14_384.safetensors"
|
||||
},
|
||||
"class_type": "CLIPVisionLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP Vision"
|
||||
}
|
||||
},
|
||||
"114": {
|
||||
"inputs": {
|
||||
"image": "440fb3cb2bcc993bdc7da34986a7135d.jpg"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
388
src/comfyworkflows/upscale.json
Normal file
388
src/comfyworkflows/upscale.json
Normal file
@ -0,0 +1,388 @@
|
||||
{
|
||||
"4": {
|
||||
"inputs": {
|
||||
"ckpt_name": "dreamshaperXL_v21TurboDPMSDE.safetensors"
|
||||
},
|
||||
"class_type": "CheckpointLoaderSimple",
|
||||
"_meta": {
|
||||
"title": "Load Checkpoint"
|
||||
}
|
||||
},
|
||||
"12": {
|
||||
"inputs": {
|
||||
"seed": 302411063911982,
|
||||
"steps": 8,
|
||||
"cfg": 2,
|
||||
"sampler_name": "dpmpp_sde",
|
||||
"scheduler": "karras",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"65",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"69",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"13",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"13": {
|
||||
"inputs": {
|
||||
"width": 1216,
|
||||
"height": 832,
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"16": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"12",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"4",
|
||||
2
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"36": {
|
||||
"inputs": {
|
||||
"method": "Mixture of Diffusers",
|
||||
"tile_width": 1024,
|
||||
"tile_height": 1024,
|
||||
"tile_overlap": 32,
|
||||
"tile_batch_size": 8,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TiledDiffusion",
|
||||
"_meta": {
|
||||
"title": "Tiled Diffusion"
|
||||
}
|
||||
},
|
||||
"51": {
|
||||
"inputs": {
|
||||
"tile_size": 1024,
|
||||
"fast": false,
|
||||
"samples": [
|
||||
"80",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"4",
|
||||
2
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecodeTiled_TiledDiffusion",
|
||||
"_meta": {
|
||||
"title": "Tiled VAE Decode"
|
||||
}
|
||||
},
|
||||
"65": {
|
||||
"inputs": {
|
||||
"text": "photo of a high end sports car",
|
||||
"clip": [
|
||||
"4",
|
||||
1
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Prompt)"
|
||||
}
|
||||
},
|
||||
"69": {
|
||||
"inputs": {
|
||||
"text": "text, watermark, (film grain, noise:1.2)",
|
||||
"clip": [
|
||||
"4",
|
||||
1
|
||||
]
|
||||
},
|
||||
"class_type": "CLIPTextEncode",
|
||||
"_meta": {
|
||||
"title": "CLIP Text Encode (Prompt)"
|
||||
}
|
||||
},
|
||||
"80": {
|
||||
"inputs": {
|
||||
"seed": 105566927616764,
|
||||
"steps": 4,
|
||||
"cfg": 2,
|
||||
"sampler_name": "dpmpp_sde",
|
||||
"scheduler": "karras",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"36",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"141",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"141",
|
||||
1
|
||||
],
|
||||
"latent_image": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"106",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"107",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"105": {
|
||||
"inputs": {
|
||||
"image": [
|
||||
"115",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "GetImageSizeAndCount",
|
||||
"_meta": {
|
||||
"title": "Get Image Size & Count"
|
||||
}
|
||||
},
|
||||
"106": {
|
||||
"inputs": {
|
||||
"value": "a*b",
|
||||
"a": [
|
||||
"105",
|
||||
1
|
||||
],
|
||||
"b": [
|
||||
"117",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SimpleMath+",
|
||||
"_meta": {
|
||||
"title": "🔧 Simple Math"
|
||||
}
|
||||
},
|
||||
"107": {
|
||||
"inputs": {
|
||||
"value": "a*b",
|
||||
"a": [
|
||||
"105",
|
||||
2
|
||||
],
|
||||
"b": [
|
||||
"117",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SimpleMath+",
|
||||
"_meta": {
|
||||
"title": "🔧 Simple Math"
|
||||
}
|
||||
},
|
||||
"111": {
|
||||
"inputs": {
|
||||
"image": "model_outfit_location_handbag1_1760092227085.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"115": {
|
||||
"inputs": {
|
||||
"any_01": [
|
||||
"111",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Any Switch (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Any Switch (rgthree)"
|
||||
}
|
||||
},
|
||||
"117": {
|
||||
"inputs": {
|
||||
"value": 4.000000000000001
|
||||
},
|
||||
"class_type": "FloatConstant",
|
||||
"_meta": {
|
||||
"title": "Float Constant"
|
||||
}
|
||||
},
|
||||
"133": {
|
||||
"inputs": {
|
||||
"rgthree_comparer": {
|
||||
"images": [
|
||||
{
|
||||
"name": "A",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_ybqmm_00009_.png&type=temp&subfolder=&rand=0.02707950499627365"
|
||||
},
|
||||
{
|
||||
"name": "B",
|
||||
"selected": true,
|
||||
"url": "/api/view?filename=rgthree.compare._temp_ybqmm_00010_.png&type=temp&subfolder=&rand=0.18690183070180255"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image_a": [
|
||||
"115",
|
||||
0
|
||||
],
|
||||
"image_b": [
|
||||
"149",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "Image Comparer (rgthree)",
|
||||
"_meta": {
|
||||
"title": "Image Comparer (rgthree)"
|
||||
}
|
||||
},
|
||||
"141": {
|
||||
"inputs": {
|
||||
"strength": 0.65,
|
||||
"start_percent": 0,
|
||||
"end_percent": 0.9,
|
||||
"positive": [
|
||||
"65",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"69",
|
||||
0
|
||||
],
|
||||
"control_net": [
|
||||
"142",
|
||||
0
|
||||
],
|
||||
"image": [
|
||||
"115",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ACN_AdvancedControlNetApply",
|
||||
"_meta": {
|
||||
"title": "Apply Advanced ControlNet 🛂🅐🅒🅝"
|
||||
}
|
||||
},
|
||||
"142": {
|
||||
"inputs": {
|
||||
"control_net_name": "xinsircontrolnet-tile-sdxl-1.0.safetensors"
|
||||
},
|
||||
"class_type": "ControlNetLoaderAdvanced",
|
||||
"_meta": {
|
||||
"title": "Load Advanced ControlNet Model 🛂🅐🅒🅝"
|
||||
}
|
||||
},
|
||||
"148": {
|
||||
"inputs": {
|
||||
"color_space": "LAB",
|
||||
"factor": 0.8,
|
||||
"device": "auto",
|
||||
"batch_size": 0,
|
||||
"image": [
|
||||
"51",
|
||||
0
|
||||
],
|
||||
"reference": [
|
||||
"115",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageColorMatch+",
|
||||
"_meta": {
|
||||
"title": "🔧 Image Color Match"
|
||||
}
|
||||
},
|
||||
"149": {
|
||||
"inputs": {
|
||||
"sharpen_radius": 1,
|
||||
"sigma": 1,
|
||||
"alpha": 0.05,
|
||||
"image": [
|
||||
"148",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageSharpen",
|
||||
"_meta": {
|
||||
"title": "Image Sharpen"
|
||||
}
|
||||
},
|
||||
"154": {
|
||||
"inputs": {
|
||||
"filename_prefix": "Upscaled",
|
||||
"images": [
|
||||
"149",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"165": {
|
||||
"inputs": {
|
||||
"image": "model_outfit_location_handbag1_1760092227085.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"166": {
|
||||
"inputs": {
|
||||
"filename_prefix": "upscaled",
|
||||
"images": [
|
||||
"149",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
425
src/comfyworkflows/vton.json
Normal file
425
src/comfyworkflows/vton.json
Normal file
@ -0,0 +1,425 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 559577834683401,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"66",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"11",
|
||||
6
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"84",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"82",
|
||||
0
|
||||
],
|
||||
"image3": [
|
||||
"81",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"image": "Allison_body (1).png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenedit",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "图2中的女孩穿着图1的衣服,并以图3的姿势站立。背景保持浅灰色。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"64": {
|
||||
"inputs": {
|
||||
"image": "cloth_0111.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"66": {
|
||||
"inputs": {
|
||||
"lora_name": "extract-outfit_v3.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"67": {
|
||||
"inputs": {
|
||||
"detect_hand": "enable",
|
||||
"detect_body": "enable",
|
||||
"detect_face": "enable",
|
||||
"resolution": 512,
|
||||
"bbox_detector": "yolox_l.onnx",
|
||||
"pose_estimator": "dw-ll_ucoco_384_bs5.torchscript.pt",
|
||||
"scale_stick_for_xinsr_cn": "disable",
|
||||
"image": [
|
||||
"68",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "DWPreprocessor",
|
||||
"_meta": {
|
||||
"title": "DWPose Estimator"
|
||||
}
|
||||
},
|
||||
"68": {
|
||||
"inputs": {
|
||||
"image": "633387441703331_1758877367350_1.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"69": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"81",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"number": 720
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"77": {
|
||||
"inputs": {
|
||||
"number": 1280
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"78": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"81": {
|
||||
"inputs": {
|
||||
"width": 480,
|
||||
"height": 962,
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "pad",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"67",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"82": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "255,255,255",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"15",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"83": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "pad",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"64",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"85": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"86": {
|
||||
"inputs": {
|
||||
"image1_text": "image1",
|
||||
"image2_text": "image2",
|
||||
"image3_text": "image3",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"15",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"64",
|
||||
0
|
||||
],
|
||||
"image3": [
|
||||
"81",
|
||||
0
|
||||
],
|
||||
"image4": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"87": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"86",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"88": {
|
||||
"inputs": {
|
||||
"filename_prefix": "vtonresult/vton",
|
||||
"images": [
|
||||
"87",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
357
src/comfyworkflows/vton_cloth.json
Normal file
357
src/comfyworkflows/vton_cloth.json
Normal file
@ -0,0 +1,357 @@
|
||||
{
|
||||
"1": {
|
||||
"inputs": {
|
||||
"unet_name": "qwen_image_edit_2509_fp8_e4m3fn.safetensors",
|
||||
"weight_dtype": "default"
|
||||
},
|
||||
"class_type": "UNETLoader",
|
||||
"_meta": {
|
||||
"title": "Load Diffusion Model"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"inputs": {
|
||||
"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
|
||||
"type": "qwen_image",
|
||||
"device": "default"
|
||||
},
|
||||
"class_type": "CLIPLoader",
|
||||
"_meta": {
|
||||
"title": "Load CLIP"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"inputs": {
|
||||
"vae_name": "qwen_image_vae.safetensors"
|
||||
},
|
||||
"class_type": "VAELoader",
|
||||
"_meta": {
|
||||
"title": "Load VAE"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"inputs": {
|
||||
"lora_name": "Qwen-Image-Lightning-8steps-V2.0.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"1",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"inputs": {
|
||||
"conditioning": [
|
||||
"11",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ConditioningZeroOut",
|
||||
"_meta": {
|
||||
"title": "ConditioningZeroOut"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"inputs": {
|
||||
"seed": 559577834683401,
|
||||
"steps": 8,
|
||||
"cfg": 1,
|
||||
"sampler_name": "euler",
|
||||
"scheduler": "beta",
|
||||
"denoise": 1,
|
||||
"model": [
|
||||
"66",
|
||||
0
|
||||
],
|
||||
"positive": [
|
||||
"11",
|
||||
0
|
||||
],
|
||||
"negative": [
|
||||
"5",
|
||||
0
|
||||
],
|
||||
"latent_image": [
|
||||
"11",
|
||||
6
|
||||
]
|
||||
},
|
||||
"class_type": "KSampler",
|
||||
"_meta": {
|
||||
"title": "KSampler"
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"inputs": {
|
||||
"samples": [
|
||||
"7",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "VAEDecode",
|
||||
"_meta": {
|
||||
"title": "VAE Decode"
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"inputs": {
|
||||
"prompt": [
|
||||
"21",
|
||||
0
|
||||
],
|
||||
"enable_resize": false,
|
||||
"enable_vl_resize": false,
|
||||
"upscale_method": "lanczos",
|
||||
"crop": "disabled",
|
||||
"instruction": "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n",
|
||||
"clip": [
|
||||
"2",
|
||||
0
|
||||
],
|
||||
"vae": [
|
||||
"3",
|
||||
0
|
||||
],
|
||||
"image1": [
|
||||
"84",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "TextEncodeQwenImageEditPlus_lrzjason",
|
||||
"_meta": {
|
||||
"title": "TextEncodeQwenImageEditPlus 小志Jason(xiaozhijason)"
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"inputs": {
|
||||
"image": "Allison_body (1).png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"filename_prefix": "qwenedit",
|
||||
"images": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"inputs": {
|
||||
"value": "图2中的人物穿着图1的上衣、下装和配饰。"
|
||||
},
|
||||
"class_type": "PrimitiveStringMultiline",
|
||||
"_meta": {
|
||||
"title": "String (Multiline)"
|
||||
}
|
||||
},
|
||||
"64": {
|
||||
"inputs": {
|
||||
"image": "cloth_0111.png"
|
||||
},
|
||||
"class_type": "LoadImage",
|
||||
"_meta": {
|
||||
"title": "Load Image"
|
||||
}
|
||||
},
|
||||
"66": {
|
||||
"inputs": {
|
||||
"lora_name": "extract-outfit_v3.safetensors",
|
||||
"strength_model": 1,
|
||||
"model": [
|
||||
"4",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LoraLoaderModelOnly",
|
||||
"_meta": {
|
||||
"title": "LoraLoaderModelOnly"
|
||||
}
|
||||
},
|
||||
"76": {
|
||||
"inputs": {
|
||||
"number": 720
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"77": {
|
||||
"inputs": {
|
||||
"number": 1280
|
||||
},
|
||||
"class_type": "StaticNumberInt",
|
||||
"_meta": {
|
||||
"title": "Static Number Int"
|
||||
}
|
||||
},
|
||||
"78": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"batch_size": 1
|
||||
},
|
||||
"class_type": "EmptyLatentImage",
|
||||
"_meta": {
|
||||
"title": "Empty Latent Image"
|
||||
}
|
||||
},
|
||||
"82": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "crop",
|
||||
"pad_color": "255,255,255",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"15",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"83": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"82",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"84": {
|
||||
"inputs": {
|
||||
"width": [
|
||||
"76",
|
||||
0
|
||||
],
|
||||
"height": [
|
||||
"77",
|
||||
0
|
||||
],
|
||||
"upscale_method": "nearest-exact",
|
||||
"keep_proportion": "pad",
|
||||
"pad_color": "0, 0, 0",
|
||||
"crop_position": "center",
|
||||
"divisible_by": 2,
|
||||
"device": "cpu",
|
||||
"image": [
|
||||
"64",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "ImageResizeKJv2",
|
||||
"_meta": {
|
||||
"title": "Resize Image v2"
|
||||
}
|
||||
},
|
||||
"85": {
|
||||
"inputs": {
|
||||
"images": [
|
||||
"84",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "PreviewImage",
|
||||
"_meta": {
|
||||
"title": "Preview Image"
|
||||
}
|
||||
},
|
||||
"86": {
|
||||
"inputs": {
|
||||
"image1_text": "image1",
|
||||
"image2_text": "image2",
|
||||
"image3_text": "image3",
|
||||
"image4_text": "image4",
|
||||
"reel_height": 512,
|
||||
"border": 32,
|
||||
"image1": [
|
||||
"15",
|
||||
0
|
||||
],
|
||||
"image2": [
|
||||
"64",
|
||||
0
|
||||
],
|
||||
"image3": [
|
||||
"8",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReel",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel"
|
||||
}
|
||||
},
|
||||
"87": {
|
||||
"inputs": {
|
||||
"font_file": "Alibaba-PuHuiTi-Heavy.ttf",
|
||||
"font_size": 40,
|
||||
"border": 32,
|
||||
"color_theme": "light",
|
||||
"reel_1": [
|
||||
"86",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "LayerUtility: ImageReelComposit",
|
||||
"_meta": {
|
||||
"title": "LayerUtility: Image Reel Composit"
|
||||
}
|
||||
},
|
||||
"88": {
|
||||
"inputs": {
|
||||
"filename_prefix": "vtonresult/vton",
|
||||
"images": [
|
||||
"87",
|
||||
0
|
||||
]
|
||||
},
|
||||
"class_type": "SaveImage",
|
||||
"_meta": {
|
||||
"title": "Save Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
404
src/data/abstract_art_3d_renderings.json
Normal file
404
src/data/abstract_art_3d_renderings.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A surreal landscape composed of abstract 3D shapes with realistic textures and lighting.",
|
||||
"sceneVariants": [
|
||||
"A surreal landscape composed of abstract 3D shapes with realistic textures and lighting.",
|
||||
"Floating geometric solids with intricate surface details.",
|
||||
"Organic 3D forms that defy natural laws.",
|
||||
"A scene that plays with scale, featuring giant abstract sculptures.",
|
||||
"A digital environment with impossible architecture rendered in 3D."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D shapes subtly morph or reconfigure.",
|
||||
"Light interacts realistically with the surfaces, creating reflections and shadows.",
|
||||
"A sense of depth and volume is emphasized.",
|
||||
"The rendering feels tangible and immersive."
|
||||
],
|
||||
"camera": "A camera that moves smoothly through the 3D rendered environment, showcasing the realistic textures and lighting.",
|
||||
"accents": [
|
||||
"Highly detailed textures and materials.",
|
||||
"Realistic lighting effects like global illumination and reflections."
|
||||
],
|
||||
"mood": "realistic yet surreal, immersive, and visually rich",
|
||||
"lighting": "Realistic lighting that enhances the form and texture of the 3D objects, creating depth and atmosphere.",
|
||||
"style": "photorealistic 3D rendering with abstract and surreal elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A minimalist 3D composition, using simple shapes and clean rendering techniques.",
|
||||
"sceneVariants": [
|
||||
"A minimalist 3D composition, using simple shapes and clean rendering techniques.",
|
||||
"A single, smooth geometric form rendered with flat shading.",
|
||||
"A composition of basic shapes with subtle gradients.",
|
||||
"A scene that relies on form and negative space, with minimal detail.",
|
||||
"A clean, wireframe rendering of an abstract object."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D shapes subtly rotate or shift position.",
|
||||
"A gentle change in color or shading.",
|
||||
"A sense of clean design and precision.",
|
||||
"The rendering feels polished and uncluttered."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and simple forms of the minimalist 3D rendering.",
|
||||
"accents": [
|
||||
"Perfectly smooth surfaces and clean edges.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, simple, and precise",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and simplicity of the 3D objects.",
|
||||
"style": "minimalist 3D rendering with clean shapes and shading"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A dynamic 3D rendering with energetic movement and complex forms.",
|
||||
"sceneVariants": [
|
||||
"A dynamic 3D rendering with energetic movement and complex forms.",
|
||||
"Abstract 3D shapes colliding and exploding.",
|
||||
"A swirling vortex of 3D geometric elements.",
|
||||
"A scene with fast-moving, intricate 3D structures.",
|
||||
"Objects that appear to be in a state of constant transformation."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D elements move with high energy and speed.",
|
||||
"Particles and debris fly across the screen.",
|
||||
"A sense of intense visual activity.",
|
||||
"The rendering feels powerful and dynamic."
|
||||
],
|
||||
"camera": "Fast-paced, dynamic camera that follows the energetic movement of the 3D elements, with quick cuts and dramatic angles.",
|
||||
"accents": [
|
||||
"Bright, saturated colors.",
|
||||
"Motion blur and particle effects to enhance the sense of speed."
|
||||
],
|
||||
"mood": "energetic, dynamic, and visually intense",
|
||||
"lighting": "Bright, high-contrast lighting that makes the forms and movement pop.",
|
||||
"style": "dynamic 3D rendering with energetic motion"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A dark, atmospheric 3D rendering with a focus on mood and texture.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric 3D rendering with a focus on mood and texture.",
|
||||
"A scene with deep shadows and subtle, glowing elements.",
|
||||
"Objects with rough, detailed textures that create a sense of realism.",
|
||||
"A landscape rendered with a focus on atmospheric effects like fog or dust.",
|
||||
"A composition that relies on the interplay of light and shadow."
|
||||
],
|
||||
"actions": [
|
||||
"The textures subtly shift or change.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of quiet depth and mystery.",
|
||||
"The rendering feels tangible and immersive."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the textures and atmospheric effects.",
|
||||
"accents": [
|
||||
"Highly detailed textures, including roughness and imperfections.",
|
||||
"Subtle volumetric lighting effects."
|
||||
],
|
||||
"mood": "atmospheric, mysterious, and textured",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and creates a strong sense of mood.",
|
||||
"style": "atmospheric 3D rendering with detailed textures"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A playful and colorful 3D rendering, using simple shapes and cheerful textures.",
|
||||
"sceneVariants": [
|
||||
"A playful and colorful 3D rendering, using simple shapes and cheerful textures.",
|
||||
"3D objects with bright, cartoonish textures.",
|
||||
"A scene with simple geometric forms interacting in a cheerful way.",
|
||||
"A rendering that feels lighthearted and fun.",
|
||||
"Bright colors used to create a sense of joy."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D objects gently animate or interact.",
|
||||
"Colors and textures shift in a cheerful manner.",
|
||||
"A sense of childlike wonder and simplicity.",
|
||||
"The rendering feels uncomplicated and joyful."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the cheerful nature of the 3D rendering.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors and textures.",
|
||||
"Soft, rounded edges on some elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and simple",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "playful 3D rendering with cheerful textures"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A close-up of intricate 3D details, such as complex geometry, fine textures, or realistic material properties.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate 3D details, such as complex geometry, fine textures, or realistic material properties.",
|
||||
"A detailed view of a complex 3D model.",
|
||||
"The texture of a realistic material like brushed metal or rough stone.",
|
||||
"The interplay of light on a highly detailed surface.",
|
||||
"The fine geometry of a complex 3D object."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's skill in modeling and texturing.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between 3D elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the 3D details.",
|
||||
"Subtle internal glow or luminescence within the rendered elements."
|
||||
],
|
||||
"mood": "detailed, intricate, and realistic",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the 3D rendering.",
|
||||
"style": "macro 3D rendering with focus on detail and realism"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A futuristic 3D rendering, incorporating elements of technology and advanced design.",
|
||||
"sceneVariants": [
|
||||
"A futuristic 3D rendering, incorporating elements of technology and advanced design.",
|
||||
"3D models of sleek, futuristic vehicles or architecture.",
|
||||
"A scene depicting advanced robotics or cybernetic elements.",
|
||||
"A virtual reality environment rendered with high fidelity.",
|
||||
"Renderings that showcase cutting-edge 3D modeling and rendering techniques."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D elements pulse with light or energy.",
|
||||
"Digital or holographic effects appear and disappear.",
|
||||
"A sense of advanced technology and design.",
|
||||
"The rendering feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the 3D rendering.",
|
||||
"accents": [
|
||||
"Sleek, metallic textures and clean lines.",
|
||||
"Glowing elements and emissive materials."
|
||||
],
|
||||
"mood": "futuristic, sleek, and technologically advanced",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic 3D rendering with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through 3D rendering.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through 3D rendering.",
|
||||
"3D models of abandoned buildings with realistic decay textures.",
|
||||
"A contrast between decaying structures and vibrant 3D elements.",
|
||||
"The transformation of a derelict space through 3D artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through 3D."
|
||||
],
|
||||
"actions": [
|
||||
"The 3D elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the environment that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The rendering breathes life into forgotten spaces."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant 3D elements.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, rendered surfaces.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the 3D elements.",
|
||||
"style": "3D rendering exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A minimalist 3D landscape, where simple 3D elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist 3D landscape, where simple 3D elements are placed in a vast environment.",
|
||||
"A single, clean geometric shape in a large, empty space.",
|
||||
"A few scattered subtle 3D forms across a scene.",
|
||||
"A subtle 3D element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the 3D rendering."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist 3D elements subtly shift or align.",
|
||||
"A gentle change in form or shading.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The rendering feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist 3D rendering within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and precise",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the 3D elements.",
|
||||
"style": "minimalist 3D rendering in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A dark, moody scene featuring sharp, angular 3D shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular 3D shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken 3D forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive 3D architecture.",
|
||||
"A composition of colliding, fragmented 3D shards.",
|
||||
"A shadowy figure composed of sharp, abstract 3D planes."
|
||||
],
|
||||
"actions": [
|
||||
"3D shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the 3D forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the 3D shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark 3D rendering with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting 3D patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting 3D patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of 3D shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent 3D forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of 3D elements in a flat design style.",
|
||||
"A composition that plays with perspective, making 3D shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"3D patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the 3D elements.",
|
||||
"New 3D patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of 3D elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all 3D forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into 3D components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into 3D components.",
|
||||
"A clock face made of interlocking 3D gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of 3D triangles.",
|
||||
"A tree with branches made of sharp, crystalline 3D structures.",
|
||||
"A floating island composed of stacked 3D blocks."
|
||||
],
|
||||
"actions": [
|
||||
"3D components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from 3D parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal 3D environment, focusing on the 3D deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key 3D elements.",
|
||||
"style": "surreal digital art with a focus on 3D abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex 3D structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex 3D structures.",
|
||||
"A skyscraper that twists and curves like a 3D helix made of segments.",
|
||||
"A city where all structures are based on repeating 3D modules.",
|
||||
"A space station with a complex, multi-faceted 3D design.",
|
||||
"An interior of a futuristic vehicle with 3D control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the 3D lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic 3D displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic 3D architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated 3D edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with 3D emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A close-up view of intricate 3D patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate 3D patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A 3D pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming 3D lattices.",
|
||||
"A complex network of interconnected 3D lines and nodes.",
|
||||
"A pattern that appears to be woven from 3D threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual 3D elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the 3D pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between 3D elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the 3D details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the 3D patterns.",
|
||||
"style": "macro photography of intricate 3D patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A playful scene where simple 3D patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple 3D patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of 3D cubes and cylinders.",
|
||||
"A car constructed from 3D spheres and rectangles.",
|
||||
"A house built from stacked 3D blocks.",
|
||||
"A friendly monster composed of various 3D forms."
|
||||
],
|
||||
"actions": [
|
||||
"3D characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the 3D creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the 3D characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some 3D elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "3D character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "3D Renderings",
|
||||
"scene": "A dark, moody scene featuring sharp, angular 3D shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular 3D shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken 3D forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive 3D architecture.",
|
||||
"A composition of colliding, fragmented 3D shards.",
|
||||
"A shadowy figure composed of sharp, abstract 3D planes."
|
||||
],
|
||||
"actions": [
|
||||
"3D shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the 3D forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the 3D shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark 3D rendering with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_abstract_portraits.json
Normal file
404
src/data/abstract_art_abstract_portraits.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A portrait that deconstructs facial features into abstract shapes, colors, and textures, conveying emotion or essence rather than likeness.",
|
||||
"sceneVariants": [
|
||||
"A portrait that deconstructs facial features into abstract shapes, colors, and textures, conveying emotion or essence rather than likeness.",
|
||||
"A face formed by swirling colors and energetic brushstrokes.",
|
||||
"A portrait where features are suggested through geometric abstraction.",
|
||||
"An abstract representation of a person's inner state.",
|
||||
"A portrait that uses color fields and textures to evoke a personality."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements subtly shift or blend.",
|
||||
"Colors interact to create new emotional tones.",
|
||||
"A sense of dynamic expression and interpretation.",
|
||||
"The portrait feels alive with abstract energy."
|
||||
],
|
||||
"camera": "A camera that moves across the abstract portrait, highlighting the interplay of shapes, colors, and textures.",
|
||||
"accents": [
|
||||
"Bold, expressive colors.",
|
||||
"Visible brushstrokes or textural elements."
|
||||
],
|
||||
"mood": "expressive, abstract, and emotional",
|
||||
"lighting": "Lighting that emphasizes the abstract forms and colors, perhaps with dramatic contrasts or soft diffusion.",
|
||||
"style": "abstract portraits with expressive shapes and colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A minimalist abstract portrait, using a limited palette and simple forms to suggest a face or personality.",
|
||||
"sceneVariants": [
|
||||
"A minimalist abstract portrait, using a limited palette and simple forms to suggest a face or personality.",
|
||||
"A single line or shape that evokes a facial profile.",
|
||||
"A composition with only a few key color elements suggesting features.",
|
||||
"A focus on negative space to highlight the abstract representation.",
|
||||
"A portrait with clean lines and a restrained color scheme."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements subtly shift or align.",
|
||||
"A gentle change in opacity or color.",
|
||||
"A sense of clean design and deliberate placement.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise arrangement of the minimalist portrait.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, refined, and suggestive",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and arrangement of the abstract elements.",
|
||||
"style": "minimalist abstract portraits with simple forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A surreal abstract portrait, blending recognizable features with illogical or dreamlike elements.",
|
||||
"sceneVariants": [
|
||||
"A surreal abstract portrait, blending recognizable features with illogical or dreamlike elements.",
|
||||
"Facial features distorted or placed in unexpected contexts.",
|
||||
"A portrait that combines abstract shapes with fragmented realistic elements.",
|
||||
"Portraits that seem to represent inner thoughts or subconscious states.",
|
||||
"Faces that dissolve into abstract patterns."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements subtly morph or change context.",
|
||||
"A sense of playful absurdity.",
|
||||
"The artwork blurs the lines between reality and imagination.",
|
||||
"The portrait feels like a visual representation of a dream."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal juxtapositions and illogical combinations within the portrait.",
|
||||
"accents": [
|
||||
"Unusual combinations of colors and forms.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, dreamlike, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the portrait, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal abstract portraits with dreamlike elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A dark, moody abstract portrait with a gritty, textured aesthetic, conveying intense emotion.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody abstract portrait with a gritty, textured aesthetic, conveying intense emotion.",
|
||||
"Portraits with rough textures and distressed effects.",
|
||||
"A composition of impactful abstract forms in a stark setting.",
|
||||
"Abstract portraits that convey a sense of inner turmoil or melancholy.",
|
||||
"Weathered abstract elements with fragmented forms."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements appear to shift or fade subtly.",
|
||||
"A sense of raw emotion and intense expression.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the abstract portrait.",
|
||||
"accents": [
|
||||
"Rough textures and distressed surfaces.",
|
||||
"Deep, dark shadows that obscure details."
|
||||
],
|
||||
"mood": "gritty, emotional, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and mood of the portrait.",
|
||||
"style": "dark abstract portraits with a gritty, emotional aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A vibrant, abstract portrait composition, focusing on color and energetic forms.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract portrait composition, focusing on color and energetic forms.",
|
||||
"A dynamic interplay of colors and shapes creating abstract facial features.",
|
||||
"Abstract elements that form suggested portraits.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of emotion and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve.",
|
||||
"A sense of pure visual energy and emotion.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and energy in the abstract portrait.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting abstract forms and energetic lines."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract portraits with focus on color and energetic forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A close-up of intricate abstract portrait details, such as layered textures, subtle color variations, or fine lines.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate abstract portrait details, such as layered textures, subtle color variations, or fine lines.",
|
||||
"A detailed view of layered abstract elements.",
|
||||
"The texture of paint or digital effects on abstract forms.",
|
||||
"The fine details of how colors and shapes interact.",
|
||||
"The interplay of different abstract elements creating a complex surface."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's technique in layering and form.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between abstract elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the abstract details.",
|
||||
"Subtle internal glow or luminescence within the elements."
|
||||
],
|
||||
"mood": "detailed, intricate, and expressive",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the abstract portrait.",
|
||||
"style": "macro abstract portraits with focus on detail and texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A futuristic abstract portrait, incorporating elements of technology and advanced visual design.",
|
||||
"sceneVariants": [
|
||||
"A futuristic abstract portrait, incorporating elements of technology and advanced visual design.",
|
||||
"Portraits with neon colors and digital interfaces.",
|
||||
"A scene depicting futuristic faces or cybernetic elements in an abstract style.",
|
||||
"Abstract portraits that respond to viewer interaction.",
|
||||
"Artwork that blends digital aesthetics with abstract portraiture."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements pulse with light or digital effects.",
|
||||
"Digital glitches and futuristic interfaces appear and disappear.",
|
||||
"A sense of advanced visual technology.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the abstract portrait.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures combined with abstract forms."
|
||||
],
|
||||
"mood": "futuristic, digital, and dynamic",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic abstract portraits with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through abstract portraiture.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through abstract portraiture.",
|
||||
"Abstract portraits appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant abstract faces.",
|
||||
"The transformation of a derelict space through abstract artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through fragmented emotional expression."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the composition that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten spaces with its emotional depth."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant abstract portraits.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, abstract forms.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and emotional",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the abstract elements.",
|
||||
"style": "abstract portraiture exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A minimalist abstract portrait landscape, where simple forms suggest a face in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist abstract portrait landscape, where simple forms suggest a face in a vast environment.",
|
||||
"A single, clean shape suggesting a profile.",
|
||||
"A few scattered subtle abstract elements across a scene.",
|
||||
"A subtle abstract element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the portrait."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist abstract elements subtly shift or align.",
|
||||
"A gentle change in opacity or placement.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist portrait within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and suggestive",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and arrangement of the abstract elements.",
|
||||
"style": "minimalist abstract portraits in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A dark, moody scene featuring sharp, angular abstract shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular abstract shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken abstract forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive abstract architecture.",
|
||||
"A composition of colliding, fragmented abstract shards.",
|
||||
"A shadowy figure composed of sharp, abstract planes."
|
||||
],
|
||||
"actions": [
|
||||
"Abstract shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the abstract forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the abstract shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark abstract portraits with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of elements in a flat design style.",
|
||||
"A composition that plays with perspective, making shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"The abstract patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the abstract elements.",
|
||||
"New abstract patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of abstract elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all abstract forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into abstract components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into abstract components.",
|
||||
"A clock face made of interlocking abstract gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of abstract triangles.",
|
||||
"A tree with branches made of sharp, crystalline abstract structures.",
|
||||
"A floating island composed of stacked abstract blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Abstract components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from abstract parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal abstract environment, focusing on the deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key abstract elements.",
|
||||
"style": "surreal digital art with a focus on abstract art"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex abstract structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex abstract structures.",
|
||||
"A skyscraper that twists and curves like an abstract helix made of segments.",
|
||||
"A city where all structures are based on repeating abstract modules.",
|
||||
"A space station with a complex, multi-faceted abstract design.",
|
||||
"An interior of a futuristic vehicle with abstract control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the abstract lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic abstract displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic abstract architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated abstract edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with abstract emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A close-up view of intricate abstract patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate abstract patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"An abstract pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming abstract lattices.",
|
||||
"A complex network of interconnected abstract lines and nodes.",
|
||||
"A pattern that appears to be woven from abstract threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual abstract elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the abstract pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between abstract elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the abstract details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the abstract patterns.",
|
||||
"style": "macro photography of intricate abstract patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A playful scene where simple abstract patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple abstract patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of abstract cubes and cylinders.",
|
||||
"A car constructed from abstract spheres and rectangles.",
|
||||
"A house built from stacked abstract blocks.",
|
||||
"A friendly monster composed of various abstract forms."
|
||||
],
|
||||
"actions": [
|
||||
"Abstract characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the abstract creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the abstract characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some abstract elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "abstract character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Abstract Portraits",
|
||||
"scene": "A dark, moody scene featuring sharp, angular abstract shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular abstract shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken abstract forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive abstract architecture.",
|
||||
"A composition of colliding, fragmented abstract shards.",
|
||||
"A shadowy figure composed of sharp, abstract planes."
|
||||
],
|
||||
"actions": [
|
||||
"Abstract shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the abstract forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the abstract shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark abstract portraits with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_collage.json
Normal file
404
src/data/abstract_art_collage.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A vibrant collage composed of diverse elements like torn paper, photographs, and painted textures, arranged in an abstract composition.",
|
||||
"sceneVariants": [
|
||||
"A vibrant collage composed of diverse elements like torn paper, photographs, and painted textures, arranged in an abstract composition.",
|
||||
"A collage featuring layered fragments of text and imagery.",
|
||||
"A digital collage with glitch effects and overlapping elements.",
|
||||
"A surreal collage where disparate objects are combined in illogical ways.",
|
||||
"A textured collage with a focus on tactile surfaces."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements subtly shift or rearrange.",
|
||||
"New layers of texture or imagery appear.",
|
||||
"A sense of depth and complexity through layering.",
|
||||
"The composition feels dynamic and evolving."
|
||||
],
|
||||
"camera": "A camera that moves across the collage, highlighting the different textures, layers, and elements.",
|
||||
"accents": [
|
||||
"Visible textures of paper, paint, or digital artifacts.",
|
||||
"Interesting juxtapositions of different materials and styles."
|
||||
],
|
||||
"mood": "diverse, textured, and layered",
|
||||
"lighting": "Lighting that emphasizes the textures and depth of the collage, perhaps with directional light creating subtle shadows.",
|
||||
"style": "abstract collage with diverse textures and layered elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A minimalist collage using only a few carefully selected elements and a limited color palette.",
|
||||
"sceneVariants": [
|
||||
"A minimalist collage using only a few carefully selected elements and a limited color palette.",
|
||||
"A composition with torn paper fragments in muted tones.",
|
||||
"A collage featuring a single photograph with minimal added elements.",
|
||||
"A digital collage with sparse, clean lines and shapes.",
|
||||
"A focus on negative space and the arrangement of a few key pieces."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements subtly shift or align.",
|
||||
"A gentle change in opacity or color.",
|
||||
"A sense of clean design and deliberate placement.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise arrangement of the minimalist collage.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on the collage elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, refined, and understated",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and arrangement of the collage elements.",
|
||||
"style": "minimalist collage with sparse elements and limited palette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A surreal collage where disparate elements are combined in illogical or dreamlike ways.",
|
||||
"sceneVariants": [
|
||||
"A surreal collage where disparate elements are combined in illogical or dreamlike ways.",
|
||||
"Objects from different contexts placed together to create a strange narrative.",
|
||||
"A dreamscape constructed from fragmented images.",
|
||||
"A collage that plays with scale and perspective in unexpected ways.",
|
||||
"Elements that seem to defy logic and reality."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements subtly morph or change context.",
|
||||
"A sense of magical realism through unexpected combinations.",
|
||||
"The artwork blurs the lines between different realities.",
|
||||
"The collage feels like a visual representation of a dream."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal juxtapositions and illogical combinations within the collage.",
|
||||
"accents": [
|
||||
"Unusual combinations of textures and imagery.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, dreamlike, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the collage, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal collage with dreamlike and illogical combinations"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A dark, moody collage with a gritty, textured aesthetic.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody collage with a gritty, textured aesthetic.",
|
||||
"Collage elements with rough textures and distressed surfaces.",
|
||||
"A mural featuring dark, imposing imagery combined with torn paper.",
|
||||
"A collage that conveys a sense of urban decay or melancholy.",
|
||||
"A weathered collage with peeling paint and fragmented elements."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements appear to shift or fade subtly.",
|
||||
"A sense of grit and raw texture.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the collage.",
|
||||
"accents": [
|
||||
"Rough textures and distressed surfaces.",
|
||||
"Deep, dark shadows that obscure details."
|
||||
],
|
||||
"mood": "gritty, textured, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and mood of the collage.",
|
||||
"style": "dark textured collage with a gritty aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A vibrant, abstract collage composition, focusing on color and form created by diverse elements.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract collage composition, focusing on color and form created by diverse elements.",
|
||||
"A dynamic interplay of colors and textures forming abstract patterns.",
|
||||
"Collage elements that create abstract shapes and forms.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of joy and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve.",
|
||||
"A sense of pure visual energy and playfulness.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and form in the abstract collage.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting textures and material contrasts."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract collage with focus on color and form"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A close-up of intricate collage details, such as layered textures, torn edges, or photographic fragments.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate collage details, such as layered textures, torn edges, or photographic fragments.",
|
||||
"A detailed view of overlapping paper fragments.",
|
||||
"The texture of torn edges and pasted elements.",
|
||||
"The fine details of photographic elements within the collage.",
|
||||
"The interplay of different materials creating a complex surface."
|
||||
],
|
||||
"actions": [
|
||||
"The collage details subtly shift or animate.",
|
||||
"Light plays across the textures in interesting ways.",
|
||||
"A sense of the artist's technique in layering and assembling.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between collage elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the collage details.",
|
||||
"Subtle internal glow or luminescence within the layered elements."
|
||||
],
|
||||
"mood": "detailed, intricate, and textural",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the collage.",
|
||||
"style": "macro collage with focus on detail and texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A futuristic collage artwork, incorporating elements of technology and digital manipulation.",
|
||||
"sceneVariants": [
|
||||
"A futuristic collage artwork, incorporating elements of technology and digital manipulation.",
|
||||
"Collage elements with glitch effects and digital artifacts.",
|
||||
"A scene depicting futuristic environments combined with traditional collage techniques.",
|
||||
"Collage that uses interactive or responsive elements.",
|
||||
"Artwork that blends digital collage with physical materials."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements pulse with digital effects or respond to interaction.",
|
||||
"Digital glitches and artifacts appear and disappear.",
|
||||
"A sense of advanced digital culture.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the collage.",
|
||||
"accents": [
|
||||
"Digital textures and glitch effects.",
|
||||
"Sleek, metallic elements combined with paper or photographic fragments."
|
||||
],
|
||||
"mood": "futuristic, digital, and dynamic",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic collage with digital and technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through collage.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through collage.",
|
||||
"Collage elements appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant collage pieces.",
|
||||
"The transformation of a derelict space through collage intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through fragmented narratives."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the composition that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten spaces with its layered narratives."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant collage elements.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, layered collage pieces.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and narrative",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the collage elements.",
|
||||
"style": "collage exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A minimalist collage landscape, where simple collage elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist collage landscape, where simple collage elements are placed in a vast environment.",
|
||||
"A single, clean paper fragment on a large, blank surface.",
|
||||
"A few scattered subtle collage elements across a scene.",
|
||||
"A subtle collage element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the collage."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist collage elements subtly shift or align.",
|
||||
"A gentle change in opacity or placement.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist collage within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and precise",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and arrangement of the collage elements.",
|
||||
"style": "minimalist collage in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A dark, moody scene featuring sharp, angular collage shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular collage shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken collage forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive collage architecture.",
|
||||
"A composition of colliding, fragmented collage shards.",
|
||||
"A shadowy figure composed of sharp, abstract collage planes."
|
||||
],
|
||||
"actions": [
|
||||
"Collage shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the collage forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the collage shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark collage with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting collage patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting collage patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of collage shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent collage forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of collage elements in a flat design style.",
|
||||
"A composition that plays with perspective, making collage shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Collage patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the collage elements.",
|
||||
"New collage patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of collage elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all collage forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into collage components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into collage components.",
|
||||
"A clock face made of interlocking collage gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of collage triangles.",
|
||||
"A tree with branches made of sharp, crystalline collage structures.",
|
||||
"A floating island composed of stacked collage blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Collage components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from collage parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal collage environment, focusing on the collage deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key collage elements.",
|
||||
"style": "surreal digital art with a focus on collage abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex collage structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex collage structures.",
|
||||
"A skyscraper that twists and curves like a collage helix made of segments.",
|
||||
"A city where all structures are based on repeating collage modules.",
|
||||
"A space station with a complex, multi-faceted collage design.",
|
||||
"An interior of a futuristic vehicle with collage control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the collage lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic collage displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic collage architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated collage edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with collage emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A close-up view of intricate collage patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate collage patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A collage pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming collage lattices.",
|
||||
"A complex network of interconnected collage lines and nodes.",
|
||||
"A pattern that appears to be woven from collage threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual collage elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the collage pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between collage elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the collage details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the collage patterns.",
|
||||
"style": "macro photography of intricate collage patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A playful scene where simple collage patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple collage patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of collage cubes and cylinders.",
|
||||
"A car constructed from collage spheres and rectangles.",
|
||||
"A house built from stacked collage blocks.",
|
||||
"A friendly monster composed of various collage forms."
|
||||
],
|
||||
"actions": [
|
||||
"Collage characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the collage creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the collage characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some collage elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "collage character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Collage",
|
||||
"scene": "A dark, moody scene featuring sharp, angular collage shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular collage shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken collage forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive collage architecture.",
|
||||
"A composition of colliding, fragmented collage shards.",
|
||||
"A shadowy figure composed of sharp, abstract collage planes."
|
||||
],
|
||||
"actions": [
|
||||
"Collage shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the collage forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the collage shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark collage with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_color_explosions.json
Normal file
404
src/data/abstract_art_color_explosions.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A dynamic and vibrant scene where colors burst and blend, creating an abstract representation of energy and emotion.",
|
||||
"sceneVariants": [
|
||||
"A dynamic and vibrant scene where colors burst and blend, creating an abstract representation of energy and emotion.",
|
||||
"Splashes of paint exploding outwards in a chaotic yet beautiful manner.",
|
||||
"A nebula of swirling, vibrant colors in deep space.",
|
||||
"Abstract forms created by the collision of colorful particles.",
|
||||
"A visual representation of sound or music through color bursts."
|
||||
],
|
||||
"actions": [
|
||||
"Colors rapidly expand and mix.",
|
||||
"Particles of color fly in all directions.",
|
||||
"A sense of explosive energy and constant transformation.",
|
||||
"The colors seem to have a life of their own."
|
||||
],
|
||||
"camera": "Fast-paced, dynamic camera that follows the explosive movement of colors, with quick cuts and energetic movements.",
|
||||
"accents": [
|
||||
"Bright, saturated colors that create a high-energy visual.",
|
||||
"Sparkling or glowing effects on the color particles."
|
||||
],
|
||||
"mood": "energetic, vibrant, and explosive",
|
||||
"lighting": "Bright, high-contrast lighting that makes the colors and movement pop.",
|
||||
"style": "abstract color explosions with dynamic energy"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A minimalist color explosion, using a limited palette and simple forms to create a subtle yet impactful visual.",
|
||||
"sceneVariants": [
|
||||
"A minimalist color explosion, using a limited palette and simple forms to create a subtle yet impactful visual.",
|
||||
"A single, soft burst of color against a dark background.",
|
||||
"A gentle gradient of colors that subtly blend.",
|
||||
"A composition with only a few key color elements.",
|
||||
"A focus on negative space to highlight the color interaction."
|
||||
],
|
||||
"actions": [
|
||||
"The color elements subtly blend or shift.",
|
||||
"A gentle change in hue or saturation.",
|
||||
"A sense of calm and quietude.",
|
||||
"The color interaction feels soft and unobtrusive."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle color blending and minimalist forms.",
|
||||
"accents": [
|
||||
"Soft, diffused colors.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "calm, subtle, and harmonious",
|
||||
"lighting": "Soft, diffused lighting that emphasizes the color blending.",
|
||||
"style": "minimalist color explosions with subtle blending"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A surreal color explosion, where colors form illogical or dreamlike shapes and patterns.",
|
||||
"sceneVariants": [
|
||||
"A surreal color explosion, where colors form illogical or dreamlike shapes and patterns.",
|
||||
"Splashes of color that defy gravity and logic.",
|
||||
"A scene where colors blend into impossible forms.",
|
||||
"Abstract color patterns that suggest hidden meanings.",
|
||||
"Colors that seem to have a life of their own, creating visual paradoxes."
|
||||
],
|
||||
"actions": [
|
||||
"The color elements subtly morph or change context.",
|
||||
"A sense of magical realism through unexpected color combinations.",
|
||||
"The artwork blurs the lines between reality and imagination.",
|
||||
"The color explosion feels like a visual representation of a dream."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal color phenomena and illogical shapes.",
|
||||
"accents": [
|
||||
"Unusual color combinations that evoke a sense of the uncanny.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, dreamlike, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the color explosion, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal color explosions with dreamlike color forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A dark, atmospheric color explosion, focusing on mood and the interplay of vibrant colors against a dark background.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric color explosion, focusing on mood and the interplay of vibrant colors against a dark background.",
|
||||
"Splashes of intense color emerging from deep shadows.",
|
||||
"A scene with subtle, glowing color elements.",
|
||||
"A composition that relies on the contrast between dark tones and vibrant hues.",
|
||||
"Colors that seem to pulse with energy in the darkness."
|
||||
],
|
||||
"actions": [
|
||||
"The vibrant colors subtly shift or intensify.",
|
||||
"Shadows play a significant role in defining the color forms.",
|
||||
"A sense of quiet mystery and intense visual focus.",
|
||||
"The atmosphere feels subdued yet visually striking."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the contrast between dark and vibrant colors.",
|
||||
"accents": [
|
||||
"Deep, dark backgrounds.",
|
||||
"Intense, saturated colors with glowing edges."
|
||||
],
|
||||
"mood": "atmospheric, intense, and striking",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the vibrant colors against the dark background.",
|
||||
"style": "dark atmospheric color explosions with vibrant contrasts"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting color patterns in bright, bold hues.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting color patterns in bright, bold hues.",
|
||||
"A dynamic arrangement of color splashes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent color forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of color elements.",
|
||||
"A composition that plays with color interaction in a lively way."
|
||||
],
|
||||
"actions": [
|
||||
"The color elements blend and interact dynamically.",
|
||||
"Abstract color forms shift and evolve.",
|
||||
"A sense of pure visual energy and playfulness.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and energy in the abstract composition.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting color interactions and transitions."
|
||||
],
|
||||
"mood": "lively, dynamic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract color compositions with bold hues"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A close-up of intricate color details, such as fine color gradients, subtle textures, or the blending of hues.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate color details, such as fine color gradients, subtle textures, or the blending of hues.",
|
||||
"A detailed view of smooth color transitions.",
|
||||
"The texture created by paint or digital effects.",
|
||||
"The fine details of how colors interact and blend.",
|
||||
"The interplay of different colors creating a complex visual surface."
|
||||
],
|
||||
"actions": [
|
||||
"The color details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's skill in color manipulation.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between color elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the color details.",
|
||||
"Subtle internal glow or luminescence within the colors."
|
||||
],
|
||||
"mood": "detailed, intricate, and vibrant",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the color patterns.",
|
||||
"style": "macro color details with focus on gradients and blending"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A futuristic color explosion, incorporating elements of technology and advanced visual effects.",
|
||||
"sceneVariants": [
|
||||
"A futuristic color explosion, incorporating elements of technology and advanced visual effects.",
|
||||
"Color bursts created with holographic displays or digital effects.",
|
||||
"A scene depicting futuristic environments with mind-bending color phenomena.",
|
||||
"Color explosions that respond to viewer interaction.",
|
||||
"Renderings that showcase cutting-edge visual effects for color dynamics."
|
||||
],
|
||||
"actions": [
|
||||
"The color elements pulse with light or respond to interaction.",
|
||||
"Digital glitches and futuristic color effects appear and disappear.",
|
||||
"A sense of advanced visual technology.",
|
||||
"The rendering feels cutting-edge and interactive."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the color explosions.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures rendered with vibrant color effects."
|
||||
],
|
||||
"mood": "futuristic, dynamic, and visually exciting",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic color explosions with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through color explosions.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through color explosions.",
|
||||
"Color bursts appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant color phenomena.",
|
||||
"The transformation of a derelict space through colorful artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through bursts of color."
|
||||
],
|
||||
"actions": [
|
||||
"The color elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the visual that suggest ongoing change.",
|
||||
"A sense of hope and transformation through vibrant color.",
|
||||
"The artwork breathes life into forgotten spaces with its energetic hues."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant color explosions.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with vibrant, energetic color.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, vibrant, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the color elements.",
|
||||
"style": "color explosions exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A minimalist color explosion landscape, where simple color elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist color explosion landscape, where simple color elements are placed in a vast environment.",
|
||||
"A single, soft burst of color on a large, blank surface.",
|
||||
"A few scattered subtle color elements across a scene.",
|
||||
"A subtle color element that adds atmosphere to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the color interaction."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist color elements subtly blend or shift.",
|
||||
"A gentle change in hue or saturation.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and evocative despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle color blending and minimalist forms.",
|
||||
"accents": [
|
||||
"Soft, diffused colors.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, subtle, and harmonious",
|
||||
"lighting": "Soft, diffused lighting that emphasizes the color blending.",
|
||||
"style": "minimalist color explosions in a landscape"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A dark, moody scene featuring sharp, angular color explosion shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular color explosion shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken color forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive color architecture.",
|
||||
"A composition of colliding, fragmented color shards.",
|
||||
"A shadowy figure composed of sharp, abstract color planes."
|
||||
],
|
||||
"actions": [
|
||||
"Color shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the color forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the color shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark color explosions with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting color patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting color patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of color splashes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent color forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of color elements.",
|
||||
"A composition that plays with perspective, making color shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Color patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the color elements.",
|
||||
"New color patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of color elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all color forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into color components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into color components.",
|
||||
"A clock face made of interlocking color gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of color triangles.",
|
||||
"A tree with branches made of sharp, crystalline color structures.",
|
||||
"A floating island composed of stacked color blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Color components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from color parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal color environment, focusing on the color deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key color elements.",
|
||||
"style": "surreal digital art with a focus on color abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex color structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex color structures.",
|
||||
"A skyscraper that twists and curves like a color helix made of segments.",
|
||||
"A city where all structures are based on repeating color modules.",
|
||||
"A space station with a complex, multi-faceted color design.",
|
||||
"An interior of a futuristic vehicle with color control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the color lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic color displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic color architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated color edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with color emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A close-up view of intricate color patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate color patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A color pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming color lattices.",
|
||||
"A complex network of interconnected color lines and nodes.",
|
||||
"A pattern that appears to be woven from color threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual color elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the color pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between color elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the color details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the color patterns.",
|
||||
"style": "macro photography of intricate color patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A playful scene where simple color patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple color patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of color cubes and cylinders.",
|
||||
"A car constructed from color spheres and rectangles.",
|
||||
"A house built from stacked color blocks.",
|
||||
"A friendly monster composed of various color forms."
|
||||
],
|
||||
"actions": [
|
||||
"Color characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the color creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the color characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some color elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "color character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Color Explosions",
|
||||
"scene": "A dark, moody scene featuring sharp, angular color shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular color shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken color forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive color architecture.",
|
||||
"A composition of colliding, fragmented color shards.",
|
||||
"A shadowy figure composed of sharp, abstract color planes."
|
||||
],
|
||||
"actions": [
|
||||
"Color shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the color forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the color shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark color explosions with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_cubism.json
Normal file
404
src/data/abstract_art_cubism.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A fragmented still life, with objects broken down into geometric planes and viewed from multiple perspectives simultaneously.",
|
||||
"sceneVariants": [
|
||||
"A fragmented still life, with objects broken down into geometric planes and viewed from multiple perspectives simultaneously.",
|
||||
"A portrait composed of sharp, angular facets representing different views of the face.",
|
||||
"A cityscape rendered with geometric blocks and overlapping planes.",
|
||||
"An abstract composition of intersecting lines and shapes that suggest form.",
|
||||
"A musical instrument depicted with fragmented, geometric components."
|
||||
],
|
||||
"actions": [
|
||||
"The geometric planes subtly shift and reconfigure.",
|
||||
"New perspectives are revealed as the composition evolves.",
|
||||
"A sense of dynamic energy and visual complexity.",
|
||||
"The fragmentation creates a unique, multi-dimensional effect."
|
||||
],
|
||||
"camera": "A camera that moves around the composition, revealing different angles and facets of the fragmented objects.",
|
||||
"accents": [
|
||||
"Sharp, defined edges on all geometric planes.",
|
||||
"A palette of muted, earthy tones or bold, contrasting colors."
|
||||
],
|
||||
"mood": "fragmented, geometric, and multi-dimensional",
|
||||
"lighting": "Lighting that emphasizes the planes and angles, creating sharp shadows and highlights.",
|
||||
"style": "cubist art with fragmented geometric forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A portrait where the subject's features are deconstructed into geometric shapes and viewed from multiple angles.",
|
||||
"sceneVariants": [
|
||||
"A portrait where the subject's features are deconstructed into geometric shapes and viewed from multiple angles.",
|
||||
"A face composed of overlapping cubes, cylinders, and cones.",
|
||||
"Eyes shown in profile and frontally at the same time.",
|
||||
"A fragmented representation of a person's emotions through geometric forms.",
|
||||
"A portrait that feels both familiar and alien due to its deconstruction."
|
||||
],
|
||||
"actions": [
|
||||
"Facial features subtly shift and reorient.",
|
||||
"Different perspectives of the face are revealed simultaneously.",
|
||||
"A sense of intellectual and emotional complexity.",
|
||||
"The portrait seems to capture multiple moments in time."
|
||||
],
|
||||
"camera": "A steady, focused shot on the cubist portrait, allowing the viewer to appreciate the intricate deconstruction of features.",
|
||||
"accents": [
|
||||
"Sharp, angular lines defining the facial planes.",
|
||||
"A limited color palette that emphasizes form over realism."
|
||||
],
|
||||
"mood": "analytical, complex, and intellectually stimulating",
|
||||
"lighting": "Lighting that accentuates the geometric planes and creates strong contrasts.",
|
||||
"style": "cubist portraiture with geometric deconstruction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A cityscape rendered in a cubist style, with buildings and streets broken down into geometric forms.",
|
||||
"sceneVariants": [
|
||||
"A cityscape rendered in a cubist style, with buildings and streets broken down into geometric forms.",
|
||||
"Skyscrapers depicted as stacked cubes and prisms.",
|
||||
"Streets and roads shown as intersecting planes.",
|
||||
"A view of the city from multiple viewpoints at once.",
|
||||
"Buildings that appear to be collapsing or reassembling."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric elements of the city subtly shift and rearrange.",
|
||||
"New perspectives of the urban environment are revealed.",
|
||||
"A sense of dynamic urban energy.",
|
||||
"The city feels like a complex, ever-changing structure."
|
||||
],
|
||||
"camera": "Dynamic camera movements that showcase the fragmented architecture and multiple viewpoints of the cubist cityscape.",
|
||||
"accents": [
|
||||
"Sharp, defined edges on all architectural elements.",
|
||||
"A palette that reflects urban environments, perhaps with grays, browns, and occasional bright accents."
|
||||
],
|
||||
"mood": "urban, fragmented, and dynamic",
|
||||
"lighting": "Lighting that emphasizes the geometric planes and creates a sense of depth and structure.",
|
||||
"style": "cubist cityscape with geometric architecture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular cubist shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular cubist shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken cubist forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive cubist architecture.",
|
||||
"A composition of colliding, fragmented cubist shards.",
|
||||
"A shadowy figure composed of sharp, abstract cubist planes."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the cubist forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the cubist shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark cubism with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting cubist patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting cubist patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of cubist shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent cubist forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of cubist elements in a flat design style.",
|
||||
"A composition that plays with perspective, making cubist shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the cubist elements.",
|
||||
"New cubist patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of cubist elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all cubist forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into cubist components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into cubist components.",
|
||||
"A clock face made of interlocking cubist gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of cubist triangles.",
|
||||
"A tree with branches made of sharp, crystalline cubist structures.",
|
||||
"A floating island composed of stacked cubist blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from cubist parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal cubist environment, focusing on the cubist deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key cubist elements.",
|
||||
"style": "surreal digital art with a focus on cubist abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex cubist structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex cubist structures.",
|
||||
"A skyscraper that twists and curves like a cubist helix made of segments.",
|
||||
"A city where all structures are based on repeating cubist modules.",
|
||||
"A space station with a complex, multi-faceted cubist design.",
|
||||
"An interior of a futuristic vehicle with cubist control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the cubist lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic cubist displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic cubist architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated cubist edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with cubist emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A close-up of a complex cubist pattern, revealing its infinite detail and self-similarity.",
|
||||
"sceneVariants": [
|
||||
"A close-up of a complex cubist pattern, revealing its infinite detail and self-similarity.",
|
||||
"A cubist pattern that appears to be made of tiny, repeating versions of itself.",
|
||||
"A microscopic view of crystalline structures forming cubist lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes within a cubist composition.",
|
||||
"A pattern that seems to extend infinitely in all directions."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual cubist elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the cubist pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between cubist elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the cubist details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the cubist patterns.",
|
||||
"style": "macro photography of intricate cubist patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A playful and colorful cubist scene, with whimsical patterns and cheerful colors.",
|
||||
"sceneVariants": [
|
||||
"A playful and colorful cubist scene, with whimsical patterns and cheerful colors.",
|
||||
"A cubist composition with patterns resembling flowers or butterflies.",
|
||||
"Cubist shapes that form playful characters.",
|
||||
"A cubist effect that feels like a child's drawing brought to life.",
|
||||
"Patterns that are simple, charming, and delightful."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist elements gently animate and interact.",
|
||||
"Colors shift and blend in a cheerful manner.",
|
||||
"A sense of childlike wonder and imagination.",
|
||||
"Simple, delightful animations that bring the cubist imagery to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the whimsical nature of the cubist scene.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "playful cubism with whimsical elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A dark, atmospheric cubist scene with intricate patterns and a sense of mystery.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric cubist scene with intricate patterns and a sense of mystery.",
|
||||
"A cubist landscape under a stormy, ominous sky.",
|
||||
"An interior with oppressive, repeating cubist architecture.",
|
||||
"A composition of colliding, fragmented cubist shards.",
|
||||
"A shadowy figure composed of sharp, abstract cubist planes."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist patterns slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the cubist forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the cubist shapes."
|
||||
],
|
||||
"mood": "mysterious, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark cubism with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting cubist patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting cubist patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of cubist shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent cubist forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of cubist elements in a flat design style.",
|
||||
"A composition that plays with perspective, making cubist shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the cubist elements.",
|
||||
"New cubist patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of cubist elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all cubist forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into cubist components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into cubist components.",
|
||||
"A clock face made of interlocking cubist gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of cubist triangles.",
|
||||
"A tree with branches made of sharp, crystalline cubist structures.",
|
||||
"A floating island composed of stacked cubist blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from cubist parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal cubist environment, focusing on the cubist deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key cubist elements.",
|
||||
"style": "surreal digital art with a focus on cubist abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex cubist structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex cubist structures.",
|
||||
"A skyscraper that twists and curves like a cubist helix made of segments.",
|
||||
"A city where all structures are based on repeating cubist modules.",
|
||||
"A space station with a complex, multi-faceted cubist design.",
|
||||
"An interior of a futuristic vehicle with cubist control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the cubist lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic cubist displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic cubist architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated cubist edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with cubist emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A close-up view of intricate cubist patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate cubist patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A cubist pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming cubist lattices.",
|
||||
"A complex network of interconnected cubist lines and nodes.",
|
||||
"A pattern that appears to be woven from cubist threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual cubist elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the cubist pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between cubist elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the cubist details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the cubist patterns.",
|
||||
"style": "macro photography of intricate cubist patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A playful scene where simple cubist patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple cubist patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of cubist cubes and cylinders.",
|
||||
"A car constructed from cubist spheres and rectangles.",
|
||||
"A house built from stacked cubist blocks.",
|
||||
"A friendly monster composed of various cubist forms."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the cubist creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the cubist characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some cubist elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "cubist character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Cubism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular cubist shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular cubist shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken cubist forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive cubist architecture.",
|
||||
"A composition of colliding, fragmented cubist shards.",
|
||||
"A shadowy figure composed of sharp, abstract cubist planes."
|
||||
],
|
||||
"actions": [
|
||||
"Cubist shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the cubist forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the cubist shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark cubism with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
405
src/data/abstract_art_digital_glitch.json
Normal file
405
src/data/abstract_art_digital_glitch.json
Normal file
@ -0,0 +1,405 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "An abstract digital artwork featuring distorted pixels, color shifts, and fragmented imagery, simulating digital errors.",
|
||||
"sceneVariants": [
|
||||
"An abstract digital artwork featuring distorted pixels, color shifts, and fragmented imagery, simulating digital errors.",
|
||||
"A portrait with fragmented facial features and pixelation.",
|
||||
"A landscape where digital artifacts create surreal distortions.",
|
||||
"A scene with repeating patterns and visual noise.",
|
||||
"An artwork that mimics corrupted data or signal loss."
|
||||
],
|
||||
"actions": [
|
||||
"Pixels shift, distort, or change color.",
|
||||
"Fragmented elements appear and disappear.",
|
||||
"A sense of digital chaos and visual disruption.",
|
||||
"The artwork feels like a glitch in the digital matrix."
|
||||
],
|
||||
"camera": "A camera that moves erratically or glitches, emphasizing the digital distortion.",
|
||||
"accents": [
|
||||
"Sharp, pixelated edges.",
|
||||
"Vibrant, often clashing color palettes.",
|
||||
"Visual noise and static effects."
|
||||
],
|
||||
"mood": "digital, distorted, and chaotic",
|
||||
"lighting": "Lighting that mimics digital displays, with sharp contrasts and artificial glows.",
|
||||
"style": "abstract digital glitch art with distorted pixels and colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A minimalist digital glitch artwork, using simple distortions and a limited color palette for a clean yet disruptive effect.",
|
||||
"sceneVariants": [
|
||||
"A minimalist digital glitch artwork, using simple distortions and a limited color palette for a clean yet disruptive effect.",
|
||||
"A single, distorted line or shape.",
|
||||
"A composition with minimal elements and subtle digital artifacts.",
|
||||
"A focus on negative space to highlight the glitch.",
|
||||
"Typography with clean lines and subtle digital noise."
|
||||
],
|
||||
"actions": [
|
||||
"The digital elements subtly shift or distort.",
|
||||
"A gentle flicker or pixelation effect.",
|
||||
"A sense of controlled disruption.",
|
||||
"The artwork feels intentionally imperfect."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle distortions and clean design.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on the distorted elements.",
|
||||
"A limited, harmonious color palette with subtle digital artifacts."
|
||||
],
|
||||
"mood": "clean, disruptive, and subtly chaotic",
|
||||
"lighting": "Clean, directional lighting that emphasizes the forms and distortions.",
|
||||
"style": "minimalist digital glitch art with subtle distortions"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A surreal digital glitch composition, blending digital errors with dreamlike or illogical elements.",
|
||||
"sceneVariants": [
|
||||
"A surreal digital glitch composition, blending digital errors with dreamlike or illogical elements.",
|
||||
"Distorted imagery that suggests hidden narratives.",
|
||||
"A scene where digital artifacts create impossible realities.",
|
||||
"Fragmented data that forms dreamlike patterns.",
|
||||
"Glitches that mimic subconscious thoughts or memories."
|
||||
],
|
||||
"actions": [
|
||||
"The digital elements subtly morph or change context.",
|
||||
"A sense of digital surrealism.",
|
||||
"The artwork blurs the lines between the real and the digital.",
|
||||
"The glitch feels like a portal to another dimension."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal digital phenomena and illogical distortions.",
|
||||
"accents": [
|
||||
"Unusual color combinations and digital artifacts.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, digital, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the glitch art, perhaps with unusual color casts or dramatic digital glows.",
|
||||
"style": "surreal digital glitch art with dreamlike distortions"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A dark, moody digital glitch piece with a gritty, corrupted aesthetic.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody digital glitch piece with a gritty, corrupted aesthetic.",
|
||||
"Distorted imagery in a dimly lit digital space.",
|
||||
"A scene featuring dark, imposing digital artifacts.",
|
||||
"Glitch art that conveys a sense of system failure or data loss.",
|
||||
"A weathered digital piece with fragmented pixels and corrupted data."
|
||||
],
|
||||
"actions": [
|
||||
"The digital elements appear to shift or corrupt further.",
|
||||
"A sense of digital decay and raw disruption.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the digital glitch.",
|
||||
"accents": [
|
||||
"Rough, pixelated textures.",
|
||||
"Deep, dark digital spaces with sharp, distorted highlights."
|
||||
],
|
||||
"mood": "gritty, corrupted, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the digital textures and mood.",
|
||||
"style": "dark digital glitch art with a gritty, corrupted aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A vibrant, abstract digital glitch composition, focusing on color and dynamic distortions.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract digital glitch composition, focusing on color and dynamic distortions.",
|
||||
"A dynamic interplay of colors and digital artifacts creating abstract patterns.",
|
||||
"Glitch elements that form abstract shapes and textures.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of digital chaos and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The digital elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve with glitches.",
|
||||
"A sense of pure visual energy and digital disruption.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and digital distortion.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting digital artifacts and sharp distortions."
|
||||
],
|
||||
"mood": "abstract, energetic, and digitally chaotic",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and digital forms.",
|
||||
"style": "abstract digital glitch art with focus on color and distortion"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A close-up of intricate digital glitch details, such as pixelation, color banding, or data fragmentation.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate digital glitch details, such as pixelation, color banding, or data fragmentation.",
|
||||
"A detailed view of pixelated patterns.",
|
||||
"The texture of digital noise and artifacts.",
|
||||
"The fine details of how data is fragmented and distorted.",
|
||||
"The interplay of different digital errors creating a complex visual surface."
|
||||
],
|
||||
"actions": [
|
||||
"The digital details subtly shift or animate.",
|
||||
"Light plays across the pixelated surfaces in interesting ways.",
|
||||
"A sense of the artist's skill in manipulating digital errors.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between digital glitch elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the digital details.",
|
||||
"Subtle internal glow or luminescence within the pixelated areas."
|
||||
],
|
||||
"mood": "detailed, intricate, and digital",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the digital glitch.",
|
||||
"style": "macro digital glitch art with focus on detail and pixelation"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A futuristic digital glitch artwork, incorporating elements of technology and advanced visual effects.",
|
||||
"sceneVariants": [
|
||||
"A futuristic digital glitch artwork, incorporating elements of technology and advanced visual effects.",
|
||||
"Glitch art with neon colors and digital interfaces.",
|
||||
"A scene depicting futuristic environments with mind-bending digital distortions.",
|
||||
"Digital glitch art that responds to viewer interaction.",
|
||||
"Artwork that blends digital aesthetics with glitch art techniques."
|
||||
],
|
||||
"actions": [
|
||||
"The digital elements pulse with light or digital effects.",
|
||||
"Digital glitches and futuristic interfaces appear and disappear.",
|
||||
"A sense of advanced digital technology.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the digital glitch art.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures combined with digital distortions."
|
||||
],
|
||||
"mood": "futuristic, digital, and dynamic",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic digital glitch art with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through digital glitch art.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through digital glitch art.",
|
||||
"Digital glitch art appearing on abandoned digital structures.",
|
||||
"A contrast between decaying digital environments and vibrant glitch effects.",
|
||||
"The transformation of a derelict digital space through glitch intervention.",
|
||||
"A scene that speaks to the resilience of creativity in digital environments through fragmented data."
|
||||
],
|
||||
"actions": [
|
||||
"The digital elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the visual that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten digital spaces with its fragmented narratives."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict digital areas and close-ups on vibrant glitch art.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying digital textures with clean, glitchy elements.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "digital renewal, resilient, and fragmented",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the digital glitch elements.",
|
||||
"style": "digital glitch art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A minimalist digital glitch landscape, where simple distorted elements are placed in a vast digital environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist digital glitch landscape, where simple distorted elements are placed in a vast digital environment.",
|
||||
"A single, clean pixelated shape on a large, blank surface.",
|
||||
"A few scattered subtle digital artifacts across a scene.",
|
||||
"A subtle glitch element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the digital distortion."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist digital elements subtly shift or align.",
|
||||
"A gentle change in distortion or pixelation.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist glitch within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on the distorted elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, distorted, and understated",
|
||||
"lighting": "Clean, directional lighting that emphasizes the forms and distortions.",
|
||||
"style": "minimalist digital glitch art in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A dark, moody scene featuring sharp, angular digital shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular digital shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken digital forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive digital architecture.",
|
||||
"A composition of colliding, fragmented digital shards.",
|
||||
"A shadowy figure composed of sharp, abstract digital planes."
|
||||
],
|
||||
"actions": [
|
||||
"Digital shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the digital forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the digital shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark digital glitch art with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting digital patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting digital patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of digital shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent digital forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of digital elements in a flat design style.",
|
||||
"A composition that plays with perspective, making digital shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Digital patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the digital elements.",
|
||||
"New digital patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of digital elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all digital forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into digital components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into digital components.",
|
||||
"A clock face made of interlocking digital gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of digital triangles.",
|
||||
"A tree with branches made of sharp, crystalline digital structures.",
|
||||
"A floating island composed of stacked digital blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Digital components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from digital parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal digital environment, focusing on the digital deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key digital elements.",
|
||||
"style": "surreal digital art with a focus on digital abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex digital structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex digital structures.",
|
||||
"A skyscraper that twists and curves like a digital helix made of segments.",
|
||||
"A city where all structures are based on repeating digital modules.",
|
||||
"A space station with a complex, multi-faceted digital design.",
|
||||
"An interior of a futuristic vehicle with digital control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the digital lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic digital displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic digital architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated digital edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with digital emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A close-up view of intricate digital patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate digital patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A digital pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming digital lattices.",
|
||||
"A complex network of interconnected digital lines and nodes.",
|
||||
"A pattern that appears to be woven from digital threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual digital elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the digital pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between digital elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the digital details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the digital patterns.",
|
||||
"style": "macro photography of intricate digital patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A playful scene where simple digital patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple digital patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of digital cubes and cylinders.",
|
||||
"A car constructed from digital spheres and rectangles.",
|
||||
"A house built from stacked digital blocks.",
|
||||
"A friendly monster composed of various digital forms."
|
||||
],
|
||||
"actions": [
|
||||
"Digital characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the digital creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the digital characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some digital elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "digital character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Digital Glitch",
|
||||
"scene": "A dark, moody scene featuring sharp, angular digital shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular digital shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken digital forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive digital architecture.",
|
||||
"A composition of colliding, fragmented digital shards.",
|
||||
"A shadowy figure composed of sharp, abstract digital planes."
|
||||
],
|
||||
"actions": [
|
||||
"Digital shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the digital forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the digital shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark digital glitch art with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_fluid_paints.json
Normal file
404
src/data/abstract_art_fluid_paints.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A mesmerizing abstract artwork created by pouring and swirling paints, resulting in organic, flowing patterns and vibrant color blends.",
|
||||
"sceneVariants": [
|
||||
"A mesmerizing abstract artwork created by pouring and swirling paints, resulting in organic, flowing patterns and vibrant color blends.",
|
||||
"Close-up of paint cells forming intricate, organic shapes.",
|
||||
"A fluid art piece with metallic or iridescent pigments creating depth.",
|
||||
"A canvas filled with swirling colors that mimic natural phenomena like galaxies or oceans.",
|
||||
"Abstract forms created by the controlled flow of paint."
|
||||
],
|
||||
"actions": [
|
||||
"Colors smoothly blend and flow into each other.",
|
||||
"Paint cells expand and contract.",
|
||||
"A sense of organic movement and fluid dynamics.",
|
||||
"The artwork feels alive with flowing energy."
|
||||
],
|
||||
"camera": "A camera that moves smoothly across the fluid art, highlighting the textures, color blends, and organic patterns.",
|
||||
"accents": [
|
||||
"Rich, flowing colors with smooth transitions.",
|
||||
"Interesting textures created by paint cells or pouring techniques."
|
||||
],
|
||||
"mood": "organic, flowing, and mesmerizing",
|
||||
"lighting": "Lighting that emphasizes the textures and depth of the fluid art, perhaps with soft, diffused light or dramatic highlights.",
|
||||
"style": "abstract fluid art with flowing colors and organic patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A minimalist fluid art piece, using a limited palette and simple pouring techniques to create a clean, abstract effect.",
|
||||
"sceneVariants": [
|
||||
"A minimalist fluid art piece, using a limited palette and simple pouring techniques to create a clean, abstract effect.",
|
||||
"A canvas with a single, soft color pour.",
|
||||
"A composition with only a few key color blends.",
|
||||
"A focus on negative space to highlight the fluid interaction.",
|
||||
"Fluid art with clean lines and restrained color."
|
||||
],
|
||||
"actions": [
|
||||
"The fluid elements subtly blend or shift.",
|
||||
"A gentle change in hue or saturation.",
|
||||
"A sense of calm and quietude.",
|
||||
"The fluid interaction feels soft and unobtrusive."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle color blending and organic forms.",
|
||||
"accents": [
|
||||
"Soft, diffused colors.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "calm, subtle, and harmonious",
|
||||
"lighting": "Soft, diffused lighting that emphasizes the color blending.",
|
||||
"style": "minimalist fluid art with subtle color blending"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A surreal fluid art composition, where colors form illogical or dreamlike shapes and patterns.",
|
||||
"sceneVariants": [
|
||||
"A surreal fluid art composition, where colors form illogical or dreamlike shapes and patterns.",
|
||||
"Flowing colors that defy gravity and logic.",
|
||||
"A scene where paint blends into impossible forms.",
|
||||
"Abstract color patterns that suggest hidden meanings.",
|
||||
"Colors that seem to have a life of their own, creating visual paradoxes."
|
||||
],
|
||||
"actions": [
|
||||
"The fluid elements subtly morph or change context.",
|
||||
"A sense of magical realism through unexpected color combinations.",
|
||||
"The artwork blurs the lines between reality and imagination.",
|
||||
"The fluid art feels like a visual representation of a dream."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal color phenomena and illogical shapes.",
|
||||
"accents": [
|
||||
"Unusual color combinations that evoke a sense of the uncanny.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, dreamlike, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the fluid art, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal fluid art with dreamlike color forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A dark, atmospheric fluid art piece, focusing on mood and the interplay of vibrant colors against a dark background.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric fluid art piece, focusing on mood and the interplay of vibrant colors against a dark background.",
|
||||
"Splashes of intense color emerging from deep shadows.",
|
||||
"A scene with subtle, glowing color elements.",
|
||||
"A composition that relies on the contrast between dark tones and vibrant hues.",
|
||||
"Colors that seem to pulse with energy in the darkness."
|
||||
],
|
||||
"actions": [
|
||||
"The vibrant colors subtly shift or intensify.",
|
||||
"Shadows play a significant role in defining the color forms.",
|
||||
"A sense of quiet mystery and intense visual focus.",
|
||||
"The atmosphere feels subdued yet visually striking."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the contrast between dark and vibrant colors.",
|
||||
"accents": [
|
||||
"Deep, dark backgrounds.",
|
||||
"Intense, saturated colors with glowing edges."
|
||||
],
|
||||
"mood": "atmospheric, intense, and striking",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the vibrant colors against the dark background.",
|
||||
"style": "dark fluid art with vibrant contrasts"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A vibrant, abstract fluid art composition, focusing on color and the organic flow of paint.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract fluid art composition, focusing on color and the organic flow of paint.",
|
||||
"A dynamic interplay of colors creating abstract patterns.",
|
||||
"Fluid elements that form abstract shapes and textures.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of emotion and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The fluid elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve.",
|
||||
"A sense of pure visual energy and playfulness.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and energy in the abstract fluid art.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting color interactions and transitions."
|
||||
],
|
||||
"mood": "lively, dynamic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract fluid art with focus on color and flow"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A close-up of intricate fluid art details, such as paint cells, fine color gradients, or the texture of dried paint.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate fluid art details, such as paint cells, fine color gradients, or the texture of dried paint.",
|
||||
"A detailed view of smooth color transitions.",
|
||||
"The texture created by paint cells or pouring techniques.",
|
||||
"The fine details of how colors interact and blend.",
|
||||
"The interplay of different fluid elements creating a complex surface."
|
||||
],
|
||||
"actions": [
|
||||
"The fluid details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's technique in manipulating paint.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between fluid art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the fluid details.",
|
||||
"Subtle internal glow or luminescence within the paint."
|
||||
],
|
||||
"mood": "detailed, intricate, and textural",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the fluid art.",
|
||||
"style": "macro fluid art with focus on detail and texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A futuristic fluid art artwork, incorporating elements of technology and advanced visual effects.",
|
||||
"sceneVariants": [
|
||||
"A futuristic fluid art artwork, incorporating elements of technology and advanced visual effects.",
|
||||
"Fluid art with neon colors and digital interfaces.",
|
||||
"A scene depicting futuristic environments with mind-bending color phenomena.",
|
||||
"Fluid art that responds to viewer interaction.",
|
||||
"Artwork that blends digital aesthetics with fluid art techniques."
|
||||
],
|
||||
"actions": [
|
||||
"The fluid elements pulse with light or digital effects.",
|
||||
"Digital glitches and futuristic color effects appear and disappear.",
|
||||
"A sense of advanced visual technology.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the fluid art.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures rendered with vibrant fluid effects."
|
||||
],
|
||||
"mood": "futuristic, dynamic, and visually exciting",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic fluid art with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through fluid art.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through fluid art.",
|
||||
"Fluid art appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant fluid art pieces.",
|
||||
"The transformation of a derelict space through fluid artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through flowing colors."
|
||||
],
|
||||
"actions": [
|
||||
"The fluid elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the visual that suggest ongoing change.",
|
||||
"A sense of hope and transformation through vibrant color.",
|
||||
"The artwork breathes life into forgotten spaces with its energetic hues."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant fluid art.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with vibrant, flowing paint.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, vibrant, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the fluid art elements.",
|
||||
"style": "fluid art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A minimalist fluid art landscape, where simple color elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist fluid art landscape, where simple color elements are placed in a vast environment.",
|
||||
"A single, soft color pour on a large, blank surface.",
|
||||
"A few scattered subtle fluid art elements across a scene.",
|
||||
"A subtle fluid art element that adds atmosphere to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the color interaction."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist fluid elements subtly blend or shift.",
|
||||
"A gentle change in hue or saturation.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and evocative despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle color blending and minimalist forms.",
|
||||
"accents": [
|
||||
"Soft, diffused colors.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, subtle, and harmonious",
|
||||
"lighting": "Soft, diffused lighting that emphasizes the color blending.",
|
||||
"style": "minimalist fluid art in a landscape"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A dark, moody scene featuring sharp, angular fluid shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular fluid shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken fluid forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive fluid architecture.",
|
||||
"A composition of colliding, fragmented fluid shards.",
|
||||
"A shadowy figure composed of sharp, abstract fluid planes."
|
||||
],
|
||||
"actions": [
|
||||
"Fluid shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the fluid forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the fluid shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark fluid art with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting color patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting color patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of color splashes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent color forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of color elements.",
|
||||
"A composition that plays with perspective, making color shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Color patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the color elements.",
|
||||
"New color patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of color elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all color forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into fluid components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into fluid components.",
|
||||
"A clock face made of interlocking fluid gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of fluid triangles.",
|
||||
"A tree with branches made of sharp, crystalline fluid structures.",
|
||||
"A floating island composed of stacked fluid blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Fluid components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from fluid parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal fluid environment, focusing on the fluid deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key fluid elements.",
|
||||
"style": "surreal digital art with a focus on fluid art abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex fluid structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex fluid structures.",
|
||||
"A skyscraper that twists and curves like a fluid helix made of segments.",
|
||||
"A city where all structures are based on repeating fluid modules.",
|
||||
"A space station with a complex, multi-faceted fluid design.",
|
||||
"An interior of a futuristic vehicle with fluid control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the fluid lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic fluid displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic fluid architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated fluid edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with fluid emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A close-up view of intricate fluid patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate fluid patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fluid pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming fluid lattices.",
|
||||
"A complex network of interconnected fluid lines and nodes.",
|
||||
"A pattern that appears to be woven from fluid threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual fluid elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the fluid pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between fluid elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the fluid details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the fluid patterns.",
|
||||
"style": "macro photography of intricate fluid patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A playful scene where simple fluid patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple fluid patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of fluid cubes and cylinders.",
|
||||
"A car constructed from fluid spheres and rectangles.",
|
||||
"A house built from stacked fluid blocks.",
|
||||
"A friendly monster composed of various fluid forms."
|
||||
],
|
||||
"actions": [
|
||||
"Fluid characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the fluid creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the fluid characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some fluid elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "fluid character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fluid Paints",
|
||||
"scene": "A dark, moody scene featuring sharp, angular fluid shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular fluid shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken fluid forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive fluid architecture.",
|
||||
"A composition of colliding, fragmented fluid shards.",
|
||||
"A shadowy figure composed of sharp, abstract fluid planes."
|
||||
],
|
||||
"actions": [
|
||||
"Fluid shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the fluid forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the fluid shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark fluid art with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
529
src/data/abstract_art_fractals.json
Normal file
529
src/data/abstract_art_fractals.json
Normal file
@ -0,0 +1,529 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A mesmerizing Mandelbrot set, with intricate details and vibrant colors emerging from the black background.",
|
||||
"sceneVariants": [
|
||||
"A mesmerizing Mandelbrot set, with intricate details and vibrant colors emerging from the black background.",
|
||||
"A close-up of a fractal fern, showcasing its self-similar patterns.",
|
||||
"A swirling Julia set, with complex, organic-looking tendrils.",
|
||||
"A fractal landscape resembling a mountain range or coastline.",
|
||||
"A fractal pattern that appears to be a cosmic nebula or galaxy."
|
||||
],
|
||||
"actions": [
|
||||
"Zooming into the Mandelbrot set, revealing ever more complex details.",
|
||||
"Colors smoothly transitioning as the fractal pattern unfolds.",
|
||||
"A subtle shimmering or pulsating effect within the fractal structures.",
|
||||
"The fractal pattern slowly rotating or evolving."
|
||||
],
|
||||
"camera": "A slow, deliberate zoom into the heart of the fractal, revealing layers of complexity and detail. The camera movement should feel exploratory and awe-inspiring.",
|
||||
"accents": [
|
||||
"Vibrant, high-contrast color palettes that highlight the fractal boundaries.",
|
||||
"A subtle glow or luminescence emanating from the fractal patterns."
|
||||
],
|
||||
"mood": "complex, infinite, and visually captivating",
|
||||
"lighting": "Dramatic lighting that emphasizes the depth and contours of the fractal, with sharp contrasts between light and shadow.",
|
||||
"style": "detailed digital rendering of mathematical fractals"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A serene natural scene, like a forest or coastline, rendered with fractal geometry.",
|
||||
"sceneVariants": [
|
||||
"A serene natural scene, like a forest or coastline, rendered with fractal geometry.",
|
||||
"A tree whose branches and leaves follow fractal patterns.",
|
||||
"A mountain range composed of self-similar peaks and valleys.",
|
||||
"A coastline with intricate fractal bays and peninsulas.",
|
||||
"A cloud formation exhibiting fractal characteristics."
|
||||
],
|
||||
"actions": [
|
||||
"Gentle wind rustling fractal leaves.",
|
||||
"Waves crashing against fractal shores.",
|
||||
"Sunlight filtering through fractal branches.",
|
||||
"A sense of organic growth and natural complexity."
|
||||
],
|
||||
"camera": "Smooth, sweeping camera movements that capture the natural beauty and fractal patterns of the environment.",
|
||||
"accents": [
|
||||
"Soft, natural lighting that enhances the organic feel of the fractal forms.",
|
||||
"Subtle textures that mimic natural materials like bark or rock."
|
||||
],
|
||||
"mood": "natural, organic, and intricate",
|
||||
"lighting": "Soft, diffused natural lighting, mimicking daylight or a gentle sunset.",
|
||||
"style": "naturalistic fractal art with organic textures"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "An abstract, energetic explosion of fractal patterns in a riot of colors.",
|
||||
"sceneVariants": [
|
||||
"An abstract, energetic explosion of fractal patterns in a riot of colors.",
|
||||
"A dynamic burst of fractal shapes scattering outwards.",
|
||||
"A swirling vortex of interconnected fractal elements.",
|
||||
"A chaotic yet beautiful arrangement of fractal forms in motion.",
|
||||
"Fractal patterns rapidly expanding and contracting."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal patterns rapidly generating and dissolving.",
|
||||
"Colors flashing and streaking across the screen.",
|
||||
"A sense of explosive energy and constant transformation.",
|
||||
"The patterns appearing to grow and multiply at high speed."
|
||||
],
|
||||
"camera": "Fast-paced, dynamic camera that follows the energetic movement of the fractal patterns, with quick cuts and dramatic angles.",
|
||||
"accents": [
|
||||
"Bright, saturated colors that create a high-energy visual.",
|
||||
"Sparkling or glowing effects on the fractal edges."
|
||||
],
|
||||
"mood": "energetic, chaotic, and visually intense",
|
||||
"lighting": "Bright, high-contrast lighting that makes the colors and patterns pop.",
|
||||
"style": "dynamic abstract fractal animation"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A minimalist, dark scene featuring a single, intricate fractal structure glowing softly.",
|
||||
"sceneVariants": [
|
||||
"A minimalist, dark scene featuring a single, intricate fractal structure glowing softly.",
|
||||
"A delicate fractal snowflake on a black background.",
|
||||
"A glowing fractal sphere with complex internal patterns.",
|
||||
"A simple fractal tree with subtle luminescence.",
|
||||
"A fractal spiral that emits a soft, ethereal light."
|
||||
],
|
||||
"actions": [
|
||||
"The fractal structure emits gentle pulses of light.",
|
||||
"The fractal slowly rotates, revealing its symmetry.",
|
||||
"Subtle, shimmering particles drift around the fractal.",
|
||||
"The fractal's glow subtly intensifies and fades."
|
||||
],
|
||||
"camera": "A static, focused shot on the fractal, allowing the viewer to appreciate its intricate details and subtle glow.",
|
||||
"accents": [
|
||||
"A soft, ambient glow that illuminates the immediate surroundings.",
|
||||
"A sense of quiet beauty and intricate design."
|
||||
],
|
||||
"mood": "calm, serene, and mysterious",
|
||||
"lighting": "Minimalist lighting, focused on the glowing fractal, with deep shadows elsewhere.",
|
||||
"style": "minimalist fractal art with soft lighting"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A surreal, dreamlike environment constructed from repeating fractal patterns.",
|
||||
"sceneVariants": [
|
||||
"A surreal, dreamlike environment constructed from repeating fractal patterns.",
|
||||
"A landscape where the ground, sky, and objects are all made of fractal textures.",
|
||||
"A room with walls that ripple and shift with fractal designs.",
|
||||
"A floating island composed of interconnected fractal structures.",
|
||||
"A portal that opens into a dimension of pure fractal geometry."
|
||||
],
|
||||
"actions": [
|
||||
"The fractal environment subtly morphs and changes.",
|
||||
"Objects within the scene appear and disappear based on fractal logic.",
|
||||
"A sense of infinite recursion and interconnectedness.",
|
||||
"The environment feels alive and constantly evolving."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal fractal environment, emphasizing its dreamlike and ever-changing nature.",
|
||||
"accents": [
|
||||
"Unusual color palettes that evoke a sense of the uncanny.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "dreamy, surreal, and mind-bending",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key fractal elements.",
|
||||
"style": "surreal digital art with fractal elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A futuristic city or structure that incorporates fractal designs into its architecture.",
|
||||
"sceneVariants": [
|
||||
"A futuristic city or structure that incorporates fractal designs into its architecture.",
|
||||
"A skyscraper with a facade that mimics a fractal pattern.",
|
||||
"A space station with a complex, multi-faceted geometric design based on fractals.",
|
||||
"A vehicle with fractal-inspired aerodynamic lines.",
|
||||
"An interior space with furniture and decor featuring fractal motifs."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the fractal lines of the architecture.",
|
||||
"Sections of the structure subtly shift or reconfigure.",
|
||||
"Holographic fractal displays appear and disappear.",
|
||||
"A sense of advanced, organic-inspired technology."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the fractal architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated fractal edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "futuristic, innovative, and intricate",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with fractal elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A close-up of a complex fractal pattern, revealing its infinite detail and self-similarity.",
|
||||
"sceneVariants": [
|
||||
"A close-up of a complex fractal pattern, revealing its infinite detail and self-similarity.",
|
||||
"A fractal that appears to be made of tiny, repeating versions of itself.",
|
||||
"A microscopic view of crystalline structures forming fractal lattices.",
|
||||
"A complex network of interconnected fractal lines and nodes.",
|
||||
"A pattern that seems to extend infinitely in all directions."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual fractal elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the fractal.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between fractal elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the fractal details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, infinite, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the fractal patterns.",
|
||||
"style": "macro photography of intricate fractal patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A playful and colorful scene where fractal patterns are used to create whimsical imagery.",
|
||||
"sceneVariants": [
|
||||
"A playful and colorful scene where fractal patterns are used to create whimsical imagery.",
|
||||
"A fractal butterfly with intricate wing patterns.",
|
||||
"A fractal flower with petals that repeat in a spiral.",
|
||||
"A fractal landscape that looks like a magical, enchanted forest.",
|
||||
"A fractal creature that is both strange and endearing."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal elements gently animate and interact.",
|
||||
"Colors shift and blend in a cheerful manner.",
|
||||
"A sense of childlike wonder and imagination.",
|
||||
"Simple, delightful animations that bring the fractal imagery to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the whimsical nature of the fractal imagery.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some fractal elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, whimsical, and delightful",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "whimsical fractal art with playful elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A dark, atmospheric scene featuring complex fractal patterns that evoke a sense of mystery or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric scene featuring complex fractal patterns that evoke a sense of mystery or unease.",
|
||||
"A fractal landscape under a stormy, ominous sky.",
|
||||
"An interior with oppressive, repeating fractal architecture.",
|
||||
"A composition of colliding, fragmented fractal shards.",
|
||||
"A shadowy form composed of sharp, abstract fractal planes."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal patterns slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the fractal forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the fractals."
|
||||
],
|
||||
"mood": "mysterious, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, atmospheric fractal art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting fractal patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting fractal patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of fractal shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent fractal forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of fractal elements in a flat design style.",
|
||||
"A composition that plays with perspective, making fractal shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the fractals.",
|
||||
"New fractal patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of fractals move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all fractal forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into fractal components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into fractal components.",
|
||||
"A clock face made of interlocking fractal gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of fractal triangles.",
|
||||
"A tree with branches made of sharp, crystalline fractal structures.",
|
||||
"A floating island composed of stacked fractal blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from fractal parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal fractal environment, focusing on the fractal deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key fractal elements.",
|
||||
"style": "surreal digital art with a focus on fractal abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex fractal structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex fractal structures.",
|
||||
"A skyscraper that twists and curves like a fractal helix made of segments.",
|
||||
"A city where all structures are based on repeating fractal modules.",
|
||||
"A space station with a complex, multi-faceted fractal design.",
|
||||
"An interior of a futuristic vehicle with fractal control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the fractal lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic fractal displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic fractal architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated fractal edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with fractal emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A close-up view of intricate fractal patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate fractal patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming fractal lattices.",
|
||||
"A complex network of interconnected fractal lines and nodes.",
|
||||
"A pattern that appears to be woven from fractal threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual fractal elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the fractal.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between fractal elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the fractal details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the fractal patterns.",
|
||||
"style": "macro photography of intricate fractal patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A playful scene where simple fractal patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple fractal patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of fractal cubes and cylinders.",
|
||||
"A car constructed from fractal spheres and rectangles.",
|
||||
"A house built from stacked fractal blocks.",
|
||||
"A friendly monster composed of various fractal forms."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the fractal creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the fractal characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some fractal elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "fractal character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A dark, moody scene featuring sharp, angular fractal shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular fractal shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken fractal forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive fractal architecture.",
|
||||
"A composition of colliding, fragmented fractal shards.",
|
||||
"A shadowy figure composed of sharp, abstract fractal planes."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the fractal forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the fractals."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular fractal art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting fractal patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting fractal patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of fractal shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent fractal forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of fractal elements in a flat design style.",
|
||||
"A composition that plays with perspective, making fractal shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the fractals.",
|
||||
"New fractal patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of fractals move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all fractal forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into fractal components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into fractal components.",
|
||||
"A clock face made of interlocking fractal gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of fractal triangles.",
|
||||
"A tree with branches made of sharp, crystalline fractal structures.",
|
||||
"A floating island composed of stacked fractal blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from fractal parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal fractal environment, focusing on the fractal deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key fractal elements.",
|
||||
"style": "surreal digital art with a focus on fractal abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex fractal structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex fractal structures.",
|
||||
"A skyscraper that twists and curves like a fractal helix made of segments.",
|
||||
"A city where all structures are based on repeating fractal modules.",
|
||||
"A space station with a complex, multi-faceted fractal design.",
|
||||
"An interior of a futuristic vehicle with fractal control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the fractal lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic fractal displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic fractal architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated fractal edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with fractal emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A close-up view of intricate fractal patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate fractal patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming fractal lattices.",
|
||||
"A complex network of interconnected fractal lines and nodes.",
|
||||
"A pattern that appears to be woven from fractal threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual fractal elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the fractal.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between fractal elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the fractal details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the fractal patterns.",
|
||||
"style": "macro photography of intricate fractal patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A playful scene where simple fractal patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple fractal patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of fractal cubes and cylinders.",
|
||||
"A car constructed from fractal spheres and rectangles.",
|
||||
"A house built from stacked fractal blocks.",
|
||||
"A friendly monster composed of various fractal forms."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the fractal creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the fractal characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some fractal elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "fractal character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fractals",
|
||||
"scene": "A dark, moody scene featuring sharp, angular fractal shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular fractal shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken fractal forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive fractal architecture.",
|
||||
"A composition of colliding, fragmented fractal shards.",
|
||||
"A shadowy figure composed of sharp, abstract fractal planes."
|
||||
],
|
||||
"actions": [
|
||||
"Fractal shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the fractal forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the fractals."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular fractal art with a sense of foreboding"
|
||||
}
|
||||
]
|
||||
}
|
||||
879
src/data/abstract_art_geometric_shapes.json
Normal file
879
src/data/abstract_art_geometric_shapes.json
Normal file
@ -0,0 +1,879 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A vibrant cityscape composed entirely of geometric shapes, with sharp angles and clean lines.",
|
||||
"sceneVariants": [
|
||||
"A vibrant cityscape composed entirely of geometric shapes, with sharp angles and clean lines.",
|
||||
"An abstract landscape where mountains are pyramids and rivers are flowing rectangles.",
|
||||
"A surreal interior space defined by intersecting cubes and spheres.",
|
||||
"A cosmic void filled with floating, glowing geometric forms.",
|
||||
"A close-up of intricate, interlocking geometric patterns creating a mesmerizing effect."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes smoothly morphing into one another.",
|
||||
"Light rays passing through translucent geometric forms.",
|
||||
"A camera smoothly orbiting a complex geometric structure.",
|
||||
"Geometric shapes assembling themselves into a larger form."
|
||||
],
|
||||
"camera": "Smooth, slow-moving camera that emphasizes the scale and complexity of the geometric arrangements, with occasional close-ups on intricate details.",
|
||||
"accents": [
|
||||
"Sharp, contrasting color palettes that highlight the edges of shapes.",
|
||||
"Subtle iridescent or metallic finishes on some geometric surfaces."
|
||||
],
|
||||
"mood": "orderly, precise, and visually stimulating",
|
||||
"lighting": "Clean, directional lighting that casts sharp shadows, emphasizing the forms.",
|
||||
"style": "clean vector art with depth and subtle gradients"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A dark, minimalist room where a single, glowing cube floats in the center, casting soft light.",
|
||||
"sceneVariants": [
|
||||
"A dark, minimalist room where a single, glowing cube floats in the center, casting soft light.",
|
||||
"A stark white void with a slowly rotating dodecahedron.",
|
||||
"A black background with a pulsating, neon-outlined tetrahedron.",
|
||||
"A dimly lit space with a cluster of interconnected geometric solids.",
|
||||
"A room with walls made of shifting, tessellating triangles."
|
||||
],
|
||||
"actions": [
|
||||
"The cube emits pulses of light.",
|
||||
"The cube slowly rotates, revealing different facets.",
|
||||
"Small geometric particles orbit the central form.",
|
||||
"The cube's surface displays subtle, shifting patterns."
|
||||
],
|
||||
"camera": "Static shot focused on the central geometric object, with subtle zooms to highlight details.",
|
||||
"accents": [
|
||||
"A soft, ethereal glow emanating from the geometric shape.",
|
||||
"Subtle reflections of the shape on the surrounding surfaces."
|
||||
],
|
||||
"mood": "calm, contemplative, and mysterious",
|
||||
"lighting": "Minimalist, focused lighting on the central object, with deep shadows elsewhere.",
|
||||
"style": "minimalist 3D render with atmospheric lighting"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "An explosion of colorful geometric shapes, like confetti, filling the screen.",
|
||||
"sceneVariants": [
|
||||
"An explosion of colorful geometric shapes, like confetti, filling the screen.",
|
||||
"A cascade of falling cubes, spheres, and pyramids in various sizes.",
|
||||
"A dynamic composition of sharp, angular shapes colliding and scattering.",
|
||||
"A swirling vortex of geometric patterns in a rainbow of colors.",
|
||||
"A burst of fragmented geometric pieces reassembling in mid-air."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes rapidly expand and contract.",
|
||||
"Colors streak across the screen as shapes move.",
|
||||
"Shapes bounce off invisible barriers.",
|
||||
"A sense of controlled chaos as shapes fly in all directions."
|
||||
],
|
||||
"camera": "Fast-paced camera movement that follows the action, with quick cuts and dynamic angles.",
|
||||
"accents": [
|
||||
"Bright, saturated colors that pop against a dark background.",
|
||||
"Sparkling or glittering effects on the surfaces of the shapes."
|
||||
],
|
||||
"mood": "energetic, playful, and chaotic",
|
||||
"lighting": "Bright, even lighting that illuminates all shapes clearly.",
|
||||
"style": "vibrant abstract animation with a sense of motion"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A serene natural landscape rendered entirely with geometric forms, like a digital painting.",
|
||||
"sceneVariants": [
|
||||
"A serene natural landscape rendered entirely with geometric forms, like a digital painting.",
|
||||
"A forest where trees are stylized cones and leaves are flat polygons.",
|
||||
"A mountain range composed of sharp, faceted peaks.",
|
||||
"A tranquil lake made of smooth, reflective geometric planes.",
|
||||
"A sky filled with geometric clouds and a polygonal sun."
|
||||
],
|
||||
"actions": [
|
||||
"Gentle swaying of geometric trees.",
|
||||
"Water ripples across the geometric lake surface.",
|
||||
"A soft breeze rustling polygonal leaves.",
|
||||
"Sunlight glinting off the faceted surfaces of the mountains."
|
||||
],
|
||||
"camera": "Slow, sweeping camera movements that capture the breadth of the geometric landscape, with a focus on naturalistic composition.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that creates a painterly effect.",
|
||||
"Subtle textures applied to the geometric surfaces to mimic natural materials."
|
||||
],
|
||||
"mood": "peaceful, artistic, and imaginative",
|
||||
"lighting": "Soft, naturalistic lighting, mimicking daylight or twilight.",
|
||||
"style": "geometric digital painting with a naturalistic feel"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "An intricate maze constructed from interlocking geometric shapes, with a sense of depth and complexity.",
|
||||
"sceneVariants": [
|
||||
"An intricate maze constructed from interlocking geometric shapes, with a sense of depth and complexity.",
|
||||
"A labyrinth of cubes and prisms that twist and turn.",
|
||||
"A complex network of interconnected geometric pathways.",
|
||||
"A maze where the walls are made of constantly shifting geometric patterns.",
|
||||
"A three-dimensional geometric puzzle that unfolds as you explore."
|
||||
],
|
||||
"actions": [
|
||||
"A small geometric object navigates through the maze.",
|
||||
"Sections of the maze reconfigure themselves.",
|
||||
"Light sources move along the pathways, illuminating the route.",
|
||||
"The camera follows the path of the object through the maze."
|
||||
],
|
||||
"camera": "First-person perspective or a close third-person view that immerses the viewer in the maze, emphasizing the twists and turns.",
|
||||
"accents": [
|
||||
"A subtle glow along the edges of the maze walls.",
|
||||
"Varying levels of transparency in some geometric elements to hint at hidden paths."
|
||||
],
|
||||
"mood": "challenging, intriguing, and disorienting",
|
||||
"lighting": "Dramatic lighting with strong contrasts, creating a sense of mystery and depth within the maze.",
|
||||
"style": "architectural visualization of a complex geometric structure"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"A dynamic arrangement of circles, squares, and triangles creating a sense of movement.",
|
||||
"A layered effect with semi-transparent geometric forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of geometric elements in a flat design style.",
|
||||
"A composition that plays with perspective, making geometric shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes gently pulse or breathe.",
|
||||
"Colors subtly shift within the shapes.",
|
||||
"New shapes emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of shapes move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all geometric forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"A clock face made of interlocking gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of triangles.",
|
||||
"A tree with branches made of sharp, crystalline structures.",
|
||||
"A floating island composed of stacked geometric blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from geometric parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal environment, focusing on the geometric deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key geometric elements.",
|
||||
"style": "surreal digital art with a focus on geometric abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"A skyscraper that twists and curves like a helix made of geometric segments.",
|
||||
"A city where all structures are based on repeating geometric modules.",
|
||||
"A space station with a complex, multi-faceted geometric design.",
|
||||
"An interior of a futuristic vehicle with geometric control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the geometric lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic geometric displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic geometric architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with geometric emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming geometric lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes.",
|
||||
"A pattern that appears to be woven from geometric threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the geometric patterns.",
|
||||
"style": "macro photography of intricate geometric patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"A robot made of cubes and cylinders.",
|
||||
"A car constructed from spheres and rectangles.",
|
||||
"A house built from stacked geometric blocks.",
|
||||
"A friendly monster composed of various geometric forms."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the geometric creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the geometric characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "geometric character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken geometric forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive geometric architecture.",
|
||||
"A composition of colliding, fragmented geometric shards.",
|
||||
"A shadowy figure composed of sharp, abstract geometric planes."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the geometric forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular abstract art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"A dynamic arrangement of circles, squares, and triangles creating a sense of movement.",
|
||||
"A layered effect with semi-transparent geometric forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of geometric elements in a flat design style.",
|
||||
"A composition that plays with perspective, making geometric shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes gently pulse or breathe.",
|
||||
"Colors subtly shift within the shapes.",
|
||||
"New shapes emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of shapes move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all geometric forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"A clock face made of interlocking gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of triangles.",
|
||||
"A tree with branches made of sharp, crystalline structures.",
|
||||
"A floating island composed of stacked geometric blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from geometric parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal environment, focusing on the geometric deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key geometric elements.",
|
||||
"style": "surreal digital art with a focus on geometric abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"A skyscraper that twists and curves like a helix made of geometric segments.",
|
||||
"A city where all structures are based on repeating geometric modules.",
|
||||
"A space station with a complex, multi-faceted geometric design.",
|
||||
"An interior of a futuristic vehicle with geometric control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the geometric lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic geometric displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic geometric architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with geometric emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming geometric lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes.",
|
||||
"A pattern that appears to be woven from geometric threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the geometric patterns.",
|
||||
"style": "macro photography of intricate geometric patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"A robot made of cubes and cylinders.",
|
||||
"A car constructed from spheres and rectangles.",
|
||||
"A house built from stacked geometric blocks.",
|
||||
"A friendly monster composed of various geometric forms."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the geometric creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the geometric characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "geometric character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken geometric forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive geometric architecture.",
|
||||
"A composition of colliding, fragmented geometric shards.",
|
||||
"A shadowy figure composed of sharp, abstract geometric planes."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the geometric forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular abstract art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"A dynamic arrangement of circles, squares, and triangles creating a sense of movement.",
|
||||
"A layered effect with semi-transparent geometric forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of geometric elements in a flat design style.",
|
||||
"A composition that plays with perspective, making geometric shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes gently pulse or breathe.",
|
||||
"Colors subtly shift within the shapes.",
|
||||
"New shapes emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of shapes move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all geometric forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"A clock face made of interlocking gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of triangles.",
|
||||
"A tree with branches made of sharp, crystalline structures.",
|
||||
"A floating island composed of stacked geometric blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from geometric parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal environment, focusing on the geometric deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key geometric elements.",
|
||||
"style": "surreal digital art with a focus on geometric abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"A skyscraper that twists and curves like a helix made of geometric segments.",
|
||||
"A city where all structures are based on repeating geometric modules.",
|
||||
"A space station with a complex, multi-faceted geometric design.",
|
||||
"An interior of a futuristic vehicle with geometric control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the geometric lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic geometric displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic geometric architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with geometric emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming geometric lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes.",
|
||||
"A pattern that appears to be woven from geometric threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the geometric patterns.",
|
||||
"style": "macro photography of intricate geometric patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"A robot made of cubes and cylinders.",
|
||||
"A car constructed from spheres and rectangles.",
|
||||
"A house built from stacked geometric blocks.",
|
||||
"A friendly monster composed of various geometric forms."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the geometric creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the geometric characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "geometric character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken geometric forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive geometric architecture.",
|
||||
"A composition of colliding, fragmented geometric shards.",
|
||||
"A shadowy figure composed of sharp, abstract geometric planes."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the geometric forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular abstract art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"A dynamic arrangement of circles, squares, and triangles creating a sense of movement.",
|
||||
"A layered effect with semi-transparent geometric forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of geometric elements in a flat design style.",
|
||||
"A composition that plays with perspective, making geometric shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes gently pulse or breathe.",
|
||||
"Colors subtly shift within the shapes.",
|
||||
"New shapes emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of shapes move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all geometric forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"A clock face made of interlocking gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of triangles.",
|
||||
"A tree with branches made of sharp, crystalline structures.",
|
||||
"A floating island composed of stacked geometric blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from geometric parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal environment, focusing on the geometric deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key geometric elements.",
|
||||
"style": "surreal digital art with a focus on geometric abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"A skyscraper that twists and curves like a helix made of geometric segments.",
|
||||
"A city where all structures are based on repeating geometric modules.",
|
||||
"A space station with a complex, multi-faceted geometric design.",
|
||||
"An interior of a futuristic vehicle with geometric control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the geometric lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic geometric displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic geometric architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with geometric emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming geometric lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes.",
|
||||
"A pattern that appears to be woven from geometric threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the geometric patterns.",
|
||||
"style": "macro photography of intricate geometric patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"A robot made of cubes and cylinders.",
|
||||
"A car constructed from spheres and rectangles.",
|
||||
"A house built from stacked geometric blocks.",
|
||||
"A friendly monster composed of various geometric forms."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the geometric creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the geometric characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "geometric character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken geometric forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive geometric architecture.",
|
||||
"A composition of colliding, fragmented geometric shards.",
|
||||
"A shadowy figure composed of sharp, abstract geometric planes."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the geometric forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular abstract art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting geometric shapes in bright, bold colors.",
|
||||
"A dynamic arrangement of circles, squares, and triangles creating a sense of movement.",
|
||||
"A layered effect with semi-transparent geometric forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of geometric elements in a flat design style.",
|
||||
"A composition that plays with perspective, making geometric shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Shapes gently pulse or breathe.",
|
||||
"Colors subtly shift within the shapes.",
|
||||
"New shapes emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of shapes move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all geometric forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into geometric components.",
|
||||
"A clock face made of interlocking gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of triangles.",
|
||||
"A tree with branches made of sharp, crystalline structures.",
|
||||
"A floating island composed of stacked geometric blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from geometric parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal environment, focusing on the geometric deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key geometric elements.",
|
||||
"style": "surreal digital art with a focus on geometric abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex geometric structures.",
|
||||
"A skyscraper that twists and curves like a helix made of geometric segments.",
|
||||
"A city where all structures are based on repeating geometric modules.",
|
||||
"A space station with a complex, multi-faceted geometric design.",
|
||||
"An interior of a futuristic vehicle with geometric control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the geometric lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic geometric displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic geometric architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with geometric emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate geometric patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A fractal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming geometric lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes.",
|
||||
"A pattern that appears to be woven from geometric threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the geometric patterns.",
|
||||
"style": "macro photography of intricate geometric patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple geometric shapes are used to construct whimsical characters or objects.",
|
||||
"A robot made of cubes and cylinders.",
|
||||
"A car constructed from spheres and rectangles.",
|
||||
"A house built from stacked geometric blocks.",
|
||||
"A friendly monster composed of various geometric forms."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the geometric creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the geometric characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "geometric character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Geometric Shapes",
|
||||
"scene": "A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular geometric shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken geometric forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive geometric architecture.",
|
||||
"A composition of colliding, fragmented geometric shards.",
|
||||
"A shadowy figure composed of sharp, abstract geometric planes."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the geometric forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular abstract art with a sense of foreboding"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_graffiti.json
Normal file
404
src/data/abstract_art_graffiti.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A vibrant graffiti mural covering a brick wall, featuring bold lettering and dynamic characters.",
|
||||
"sceneVariants": [
|
||||
"A vibrant graffiti mural covering a brick wall, featuring bold lettering and dynamic characters.",
|
||||
"A close-up of intricate graffiti tags with complex lettering.",
|
||||
"A graffiti piece that incorporates abstract shapes and colors.",
|
||||
"A graffiti artwork that tells a story through its imagery.",
|
||||
"A stencil graffiti piece with sharp, clean lines."
|
||||
],
|
||||
"actions": [
|
||||
"The graffiti elements appear to animate or shift subtly.",
|
||||
"Colors blend and interact in dynamic ways.",
|
||||
"A sense of urban energy and raw expression.",
|
||||
"The artwork feels alive and constantly evolving."
|
||||
],
|
||||
"camera": "A camera that moves along the graffiti mural, highlighting different sections and details, emphasizing the scale and impact.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Textured spray paint effects and drips."
|
||||
],
|
||||
"mood": "urban, expressive, and energetic",
|
||||
"lighting": "Harsh urban lighting, perhaps with dramatic shadows or the glow of streetlights.",
|
||||
"style": "vibrant graffiti art with bold lettering and imagery"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A minimalist graffiti piece, focusing on clean lines, simple shapes, and a limited color palette.",
|
||||
"sceneVariants": [
|
||||
"A minimalist graffiti piece, focusing on clean lines, simple shapes, and a limited color palette.",
|
||||
"A single, stylized tag with precise lettering.",
|
||||
"A geometric graffiti design with sharp edges.",
|
||||
"A stencil artwork with a clear, impactful message.",
|
||||
"A composition that uses negative space effectively."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist elements subtly shift or align.",
|
||||
"A gentle change in color or opacity.",
|
||||
"A sense of clean design and deliberate placement.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist graffiti.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, precise, and impactful",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the graffiti.",
|
||||
"style": "minimalist graffiti with clean lines and simple forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A surreal graffiti artwork that blends urban art with dreamlike or illogical elements.",
|
||||
"sceneVariants": [
|
||||
"A surreal graffiti artwork that blends urban art with dreamlike or illogical elements.",
|
||||
"Graffiti characters that seem to float or defy gravity.",
|
||||
"A mural where the painted elements interact with the real environment.",
|
||||
"A scene that combines spray-painted imagery with photographic elements.",
|
||||
"Graffiti that depicts impossible landscapes or creatures."
|
||||
],
|
||||
"actions": [
|
||||
"The painted elements subtly morph or change.",
|
||||
"A sense of magical realism within the urban setting.",
|
||||
"The artwork blurs the lines between reality and imagination.",
|
||||
"The graffiti feels like a portal to another world."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal elements and illogical juxtapositions within the graffiti.",
|
||||
"accents": [
|
||||
"Unusual color combinations that evoke a sense of the uncanny.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, urban, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the graffiti, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal graffiti art with dreamlike elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A dark, moody graffiti piece with a gritty, urban aesthetic.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody graffiti piece with a gritty, urban aesthetic.",
|
||||
"Graffiti in a dimly lit alleyway, with rough textures.",
|
||||
"A mural featuring dark, imposing figures or symbols.",
|
||||
"Graffiti that conveys a sense of rebellion or social commentary.",
|
||||
"A weathered graffiti piece with peeling paint and urban decay."
|
||||
],
|
||||
"actions": [
|
||||
"The graffiti elements appear to shift or fade subtly.",
|
||||
"A sense of urban grit and raw energy.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the graffiti.",
|
||||
"accents": [
|
||||
"Rough textures and distressed surfaces.",
|
||||
"Deep, dark shadows that obscure details."
|
||||
],
|
||||
"mood": "gritty, urban, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and mood of the graffiti.",
|
||||
"style": "dark urban graffiti with a gritty aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A vibrant, abstract graffiti composition, focusing on color and form rather than recognizable imagery.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract graffiti composition, focusing on color and form rather than recognizable imagery.",
|
||||
"A dynamic splash of colors and shapes that evoke energy.",
|
||||
"Graffiti that is purely about the interplay of lines and hues.",
|
||||
"Abstract patterns created with spray paint.",
|
||||
"A composition that feels spontaneous and energetic."
|
||||
],
|
||||
"actions": [
|
||||
"Colors blend and interact in dynamic ways.",
|
||||
"Abstract shapes shift and evolve.",
|
||||
"A sense of pure visual energy.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and form in the abstract graffiti.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Textured spray paint effects and energetic lines."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract graffiti art with focus on color and form"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A close-up of intricate graffiti details, such as tags, stencils, or spray paint textures.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate graffiti details, such as tags, stencils, or spray paint textures.",
|
||||
"A detailed view of a complex graffiti tag.",
|
||||
"The texture of spray paint on a rough surface.",
|
||||
"A stencil artwork with fine, precise lines.",
|
||||
"The layering of different colors and techniques in graffiti."
|
||||
],
|
||||
"actions": [
|
||||
"The details subtly shift or animate.",
|
||||
"Light plays across the textures in interesting ways.",
|
||||
"A sense of the artist's hand and technique.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between graffiti elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the details.",
|
||||
"Subtle internal glow or luminescence within the textures."
|
||||
],
|
||||
"mood": "detailed, intricate, and textural",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the graffiti.",
|
||||
"style": "macro graffiti art with focus on detail and texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A futuristic graffiti artwork, incorporating elements of technology and urban futurism.",
|
||||
"sceneVariants": [
|
||||
"A futuristic graffiti artwork, incorporating elements of technology and urban futurism.",
|
||||
"Graffiti with neon colors and glowing elements.",
|
||||
"A mural depicting futuristic cityscapes or cybernetic figures.",
|
||||
"Graffiti that uses digital or holographic effects.",
|
||||
"Artwork that blends traditional graffiti techniques with futuristic aesthetics."
|
||||
],
|
||||
"actions": [
|
||||
"The graffiti elements pulse with light or energy.",
|
||||
"Digital or holographic effects appear and disappear.",
|
||||
"A sense of advanced urban culture.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the graffiti.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures and clean lines."
|
||||
],
|
||||
"mood": "futuristic, urban, and technologically advanced",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic graffiti art with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through graffiti.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through graffiti.",
|
||||
"Graffiti art appearing on abandoned buildings.",
|
||||
"A contrast between decaying structures and vibrant street art.",
|
||||
"The transformation of a derelict space through artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments."
|
||||
],
|
||||
"actions": [
|
||||
"The graffiti appears to be a force of renewal against decay.",
|
||||
"Subtle shifts in the environment that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten spaces."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant graffiti.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, vibrant paint.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the graffiti.",
|
||||
"style": "graffiti art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A minimalist graffiti landscape, where simple graffiti elements are placed in a vast urban environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist graffiti landscape, where simple graffiti elements are placed in a vast urban environment.",
|
||||
"A single, clean graffiti tag on a large, blank wall.",
|
||||
"A few scattered stencil pieces across a cityscape.",
|
||||
"A subtle graffiti element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the graffiti."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist graffiti elements subtly shift or align.",
|
||||
"A gentle change in color or opacity.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist graffiti within the urban expanse.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and urban",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the graffiti within the urban setting.",
|
||||
"style": "minimalist graffiti in an urban landscape"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A dark, moody scene featuring sharp, angular graffiti shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular graffiti shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken graffiti forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive graffiti architecture.",
|
||||
"A composition of colliding, fragmented graffiti shards.",
|
||||
"A shadowy figure composed of sharp, abstract graffiti planes."
|
||||
],
|
||||
"actions": [
|
||||
"Graffiti shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the graffiti forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the graffiti shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark graffiti with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting graffiti patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting graffiti patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of graffiti shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent graffiti forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of graffiti elements in a flat design style.",
|
||||
"A composition that plays with perspective, making graffiti shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Graffiti patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the graffiti elements.",
|
||||
"New graffiti patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of graffiti elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all graffiti forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into graffiti components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into graffiti components.",
|
||||
"A clock face made of interlocking graffiti gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of graffiti triangles.",
|
||||
"A tree with branches made of sharp, crystalline graffiti structures.",
|
||||
"A floating island composed of stacked graffiti blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Graffiti components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from graffiti parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal graffiti environment, focusing on the graffiti deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key graffiti elements.",
|
||||
"style": "surreal digital art with a focus on graffiti abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex graffiti structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex graffiti structures.",
|
||||
"A skyscraper that twists and curves like a graffiti helix made of segments.",
|
||||
"A city where all structures are based on repeating graffiti modules.",
|
||||
"A space station with a complex, multi-faceted graffiti design.",
|
||||
"An interior of a futuristic vehicle with graffiti control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the graffiti lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic graffiti displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic graffiti architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated graffiti edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with graffiti emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A close-up view of intricate graffiti patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate graffiti patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A graffiti pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming graffiti lattices.",
|
||||
"A complex network of interconnected graffiti lines and nodes.",
|
||||
"A pattern that appears to be woven from graffiti threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual graffiti elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the graffiti pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between graffiti elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the graffiti details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the graffiti patterns.",
|
||||
"style": "macro photography of intricate graffiti patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A playful scene where simple graffiti patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple graffiti patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of graffiti cubes and cylinders.",
|
||||
"A car constructed from graffiti spheres and rectangles.",
|
||||
"A house built from stacked graffiti blocks.",
|
||||
"A friendly monster composed of various graffiti forms."
|
||||
],
|
||||
"actions": [
|
||||
"Graffiti characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the graffiti creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the graffiti characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some graffiti elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "graffiti character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graffiti",
|
||||
"scene": "A dark, moody scene featuring sharp, angular graffiti shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular graffiti shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken graffiti forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive graffiti architecture.",
|
||||
"A composition of colliding, fragmented graffiti shards.",
|
||||
"A shadowy figure composed of sharp, abstract graffiti planes."
|
||||
],
|
||||
"actions": [
|
||||
"Graffiti shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the graffiti forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the graffiti shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark graffiti with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_impressionism.json
Normal file
404
src/data/abstract_art_impressionism.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A soft, atmospheric scene capturing a fleeting moment, with visible brushstrokes and a focus on light and color.",
|
||||
"sceneVariants": [
|
||||
"A soft, atmospheric scene capturing a fleeting moment, with visible brushstrokes and a focus on light and color.",
|
||||
"A landscape with dappled sunlight filtering through trees.",
|
||||
"A portrait with soft, blended features and a focus on emotion.",
|
||||
"A cityscape rendered with loose, energetic brushstrokes.",
|
||||
"A still life where objects are suggested rather than sharply defined."
|
||||
],
|
||||
"actions": [
|
||||
"The scene seems to shimmer or vibrate with light.",
|
||||
"Colors blend and interact softly.",
|
||||
"A sense of transient beauty and atmosphere.",
|
||||
"The artwork feels painterly and evocative."
|
||||
],
|
||||
"camera": "A camera that moves gently through the scene, emphasizing the soft focus and atmospheric qualities.",
|
||||
"accents": [
|
||||
"Visible, textured brushstrokes.",
|
||||
"Soft, blended colors that capture the quality of light."
|
||||
],
|
||||
"mood": "atmospheric, soft, and evocative",
|
||||
"lighting": "Soft, naturalistic lighting that emphasizes the play of light and color, often with dappled or diffused effects.",
|
||||
"style": "impressionistic painting with focus on light and atmosphere"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A minimalist impressionistic piece, using broad strokes and a limited palette to suggest form and feeling.",
|
||||
"sceneVariants": [
|
||||
"A minimalist impressionistic piece, using broad strokes and a limited palette to suggest form and feeling.",
|
||||
"A few key strokes to define a landscape or figure.",
|
||||
"A composition that relies on color harmony and subtle shifts.",
|
||||
"A scene where form is suggested rather than explicitly rendered.",
|
||||
"A focus on capturing the essence of a moment with minimal detail."
|
||||
],
|
||||
"actions": [
|
||||
"The broad strokes subtly blend or shift.",
|
||||
"A gentle change in color or tone.",
|
||||
"A sense of quiet contemplation and artistic suggestion.",
|
||||
"The artwork feels intentionally sparse and evocative."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the broad strokes and subtle color harmonies.",
|
||||
"accents": [
|
||||
"Visible, textured brushstrokes.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "minimalist, evocative, and contemplative",
|
||||
"lighting": "Soft, diffused lighting that emphasizes the brushwork and color.",
|
||||
"style": "minimalist impressionism with broad strokes and limited palette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A vibrant impressionistic scene with energetic brushwork and bold color choices, capturing a lively moment.",
|
||||
"sceneVariants": [
|
||||
"A vibrant impressionistic scene with energetic brushwork and bold color choices, capturing a lively moment.",
|
||||
"A bustling cityscape rendered with quick, lively strokes.",
|
||||
"A portrait with expressive brushwork and vibrant colors.",
|
||||
"A scene that feels full of movement and energy.",
|
||||
"Bold dabs of color that suggest form and light."
|
||||
],
|
||||
"actions": [
|
||||
"The brushstrokes seem to dance and vibrate.",
|
||||
"Colors blend and interact with visible energy.",
|
||||
"A sense of immediacy and captured motion.",
|
||||
"The artwork feels alive and dynamic."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the energetic brushwork and capture the lively atmosphere of the scene.",
|
||||
"accents": [
|
||||
"Thick, visible brushstrokes.",
|
||||
"Bright, saturated colors that create a lively visual."
|
||||
],
|
||||
"mood": "energetic, vibrant, and lively",
|
||||
"lighting": "Bright, often high-contrast lighting that emphasizes the colors and brushwork.",
|
||||
"style": "vibrant impressionism with energetic brushwork"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A dark, atmospheric impressionistic scene, focusing on mood and the subtle interplay of light and shadow.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric impressionistic scene, focusing on mood and the subtle interplay of light and shadow.",
|
||||
"A scene with deep shadows and subtle, soft highlights.",
|
||||
"Objects rendered with loose brushstrokes that suggest form in low light.",
|
||||
"A landscape rendered with a focus on atmospheric effects like fog or twilight.",
|
||||
"A composition that relies on the interplay of dark tones and soft light."
|
||||
],
|
||||
"actions": [
|
||||
"The soft highlights subtly shift or change.",
|
||||
"Shadows play a significant role in defining form.",
|
||||
"A sense of quiet mystery and introspection.",
|
||||
"The atmosphere feels subdued and evocative."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the mood and the subtle interplay of light and shadow.",
|
||||
"accents": [
|
||||
"Visible, textured brushstrokes.",
|
||||
"Deep, soft shadows and subtle highlights."
|
||||
],
|
||||
"mood": "atmospheric, mysterious, and subdued",
|
||||
"lighting": "Dramatic, low-key lighting that emphasizes the mood and the subtle interplay of light and shadow.",
|
||||
"style": "dark impressionism with focus on mood and atmosphere"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A vibrant, abstract impressionistic composition, focusing on color and the suggestion of form.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract impressionistic composition, focusing on color and the suggestion of form.",
|
||||
"A dynamic interplay of colors that create abstract patterns.",
|
||||
"Loose brushstrokes that form abstract shapes and textures.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of emotion and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The impressionistic elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve through brushwork.",
|
||||
"A sense of pure visual energy and emotion.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and brushwork in the abstract impressionism.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Visible, energetic brushstrokes."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract impressionism with focus on color and brushwork"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A close-up of intricate impressionistic details, such as layered brushstrokes or subtle color variations.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate impressionistic details, such as layered brushstrokes or subtle color variations.",
|
||||
"A detailed view of thick, textured paint.",
|
||||
"The subtle blending of colors in adjacent brushstrokes.",
|
||||
"The fine details of how light is captured through color.",
|
||||
"The interplay of different brushstrokes creating a lively surface."
|
||||
],
|
||||
"actions": [
|
||||
"The impressionistic details subtly shift or animate.",
|
||||
"Light plays across the textures in interesting ways.",
|
||||
"A sense of the artist's technique in capturing light and form.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between impressionistic elements.",
|
||||
"accents": [
|
||||
"Sharp focus on the brushstrokes and textures.",
|
||||
"Subtle internal glow or luminescence within the painted areas."
|
||||
],
|
||||
"mood": "detailed, textured, and painterly",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the impressionistic brushwork.",
|
||||
"style": "macro impressionism with focus on detail and texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A futuristic impressionistic artwork, blending the style with elements of technology and advanced design.",
|
||||
"sceneVariants": [
|
||||
"A futuristic impressionistic artwork, blending the style with elements of technology and advanced design.",
|
||||
"Impressionistic interpretations of futuristic cityscapes or technology.",
|
||||
"Portraits with a futuristic, yet soft and atmospheric feel.",
|
||||
"Scenes that combine traditional impressionistic techniques with digital effects.",
|
||||
"Artwork that captures the feeling of future experiences through an impressionistic lens."
|
||||
],
|
||||
"actions": [
|
||||
"The impressionistic elements pulse with light or digital effects.",
|
||||
"Colors shift and blend in a futuristic manner.",
|
||||
"A sense of advanced, yet soft and atmospheric, design.",
|
||||
"The artwork feels cutting-edge and evocative."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the impressionistic artwork.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements blended with soft brushstrokes.",
|
||||
"Sleek, metallic textures rendered with an impressionistic touch."
|
||||
],
|
||||
"mood": "futuristic, atmospheric, and evocative",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with soft glows and subtle contrasts.",
|
||||
"style": "futuristic impressionism with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through impressionism.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through impressionism.",
|
||||
"Impressionistic interpretations of abandoned urban spaces.",
|
||||
"A contrast between decaying environments and vibrant, atmospheric brushwork.",
|
||||
"The transformation of a derelict space through impressionistic artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through evocative light and color."
|
||||
],
|
||||
"actions": [
|
||||
"The impressionistic elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the atmosphere that suggest ongoing change.",
|
||||
"A sense of hope and transformation through light and color.",
|
||||
"The artwork breathes life into forgotten spaces with its evocative style."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant impressionistic elements.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with soft, painterly brushstrokes.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, evocative, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the impressionistic elements.",
|
||||
"style": "impressionism exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A minimalist impressionistic landscape, where simple brushstrokes and color suggest a scene.",
|
||||
"sceneVariants": [
|
||||
"A minimalist impressionistic landscape, where simple brushstrokes and color suggest a scene.",
|
||||
"A single, soft brushstroke defining a horizon line.",
|
||||
"A few dabs of color suggesting trees or water.",
|
||||
"A subtle impressionistic element that adds atmosphere to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the suggestion of form."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist impressionistic elements subtly blend or shift.",
|
||||
"A gentle change in color or tone.",
|
||||
"A sense of deliberate suggestion and understated impact.",
|
||||
"The artwork feels refined and evocative despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the broad strokes and subtle color harmonies.",
|
||||
"accents": [
|
||||
"Visible, textured brushstrokes.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, evocative, and understated",
|
||||
"lighting": "Clean, directional lighting that emphasizes the brushwork and color.",
|
||||
"style": "minimalist impressionism in a landscape"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular impressionistic shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular impressionistic shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken impressionistic forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive impressionistic architecture.",
|
||||
"A composition of colliding, fragmented impressionistic shards.",
|
||||
"A shadowy figure composed of sharp, abstract impressionistic planes."
|
||||
],
|
||||
"actions": [
|
||||
"Impressionistic shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the impressionistic forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the impressionistic shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark impressionism with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting impressionistic patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting impressionistic patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of impressionistic shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent impressionistic forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of impressionistic elements in a flat design style.",
|
||||
"A composition that plays with perspective, making impressionistic shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Impressionistic patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the impressionistic elements.",
|
||||
"New impressionistic patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of impressionistic elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Visible, textured brushstrokes on all impressionistic forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into impressionistic components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into impressionistic components.",
|
||||
"A clock face made of interlocking impressionistic gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of impressionistic triangles.",
|
||||
"A tree with branches made of sharp, crystalline impressionistic structures.",
|
||||
"A floating island composed of stacked impressionistic blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Impressionistic components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from impressionistic parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal impressionistic environment, focusing on the impressionistic deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key impressionistic elements.",
|
||||
"style": "surreal digital art with a focus on impressionistic abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex impressionistic structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex impressionistic structures.",
|
||||
"A skyscraper that twists and curves like an impressionistic helix made of segments.",
|
||||
"A city where all structures are based on repeating impressionistic modules.",
|
||||
"A space station with a complex, multi-faceted impressionistic design.",
|
||||
"An interior of a futuristic vehicle with impressionistic control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the impressionistic lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic impressionistic displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic impressionistic architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated impressionistic edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with impressionistic emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A close-up view of intricate impressionistic patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate impressionistic patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"An impressionistic pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming impressionistic lattices.",
|
||||
"A complex network of interconnected impressionistic lines and nodes.",
|
||||
"A pattern that appears to be woven from impressionistic threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual impressionistic elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the impressionistic pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between impressionistic elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the impressionistic details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the impressionistic patterns.",
|
||||
"style": "macro photography of intricate impressionistic patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A playful scene where simple impressionistic patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple impressionistic patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of impressionistic cubes and cylinders.",
|
||||
"A car constructed from impressionistic spheres and rectangles.",
|
||||
"A house built from stacked impressionistic blocks.",
|
||||
"A friendly monster composed of various impressionistic forms."
|
||||
],
|
||||
"actions": [
|
||||
"Impressionistic characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the impressionistic creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the impressionistic characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some impressionistic elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "impressionistic character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Impressionism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular impressionistic shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular impressionistic shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken impressionistic forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive impressionistic architecture.",
|
||||
"A composition of colliding, fragmented impressionistic shards.",
|
||||
"A shadowy figure composed of sharp, abstract impressionistic planes."
|
||||
],
|
||||
"actions": [
|
||||
"Impressionistic shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the impressionistic forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the impressionistic shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark impressionism with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
354
src/data/abstract_art_kaleidoscopes.json
Normal file
354
src/data/abstract_art_kaleidoscopes.json
Normal file
@ -0,0 +1,354 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A vibrant, symmetrical kaleidoscope pattern with shifting colors and intricate geometric designs.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, symmetrical kaleidoscope pattern with shifting colors and intricate geometric designs.",
|
||||
"A close-up of a kaleidoscope revealing a complex arrangement of mirrored shapes.",
|
||||
"A dynamic kaleidoscope effect where patterns rapidly change and evolve.",
|
||||
"A kaleidoscope with organic, floral-like patterns.",
|
||||
"A dark kaleidoscope with glowing, neon geometric elements."
|
||||
],
|
||||
"actions": [
|
||||
"The kaleidoscope pattern smoothly rotates and expands.",
|
||||
"Colors blend and transition seamlessly.",
|
||||
"New geometric elements appear and disappear within the pattern.",
|
||||
"A sense of infinite symmetry and visual harmony."
|
||||
],
|
||||
"camera": "A slow, steady camera that pans and zooms through the kaleidoscope, emphasizing its symmetry and intricate details.",
|
||||
"accents": [
|
||||
"Sharp, clean edges on all geometric elements.",
|
||||
"A subtle iridescent or metallic sheen on the mirrored surfaces."
|
||||
],
|
||||
"mood": "symmetrical, mesmerizing, and visually rich",
|
||||
"lighting": "Bright, even lighting that illuminates all facets of the kaleidoscope pattern.",
|
||||
"style": "vibrant, symmetrical kaleidoscope patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A minimalist kaleidoscope with a limited color palette, focusing on geometric precision.",
|
||||
"sceneVariants": [
|
||||
"A minimalist kaleidoscope with a limited color palette, focusing on geometric precision.",
|
||||
"A black and white kaleidoscope with sharp, contrasting patterns.",
|
||||
"A monochrome kaleidoscope with subtle variations in shade.",
|
||||
"A kaleidoscope with only two or three colors, creating a clean aesthetic.",
|
||||
"A kaleidoscope with a focus on negative space and simple geometric forms."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist patterns slowly rotate and align.",
|
||||
"Subtle shifts in color or shade occur.",
|
||||
"A sense of calm and order within the symmetry.",
|
||||
"The patterns appear clean and precisely rendered."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and symmetry of the minimalist kaleidoscope.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all geometric shapes.",
|
||||
"A subtle matte finish on the surfaces."
|
||||
],
|
||||
"mood": "minimalist, precise, and serene",
|
||||
"lighting": "Clean, directional lighting that emphasizes the geometric forms and negative space.",
|
||||
"style": "minimalist geometric kaleidoscope art"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "An energetic kaleidoscope with fast-changing patterns and a wide array of bright colors.",
|
||||
"sceneVariants": [
|
||||
"An energetic kaleidoscope with fast-changing patterns and a wide array of bright colors.",
|
||||
"A rapid-fire sequence of kaleidoscope designs.",
|
||||
"A chaotic yet beautiful explosion of mirrored shapes.",
|
||||
"A kaleidoscope effect that feels like a visual party.",
|
||||
"Patterns that pulse and flash with vibrant energy."
|
||||
],
|
||||
"actions": [
|
||||
"Patterns rapidly morph and transform.",
|
||||
"Colors flash and streak across the screen.",
|
||||
"A sense of constant motion and visual excitement.",
|
||||
"The kaleidoscope effect feels almost overwhelming in its intensity."
|
||||
],
|
||||
"camera": "Fast-paced, dynamic camera that follows the rapid changes in the kaleidoscope, with quick cuts and energetic movements.",
|
||||
"accents": [
|
||||
"Bright, saturated colors that create a high-energy visual.",
|
||||
"Sparkling or glowing effects on the mirrored elements."
|
||||
],
|
||||
"mood": "energetic, vibrant, and exciting",
|
||||
"lighting": "Bright, high-contrast lighting that makes the colors and patterns pop.",
|
||||
"style": "dynamic, high-energy kaleidoscope animation"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A surreal kaleidoscope where the patterns morph into recognizable objects or landscapes.",
|
||||
"sceneVariants": [
|
||||
"A surreal kaleidoscope where the patterns morph into recognizable objects or landscapes.",
|
||||
"A kaleidoscope that briefly forms images of flowers or animals before dissolving.",
|
||||
"A scene where the mirrored geometric shapes coalesce into a recognizable scene.",
|
||||
"A kaleidoscope effect that feels like a dream unfolding.",
|
||||
"Patterns that subtly suggest faces or figures within their symmetry."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric elements briefly form recognizable shapes.",
|
||||
"The kaleidoscope patterns seem to tell a story.",
|
||||
"A sense of magical transformation and visual surprise.",
|
||||
"The patterns shift in a way that feels intentional and meaningful."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on moments where recognizable forms emerge from the abstract patterns.",
|
||||
"accents": [
|
||||
"Soft, dreamlike lighting that enhances the surreal quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "surreal, dreamlike, and imaginative",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key moments of transformation.",
|
||||
"style": "surreal kaleidoscope art with emergent imagery"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A futuristic kaleidoscope design, perhaps integrated into technology or architecture.",
|
||||
"sceneVariants": [
|
||||
"A futuristic kaleidoscope design, perhaps integrated into technology or architecture.",
|
||||
"A holographic kaleidoscope display.",
|
||||
"A building facade that functions as a giant kaleidoscope.",
|
||||
"A vehicle with a kaleidoscope-inspired visual interface.",
|
||||
"A digital screen showing constantly evolving kaleidoscope patterns."
|
||||
],
|
||||
"actions": [
|
||||
"The futuristic kaleidoscope patterns pulse with light.",
|
||||
"Sections of the display reconfigure themselves.",
|
||||
"Holographic geometric elements appear and disappear.",
|
||||
"A sense of advanced, dynamic visual technology."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic kaleidoscope design.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the visual patterns."
|
||||
],
|
||||
"mood": "futuristic, sleek, and technologically advanced",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic visual design with kaleidoscope elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A close-up of a complex kaleidoscope pattern, revealing its infinite symmetry and detail.",
|
||||
"sceneVariants": [
|
||||
"A close-up of a complex kaleidoscope pattern, revealing its infinite symmetry and detail.",
|
||||
"A kaleidoscope that appears to be made of tiny, repeating versions of itself.",
|
||||
"A microscopic view of crystalline structures forming kaleidoscope lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes within a kaleidoscope.",
|
||||
"A pattern that seems to extend infinitely in all directions."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the kaleidoscope.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, infinite, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the kaleidoscope patterns.",
|
||||
"style": "macro photography of intricate kaleidoscope patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A playful and colorful kaleidoscope scene, with whimsical patterns and cheerful colors.",
|
||||
"sceneVariants": [
|
||||
"A playful and colorful kaleidoscope scene, with whimsical patterns and cheerful colors.",
|
||||
"A kaleidoscope with patterns resembling flowers or butterflies.",
|
||||
"A kaleidoscope with playful geometric characters formed by the mirrors.",
|
||||
"A kaleidoscope effect that feels like a child's drawing brought to life.",
|
||||
"Patterns that are simple, charming, and delightful."
|
||||
],
|
||||
"actions": [
|
||||
"Kaleidoscope elements gently animate and interact.",
|
||||
"Colors shift and blend in a cheerful manner.",
|
||||
"A sense of childlike wonder and imagination.",
|
||||
"Simple, delightful animations that bring the kaleidoscope imagery to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the whimsical nature of the kaleidoscope.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "whimsical kaleidoscope art with playful elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A dark, atmospheric kaleidoscope with intricate patterns and a sense of mystery.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric kaleidoscope with intricate patterns and a sense of mystery.",
|
||||
"A kaleidoscope landscape under a stormy, ominous sky.",
|
||||
"An interior with oppressive, repeating kaleidoscope architecture.",
|
||||
"A composition of colliding, fragmented kaleidoscope shards.",
|
||||
"A shadowy form composed of sharp, abstract kaleidoscope planes."
|
||||
],
|
||||
"actions": [
|
||||
"Kaleidoscope patterns slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the kaleidoscope forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the kaleidoscope."
|
||||
],
|
||||
"mood": "mysterious, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, atmospheric kaleidoscope art with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting kaleidoscope patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting kaleidoscope patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of kaleidoscope shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent kaleidoscope forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of kaleidoscope elements in a flat design style.",
|
||||
"A composition that plays with perspective, making kaleidoscope shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Kaleidoscope patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the kaleidoscopes.",
|
||||
"New kaleidoscope patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of kaleidoscopes move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all kaleidoscope forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into kaleidoscope components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into kaleidoscope components.",
|
||||
"A clock face made of interlocking kaleidoscope gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of kaleidoscope triangles.",
|
||||
"A tree with branches made of sharp, crystalline kaleidoscope structures.",
|
||||
"A floating island composed of stacked kaleidoscope blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Kaleidoscope components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from kaleidoscope parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal kaleidoscope environment, focusing on the kaleidoscope deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key kaleidoscope elements.",
|
||||
"style": "surreal digital art with a focus on kaleidoscope abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex kaleidoscope structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex kaleidoscope structures.",
|
||||
"A skyscraper that twists and curves like a kaleidoscope helix made of segments.",
|
||||
"A city where all structures are based on repeating kaleidoscope modules.",
|
||||
"A space station with a complex, multi-faceted kaleidoscope design.",
|
||||
"An interior of a futuristic vehicle with kaleidoscope control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the kaleidoscope lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic kaleidoscope displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic kaleidoscope architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated kaleidoscope edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with kaleidoscope emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A close-up view of intricate kaleidoscope patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate kaleidoscope patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A kaleidoscope pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming kaleidoscope lattices.",
|
||||
"A complex network of interconnected kaleidoscope lines and nodes.",
|
||||
"A pattern that appears to be woven from kaleidoscope threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual kaleidoscope elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the kaleidoscope.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between kaleidoscope elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the kaleidoscope details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the kaleidoscope patterns.",
|
||||
"style": "macro photography of intricate kaleidoscope patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A playful scene where simple kaleidoscope patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple kaleidoscope patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of kaleidoscope cubes and cylinders.",
|
||||
"A car constructed from kaleidoscope spheres and rectangles.",
|
||||
"A house built from stacked kaleidoscope blocks.",
|
||||
"A friendly monster composed of various kaleidoscope forms."
|
||||
],
|
||||
"actions": [
|
||||
"Kaleidoscope characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the kaleidoscope creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the kaleidoscope characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some kaleidoscope elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "kaleidoscope character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Kaleidoscopes",
|
||||
"scene": "A dark, moody scene featuring sharp, angular kaleidoscope shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular kaleidoscope shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken kaleidoscope forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive kaleidoscope architecture.",
|
||||
"A composition of colliding, fragmented kaleidoscope shards.",
|
||||
"A shadowy figure composed of sharp, abstract kaleidoscope planes."
|
||||
],
|
||||
"actions": [
|
||||
"Kaleidoscope shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the kaleidoscope forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the kaleidoscope."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark, angular kaleidoscope art with a sense of foreboding"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_light_art.json
Normal file
404
src/data/abstract_art_light_art.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "An abstract composition of glowing neon lines and shapes creating a vibrant, futuristic atmosphere.",
|
||||
"sceneVariants": [
|
||||
"An abstract composition of glowing neon lines and shapes creating a vibrant, futuristic atmosphere.",
|
||||
"Light trails forming intricate patterns in a dark space.",
|
||||
"Geometric forms illuminated by internal light sources.",
|
||||
"A scene composed entirely of light, with no solid objects.",
|
||||
"Light sculptures that cast dynamic shadows."
|
||||
],
|
||||
"actions": [
|
||||
"The light elements pulse, shift, and change color.",
|
||||
"Light trails weave and intertwine.",
|
||||
"A sense of ethereal energy and visual dynamism.",
|
||||
"The light itself seems to have form and substance."
|
||||
],
|
||||
"camera": "A camera that moves through the light installation, emphasizing the interplay of light, shadow, and form.",
|
||||
"accents": [
|
||||
"Vibrant, saturated neon colors.",
|
||||
"Sharp, glowing edges and luminous effects."
|
||||
],
|
||||
"mood": "vibrant, futuristic, and ethereal",
|
||||
"lighting": "Dominated by the light sources themselves, creating high contrast and dramatic illumination.",
|
||||
"style": "abstract light art with neon and glowing elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A minimalist light art piece, using simple forms and subtle illumination.",
|
||||
"sceneVariants": [
|
||||
"A minimalist light art piece, using simple forms and subtle illumination.",
|
||||
"A single, soft light source casting a gentle glow.",
|
||||
"A subtle gradient of light across a surface.",
|
||||
"A composition of faint, diffused light.",
|
||||
"A single beam of light cutting through darkness."
|
||||
],
|
||||
"actions": [
|
||||
"The light source subtly brightens or dims.",
|
||||
"A gentle shift in color temperature.",
|
||||
"A sense of calm and quietude.",
|
||||
"The illumination feels soft and unobtrusive."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle illumination and minimalist forms.",
|
||||
"accents": [
|
||||
"Soft, diffused light.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "calm, subtle, and serene",
|
||||
"lighting": "Soft, diffused lighting that creates a gentle, even illumination.",
|
||||
"style": "minimalist light art with subtle illumination"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A surreal light art composition, where light itself forms illogical or dreamlike structures.",
|
||||
"sceneVariants": [
|
||||
"A surreal light art composition, where light itself forms illogical or dreamlike structures.",
|
||||
"Light beams that bend and twist in impossible ways.",
|
||||
"Shadows that take on solid, tangible forms.",
|
||||
"A scene where light sources are hidden, and only the illuminated forms are visible.",
|
||||
"Light that creates illusions of depth or movement."
|
||||
],
|
||||
"actions": [
|
||||
"The light structures subtly morph or change shape.",
|
||||
"A sense of magical realism through light manipulation.",
|
||||
"The artwork blurs the lines between light and solid form.",
|
||||
"The light feels alive and interactive."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal light phenomena and illogical structures.",
|
||||
"accents": [
|
||||
"Unusual color combinations of light.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, ethereal, and dreamlike",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the light art, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal light art with dreamlike light phenomena"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A dark, atmospheric scene featuring light art that evokes a sense of mystery or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric scene featuring light art that evokes a sense of mystery or unease.",
|
||||
"Flickering lights in a dark, abandoned space.",
|
||||
"A single, intense light source casting long, distorted shadows.",
|
||||
"Light patterns that create unsettling illusions.",
|
||||
"A scene where light and shadow play a dramatic, suspenseful role."
|
||||
],
|
||||
"actions": [
|
||||
"The light sources flicker or pulse erratically.",
|
||||
"Shadows lengthen and distort, taking on strange forms.",
|
||||
"A sense of hidden meanings and unspoken threats.",
|
||||
"The atmosphere feels heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing or unsettling nature of the light art.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights from the light sources."
|
||||
],
|
||||
"mood": "mysterious, unsettling, and atmospheric",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights from the light sources.",
|
||||
"style": "dark atmospheric light art with dramatic shadows"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A vibrant, abstract light art composition, focusing on color and form created by light.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract light art composition, focusing on color and form created by light.",
|
||||
"A dynamic interplay of colored lights that create abstract patterns.",
|
||||
"Light that forms abstract shapes and textures.",
|
||||
"A scene that feels spontaneous and energetic through light.",
|
||||
"Bright colors of light used to create visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"Colors of light blend and interact dynamically.",
|
||||
"Abstract light forms shift and evolve.",
|
||||
"A sense of pure visual energy through light.",
|
||||
"The artwork feels spontaneous and expressive through its illumination."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and form created by the light art.",
|
||||
"accents": [
|
||||
"Bold, high-contrast colors of light.",
|
||||
"Luminous effects and glowing edges."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Dominated by the vibrant light sources, creating a lively and engaging atmosphere.",
|
||||
"style": "abstract light art with focus on color and form"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A close-up of intricate light art details, such as light patterns, textures, or illuminated edges.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate light art details, such as light patterns, textures, or illuminated edges.",
|
||||
"A detailed view of a complex light pattern.",
|
||||
"The texture created by light on a surface.",
|
||||
"The illuminated edges of a light sculpture.",
|
||||
"The layering of different light effects."
|
||||
],
|
||||
"actions": [
|
||||
"The light details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's technique in manipulating light.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between light art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the light details.",
|
||||
"Subtle internal glow or luminescence within the illuminated areas."
|
||||
],
|
||||
"mood": "detailed, intricate, and luminous",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the light art.",
|
||||
"style": "macro light art with focus on detail and illumination"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A futuristic light art artwork, incorporating elements of technology and urban futurism.",
|
||||
"sceneVariants": [
|
||||
"A futuristic light art artwork, incorporating elements of technology and urban futurism.",
|
||||
"Light art with interactive elements and responsive patterns.",
|
||||
"A scene depicting futuristic cityscapes or cybernetic figures rendered in light.",
|
||||
"Light art that uses digital or holographic effects.",
|
||||
"Artwork that blends traditional light art techniques with futuristic aesthetics."
|
||||
],
|
||||
"actions": [
|
||||
"The light art elements pulse with energy or respond to interaction.",
|
||||
"Digital or holographic light effects appear and disappear.",
|
||||
"A sense of advanced urban culture expressed through light.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the light art.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures and clean lines illuminated by light."
|
||||
],
|
||||
"mood": "futuristic, urban, and technologically advanced",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts created by the light art itself.",
|
||||
"style": "futuristic light art with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through light art.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through light art.",
|
||||
"Light art appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant light installations.",
|
||||
"The transformation of a derelict space through artistic illumination.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through light."
|
||||
],
|
||||
"actions": [
|
||||
"The light art appears to be a force of renewal against decay.",
|
||||
"Subtle shifts in the illumination that suggest ongoing change.",
|
||||
"A sense of hope and transformation through light.",
|
||||
"The artwork breathes life into forgotten spaces with its glow."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant light art.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, luminous light.",
|
||||
"Color palettes that highlight the contrast between old and new through light."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights from the light art.",
|
||||
"style": "light art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A minimalist light art landscape, where simple light elements are placed in a vast urban environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist light art landscape, where simple light elements are placed in a vast urban environment.",
|
||||
"A single, clean light beam on a large, dark surface.",
|
||||
"A few scattered subtle light installations across a cityscape.",
|
||||
"A subtle light element that adds character to an otherwise plain scene.",
|
||||
"The use of darkness to emphasize the light art."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist light elements subtly shift or align.",
|
||||
"A gentle change in brightness or color.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist light art within the urban expanse.",
|
||||
"accents": [
|
||||
"Crisp, defined illuminated edges.",
|
||||
"A limited, harmonious color palette of light."
|
||||
],
|
||||
"mood": "clean, understated, and urban",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the light art within the urban setting.",
|
||||
"style": "minimalist light art in an urban landscape"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular light art shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular light art shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken light art forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive light art architecture.",
|
||||
"A composition of colliding, fragmented light art shards.",
|
||||
"A shadowy figure composed of sharp, abstract light art planes."
|
||||
],
|
||||
"actions": [
|
||||
"Light art shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the light art forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights from the light art."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights from the light art.",
|
||||
"style": "dark light art with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting light art patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting light art patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of light art shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent light art forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of light art elements in a flat design style.",
|
||||
"A composition that plays with perspective, making light art shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Light art patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the light art elements.",
|
||||
"New light art patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of light art elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp illuminated edges on all light art forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into light art components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into light art components.",
|
||||
"A clock face made of interlocking light art gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of light art triangles.",
|
||||
"A tree with branches made of sharp, crystalline light art structures.",
|
||||
"A floating island composed of stacked light art blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Light art components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from light art parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal light art environment, focusing on the light art deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations of light that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key light art elements.",
|
||||
"style": "surreal digital art with a focus on light art abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex light art structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex light art structures.",
|
||||
"A skyscraper that twists and curves like a light art helix made of segments.",
|
||||
"A city where all structures are based on repeating light art modules.",
|
||||
"A space station with a complex, multi-faceted light art design.",
|
||||
"An interior of a futuristic vehicle with light art control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the light art lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic light art displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic light art architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated light art edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials, enhanced by the light art.",
|
||||
"style": "futuristic architectural visualization with light art emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A close-up view of intricate light art patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate light art patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A light art pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming light art lattices.",
|
||||
"A complex network of interconnected light art lines and nodes.",
|
||||
"A pattern that appears to be woven from light art threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual light art elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the light art pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between light art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the light art details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the light art patterns.",
|
||||
"style": "macro photography of intricate light art patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A playful scene where simple light art patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple light art patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of light art cubes and cylinders.",
|
||||
"A car constructed from light art spheres and rectangles.",
|
||||
"A house built from stacked light art blocks.",
|
||||
"A friendly monster composed of various light art forms."
|
||||
],
|
||||
"actions": [
|
||||
"Light art characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the light art creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the light art characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors of light.",
|
||||
"Soft, rounded edges on some light art elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "light art character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Light Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular light art shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular light art shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken light art forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive light art architecture.",
|
||||
"A composition of colliding, fragmented light art shards.",
|
||||
"A shadowy figure composed of sharp, abstract light art planes."
|
||||
],
|
||||
"actions": [
|
||||
"Light art shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the light art forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights from the light art."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights from the light art.",
|
||||
"style": "dark light art with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
354
src/data/abstract_art_mandalas.json
Normal file
354
src/data/abstract_art_mandalas.json
Normal file
@ -0,0 +1,354 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A symmetrical mandala with intricate geometric patterns radiating from a central point, rendered in vibrant colors.",
|
||||
"sceneVariants": [
|
||||
"A symmetrical mandala with intricate geometric patterns radiating from a central point, rendered in vibrant colors.",
|
||||
"A mandala with organic, floral-like elements integrated into the geometry.",
|
||||
"A minimalist mandala using only lines and subtle color variations.",
|
||||
"A mandala that appears to be made of light or energy.",
|
||||
"A complex mandala with multiple layers of patterns."
|
||||
],
|
||||
"actions": [
|
||||
"The mandala slowly rotates or expands.",
|
||||
"Colors smoothly transition and blend.",
|
||||
"New intricate patterns emerge from the existing ones.",
|
||||
"A sense of meditative flow and visual harmony."
|
||||
],
|
||||
"camera": "A camera that slowly zooms out from the center of the mandala, revealing its full symmetry and complexity.",
|
||||
"accents": [
|
||||
"Perfect symmetry and precise geometric execution.",
|
||||
"Vibrant, harmonious color palettes."
|
||||
],
|
||||
"mood": "symmetrical, meditative, and intricate",
|
||||
"lighting": "Even, soft lighting that highlights the patterns and colors without harsh shadows.",
|
||||
"style": "intricate geometric mandalas with vibrant colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A minimalist mandala focusing on clean lines and a limited color palette, emphasizing form and symmetry.",
|
||||
"sceneVariants": [
|
||||
"A minimalist mandala focusing on clean lines and a limited color palette, emphasizing form and symmetry.",
|
||||
"A black and white mandala with sharp, contrasting lines.",
|
||||
"A monochrome mandala with subtle variations in thickness and spacing.",
|
||||
"A mandala with only two or three colors, creating a clean aesthetic.",
|
||||
"A mandala that uses negative space effectively to define its form."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist patterns slowly rotate and align.",
|
||||
"Subtle shifts in line weight or color occur.",
|
||||
"A sense of calm and order within the symmetry.",
|
||||
"The patterns appear clean and precisely rendered."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and symmetry of the minimalist mandala.",
|
||||
"accents": [
|
||||
"Crisp, defined lines on all elements.",
|
||||
"A subtle matte finish on the surfaces."
|
||||
],
|
||||
"mood": "minimalist, precise, and serene",
|
||||
"lighting": "Clean, directional lighting that emphasizes the geometric forms and negative space.",
|
||||
"style": "minimalist mandalas with clean lines and symmetry"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A dynamic mandala with energetic patterns and a wide array of bright colors, creating a sense of movement.",
|
||||
"sceneVariants": [
|
||||
"A dynamic mandala with energetic patterns and a wide array of bright colors, creating a sense of movement.",
|
||||
"A rapid-fire sequence of mandala designs.",
|
||||
"A chaotic yet beautiful explosion of mirrored shapes.",
|
||||
"A mandala effect that feels like a visual celebration.",
|
||||
"Patterns that pulse and flash with vibrant energy."
|
||||
],
|
||||
"actions": [
|
||||
"Patterns rapidly morph and transform.",
|
||||
"Colors flash and streak across the screen.",
|
||||
"A sense of constant motion and visual excitement.",
|
||||
"The mandala effect feels almost overwhelming in its intensity."
|
||||
],
|
||||
"camera": "Fast-paced, dynamic camera that follows the rapid changes in the mandala, with quick cuts and energetic movements.",
|
||||
"accents": [
|
||||
"Bright, saturated colors that create a high-energy visual.",
|
||||
"Sparkling or glowing effects on the mandala elements."
|
||||
],
|
||||
"mood": "energetic, vibrant, and exciting",
|
||||
"lighting": "Bright, high-contrast lighting that makes the colors and patterns pop.",
|
||||
"style": "dynamic mandalas with energetic patterns and colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A surreal mandala where the patterns morph into recognizable objects or natural forms.",
|
||||
"sceneVariants": [
|
||||
"A surreal mandala where the patterns morph into recognizable objects or natural forms.",
|
||||
"A mandala that briefly forms images of flowers or animals before dissolving.",
|
||||
"A scene where the mirrored geometric shapes coalesce into recognizable natural elements.",
|
||||
"A mandala effect that feels like a dream unfolding.",
|
||||
"Patterns that subtly suggest organic forms within their symmetry."
|
||||
],
|
||||
"actions": [
|
||||
"Geometric elements briefly form recognizable shapes.",
|
||||
"The mandala patterns seem to tell a story or represent natural elements.",
|
||||
"A sense of magical transformation and visual surprise.",
|
||||
"The patterns shift in a way that feels organic and meaningful."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on moments where recognizable forms emerge from the abstract patterns.",
|
||||
"accents": [
|
||||
"Soft, dreamlike lighting that enhances the surreal quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "surreal, organic, and imaginative",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key moments of transformation.",
|
||||
"style": "surreal mandalas with emergent organic forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A futuristic mandala design, perhaps incorporating technological elements or glowing circuits.",
|
||||
"sceneVariants": [
|
||||
"A futuristic mandala design, perhaps incorporating technological elements or glowing circuits.",
|
||||
"A mandala with patterns resembling circuit boards or digital interfaces.",
|
||||
"A mandala composed of glowing neon lines and geometric shapes.",
|
||||
"A digital mandala that reacts to user input.",
|
||||
"A mandala that appears to be constructed from futuristic materials."
|
||||
],
|
||||
"actions": [
|
||||
"The futuristic mandala patterns pulse with light.",
|
||||
"Sections of the pattern reconfigure themselves.",
|
||||
"Holographic geometric elements appear and disappear.",
|
||||
"A sense of advanced, intricate design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic mandala design.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated geometric edges.",
|
||||
"Integrated lighting systems that highlight the visual patterns."
|
||||
],
|
||||
"mood": "futuristic, intricate, and technologically advanced",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic mandalas with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A close-up of a complex mandala pattern, revealing its infinite symmetry and detail.",
|
||||
"sceneVariants": [
|
||||
"A close-up of a complex mandala pattern, revealing its infinite symmetry and detail.",
|
||||
"A mandala that appears to be made of tiny, repeating versions of itself.",
|
||||
"A microscopic view of crystalline structures forming mandala lattices.",
|
||||
"A complex network of interconnected geometric lines and nodes within a mandala.",
|
||||
"A pattern that seems to extend infinitely in all directions."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual geometric elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the mandala.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between geometric elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the geometric details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, infinite, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the mandala patterns.",
|
||||
"style": "macro photography of intricate mandala patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A playful and colorful mandala scene, with whimsical patterns and cheerful colors.",
|
||||
"sceneVariants": [
|
||||
"A playful and colorful mandala scene, with whimsical patterns and cheerful colors.",
|
||||
"A mandala with patterns resembling flowers or butterflies.",
|
||||
"Mandalas with playful geometric characters formed by the symmetry.",
|
||||
"A mandala effect that feels like a child's drawing brought to life.",
|
||||
"Patterns that are simple, charming, and delightful."
|
||||
],
|
||||
"actions": [
|
||||
"Mandala elements gently animate and interact.",
|
||||
"Colors shift and blend in a cheerful manner.",
|
||||
"A sense of childlike wonder and imagination.",
|
||||
"Simple, delightful animations that bring the mandala imagery to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the whimsical nature of the mandala.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some geometric elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "playful mandalas with whimsical elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A dark, atmospheric mandala with intricate patterns and a sense of mystery.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric mandala with intricate patterns and a sense of mystery.",
|
||||
"A mandala landscape under a stormy, ominous sky.",
|
||||
"An interior with oppressive, repeating mandala architecture.",
|
||||
"A composition of colliding, fragmented mandala shards.",
|
||||
"A shadowy figure composed of sharp, abstract mandala planes."
|
||||
],
|
||||
"actions": [
|
||||
"Mandala patterns slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the mandala forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the mandala."
|
||||
],
|
||||
"mood": "mysterious, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark mandalas with a sense of foreboding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting mandala patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting mandala patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of mandala shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent mandala forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of mandala elements in a flat design style.",
|
||||
"A composition that plays with perspective, making mandala shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Mandala patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the mandala elements.",
|
||||
"New mandala patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of mandala elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all mandala forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into mandala components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into mandala components.",
|
||||
"A clock face made of interlocking mandala gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of mandala triangles.",
|
||||
"A tree with branches made of sharp, crystalline mandala structures.",
|
||||
"A floating island composed of stacked mandala blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Mandala components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from mandala parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal mandala environment, focusing on the mandala deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key mandala elements.",
|
||||
"style": "surreal digital art with a focus on mandala abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex mandala structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex mandala structures.",
|
||||
"A skyscraper that twists and curves like a mandala helix made of segments.",
|
||||
"A city where all structures are based on repeating mandala modules.",
|
||||
"A space station with a complex, multi-faceted mandala design.",
|
||||
"An interior of a futuristic vehicle with mandala control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the mandala lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic mandala displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic mandala architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated mandala edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with mandala emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A close-up view of intricate mandala patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate mandala patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A mandala pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming mandala lattices.",
|
||||
"A complex network of interconnected mandala lines and nodes.",
|
||||
"A pattern that appears to be woven from mandala threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual mandala elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the mandala pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between mandala elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the mandala details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the mandala patterns.",
|
||||
"style": "macro photography of intricate mandala patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A playful scene where simple mandala patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple mandala patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of mandala cubes and cylinders.",
|
||||
"A car constructed from mandala spheres and rectangles.",
|
||||
"A house built from stacked mandala blocks.",
|
||||
"A friendly monster composed of various mandala forms."
|
||||
],
|
||||
"actions": [
|
||||
"Mandala characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the mandala creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the mandala characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some mandala elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "mandala character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Mandalas",
|
||||
"scene": "A dark, moody scene featuring sharp, angular mandala shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular mandala shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken mandala forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive mandala architecture.",
|
||||
"A composition of colliding, fragmented mandala shards.",
|
||||
"A shadowy figure composed of sharp, abstract mandala planes."
|
||||
],
|
||||
"actions": [
|
||||
"Mandala shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the mandala forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the mandala shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark mandalas with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_minimalism.json
Normal file
404
src/data/abstract_art_minimalism.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A stark, clean composition with a single geometric shape in a vast, empty space.",
|
||||
"sceneVariants": [
|
||||
"A stark, clean composition with a single geometric shape in a vast, empty space.",
|
||||
"A single line drawn across a blank canvas.",
|
||||
"A sphere floating in a void of pure white.",
|
||||
"A subtle gradient of color filling the entire frame.",
|
||||
"A composition with only negative space and a hint of texture."
|
||||
],
|
||||
"actions": [
|
||||
"The geometric shape slowly rotates or subtly shifts position.",
|
||||
"A gentle, almost imperceptible change in color or light.",
|
||||
"A sense of profound stillness and quiet.",
|
||||
"The negative space itself feels like a tangible element."
|
||||
],
|
||||
"camera": "A static, centered shot that emphasizes the emptiness and the singular focus object.",
|
||||
"accents": [
|
||||
"Perfectly clean edges and smooth surfaces.",
|
||||
"A subtle, refined color palette."
|
||||
],
|
||||
"mood": "clean, serene, and contemplative",
|
||||
"lighting": "Soft, diffused lighting that creates a gentle, even illumination.",
|
||||
"style": "minimalist composition with a single focus element"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A composition using only a few basic elements, such as lines, dots, or simple shapes, arranged with great care.",
|
||||
"sceneVariants": [
|
||||
"A composition using only a few basic elements, such as lines, dots, or simple shapes, arranged with great care.",
|
||||
"A series of parallel lines with varying thickness.",
|
||||
"A scattering of dots that form a subtle pattern.",
|
||||
"A few overlapping geometric shapes in muted tones.",
|
||||
"A composition that relies on balance and negative space."
|
||||
],
|
||||
"actions": [
|
||||
"The elements subtly rearrange themselves.",
|
||||
"A gentle pulsing or breathing effect on the shapes.",
|
||||
"A sense of quiet harmony and balance.",
|
||||
"The composition feels intentionally sparse and deliberate."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the careful arrangement of the minimal elements.",
|
||||
"accents": [
|
||||
"Precise spacing and alignment of elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "balanced, ordered, and understated",
|
||||
"lighting": "Even, natural lighting that highlights the form and arrangement of the elements.",
|
||||
"style": "minimalist abstract art with sparse elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A scene that evokes a sense of calm and tranquility through simplicity and empty space.",
|
||||
"sceneVariants": [
|
||||
"A scene that evokes a sense of calm and tranquility through simplicity and empty space.",
|
||||
"A serene landscape with vast expanses of sky and land.",
|
||||
"A quiet interior with minimal furniture and ample open space.",
|
||||
"A beach with a single wave gently rolling onto the shore.",
|
||||
"A single object placed in a large, uncluttered room."
|
||||
],
|
||||
"actions": [
|
||||
"A gentle breeze rustling through the empty space.",
|
||||
"Subtle shifts in light and shadow.",
|
||||
"A feeling of peace and spaciousness.",
|
||||
"The scene feels uncluttered and calming."
|
||||
],
|
||||
"camera": "Slow, sweeping camera movements that capture the vastness and tranquility of the scene.",
|
||||
"accents": [
|
||||
"Soft, natural colors.",
|
||||
"A focus on natural textures and subtle details."
|
||||
],
|
||||
"mood": "calm, tranquil, and spacious",
|
||||
"lighting": "Soft, naturalistic lighting, mimicking daylight or a gentle sunset.",
|
||||
"style": "minimalist landscape or interior with a focus on calm"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A dark, minimalist composition with a focus on subtle textures and form.",
|
||||
"sceneVariants": [
|
||||
"A dark, minimalist composition with a focus on subtle textures and form.",
|
||||
"A black canvas with a single, textured line.",
|
||||
"A dark void with a subtly glowing, simple shape.",
|
||||
"A composition of deep shadows and minimal highlights.",
|
||||
"A scene that relies on the interplay of light and dark."
|
||||
],
|
||||
"actions": [
|
||||
"The texture subtly shifts or changes.",
|
||||
"Light plays across the surfaces in a gentle way.",
|
||||
"A sense of quiet depth and mystery.",
|
||||
"The composition feels refined and sophisticated."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the subtle textures and the interplay of light and shadow.",
|
||||
"accents": [
|
||||
"Rich, deep textures.",
|
||||
"Sharp, precise highlights on key areas."
|
||||
],
|
||||
"mood": "sophisticated, mysterious, and refined",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and forms.",
|
||||
"style": "dark minimalist art with focus on texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A playful and colorful minimalist scene, using simple shapes and bright colors.",
|
||||
"sceneVariants": [
|
||||
"A playful and colorful minimalist scene, using simple shapes and bright colors.",
|
||||
"A composition of colorful dots arranged in a pattern.",
|
||||
"Simple geometric shapes interacting in a cheerful way.",
|
||||
"A scene that feels lighthearted and fun.",
|
||||
"Bright colors used sparingly to create impact."
|
||||
],
|
||||
"actions": [
|
||||
"Simple shapes gently animate or interact.",
|
||||
"Colors shift and blend in a cheerful manner.",
|
||||
"A sense of childlike wonder and simplicity.",
|
||||
"The scene feels uncomplicated and joyful."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the cheerful nature of the scene.",
|
||||
"accents": [
|
||||
"Bright, saturated colors.",
|
||||
"Soft, rounded edges on some elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and simple",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "playful minimalist art with bright colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A close-up of a minimalist texture or pattern, focusing on its subtle details and repetition.",
|
||||
"sceneVariants": [
|
||||
"A close-up of a minimalist texture or pattern, focusing on its subtle details and repetition.",
|
||||
"A repeating pattern of simple lines or dots.",
|
||||
"A subtle texture that creates a sense of depth.",
|
||||
"A pattern that is almost imperceptible but creates a visual rhythm.",
|
||||
"A detail that is simple yet holds a quiet beauty."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern subtly shifts or changes.",
|
||||
"Light plays across the surfaces in a gentle way.",
|
||||
"A sense of quiet rhythm and order.",
|
||||
"The detail invites closer inspection and contemplation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the subtle relationships between elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the subtle details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, subtle, and rhythmic",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the minimalist pattern.",
|
||||
"style": "macro minimalism with focus on subtle patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A futuristic minimalist scene, blending advanced technology with extreme simplicity.",
|
||||
"sceneVariants": [
|
||||
"A futuristic minimalist scene, blending advanced technology with extreme simplicity.",
|
||||
"A sleek, minimalist interface with only essential elements.",
|
||||
"A futuristic vehicle with clean lines and minimal ornamentation.",
|
||||
"A minimalist habitat on another planet.",
|
||||
"A virtual reality environment that is stark and functional."
|
||||
],
|
||||
"actions": [
|
||||
"Technology operates with quiet efficiency.",
|
||||
"The environment feels clean and uncluttered.",
|
||||
"A sense of advanced, streamlined design.",
|
||||
"The fusion of technology and extreme simplicity."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic minimalist environment.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and clean lines.",
|
||||
"Integrated lighting systems that highlight the functional design."
|
||||
],
|
||||
"mood": "futuristic, sleek, and functional",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic minimalism with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A composition that plays with the concept of emptiness and absence.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of emptiness and absence.",
|
||||
"A frame filled mostly with empty space, with a single small object.",
|
||||
"A scene where something is implied but not shown.",
|
||||
"A focus on what is *not* there.",
|
||||
"A sense of quietude and introspection."
|
||||
],
|
||||
"actions": [
|
||||
"The emptiness itself feels like a presence.",
|
||||
"Subtle shifts in the environment that suggest unseen activity.",
|
||||
"A feeling of quiet contemplation.",
|
||||
"The absence of elements creates a powerful visual statement."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the vastness of the empty space, perhaps with slow pans or static shots.",
|
||||
"accents": [
|
||||
"Subtle textures in the empty areas.",
|
||||
"A limited color palette that enhances the feeling of absence."
|
||||
],
|
||||
"mood": "empty, contemplative, and profound",
|
||||
"lighting": "Lighting that enhances the sense of emptiness, perhaps with soft, diffused light or stark contrasts.",
|
||||
"style": "minimalism exploring absence and emptiness"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A minimalist landscape where natural elements are reduced to their simplest forms.",
|
||||
"sceneVariants": [
|
||||
"A minimalist landscape where natural elements are reduced to their simplest forms.",
|
||||
"A vast, flat plain with a single, stylized tree.",
|
||||
"A calm body of water with a few simple geometric islands.",
|
||||
"A sky with a single, perfect cloud.",
|
||||
"A mountain range reduced to a few clean lines."
|
||||
],
|
||||
"actions": [
|
||||
"Gentle movement in the natural elements (e.g., a subtle breeze).",
|
||||
"Subtle shifts in light and color.",
|
||||
"A feeling of peace and natural harmony.",
|
||||
"The scene feels uncluttered and serene."
|
||||
],
|
||||
"camera": "Slow, sweeping camera movements that capture the vastness and simplicity of the minimalist landscape.",
|
||||
"accents": [
|
||||
"Soft, natural colors.",
|
||||
"A focus on clean lines and simple forms."
|
||||
],
|
||||
"mood": "natural, serene, and simple",
|
||||
"lighting": "Soft, naturalistic lighting, mimicking daylight or a gentle sunset.",
|
||||
"style": "minimalist landscape art with simplified natural elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular minimalist shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular minimalist shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken minimalist forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive minimalist architecture.",
|
||||
"A composition of colliding, fragmented minimalist shards.",
|
||||
"A shadowy figure composed of sharp, abstract minimalist planes."
|
||||
],
|
||||
"actions": [
|
||||
"Minimalist shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the minimalist forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the minimalist shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark minimalism with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting minimalist patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting minimalist patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of minimalist shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent minimalist forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of minimalist elements in a flat design style.",
|
||||
"A composition that plays with perspective, making minimalist shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Minimalist patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the minimalist elements.",
|
||||
"New minimalist patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of minimalist elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all minimalist forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into minimalist components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into minimalist components.",
|
||||
"A clock face made of interlocking minimalist gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of minimalist triangles.",
|
||||
"A tree with branches made of sharp, crystalline minimalist structures.",
|
||||
"A floating island composed of stacked minimalist blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Minimalist components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from minimalist parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal minimalist environment, focusing on the minimalist deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key minimalist elements.",
|
||||
"style": "surreal digital art with a focus on minimalist abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex minimalist structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex minimalist structures.",
|
||||
"A skyscraper that twists and curves like a minimalist helix made of segments.",
|
||||
"A city where all structures are based on repeating minimalist modules.",
|
||||
"A space station with a complex, multi-faceted minimalist design.",
|
||||
"An interior of a futuristic vehicle with minimalist control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the minimalist lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic minimalist displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic minimalist architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated minimalist edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with minimalist emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A close-up view of intricate minimalist patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate minimalist patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A minimalist pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming minimalist lattices.",
|
||||
"A complex network of interconnected minimalist lines and nodes.",
|
||||
"A pattern that appears to be woven from minimalist threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual minimalist elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the minimalist pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between minimalist elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the minimalist details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the minimalist patterns.",
|
||||
"style": "macro photography of intricate minimalist patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A playful scene where simple minimalist patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple minimalist patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of minimalist cubes and cylinders.",
|
||||
"A car constructed from minimalist spheres and rectangles.",
|
||||
"A house built from stacked minimalist blocks.",
|
||||
"A friendly monster composed of various minimalist forms."
|
||||
],
|
||||
"actions": [
|
||||
"Minimalist characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the minimalist creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the minimalist characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some minimalist elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "minimalist character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Minimalism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular minimalist shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular minimalist shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken minimalist forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive minimalist architecture.",
|
||||
"A composition of colliding, fragmented minimalist shards.",
|
||||
"A shadowy figure composed of sharp, abstract minimalist planes."
|
||||
],
|
||||
"actions": [
|
||||
"Minimalist shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the minimalist forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the minimalist shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark minimalism with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_optical_illusions.json
Normal file
404
src/data/abstract_art_optical_illusions.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A geometric pattern that creates a sense of impossible depth or movement, playing with the viewer's perception.",
|
||||
"sceneVariants": [
|
||||
"A geometric pattern that creates a sense of impossible depth or movement, playing with the viewer's perception.",
|
||||
"An Escher-like impossible staircase or structure.",
|
||||
"A pattern that appears to shift or vibrate.",
|
||||
"An illusion of objects appearing to float or recede.",
|
||||
"A pattern that tricks the eye into seeing shapes that aren't there."
|
||||
],
|
||||
"actions": [
|
||||
"The illusion subtly changes or intensifies.",
|
||||
"Elements appear to move or transform based on perspective.",
|
||||
"A sense of visual trickery and fascination.",
|
||||
"The pattern challenges the viewer's perception of reality."
|
||||
],
|
||||
"camera": "A camera that moves to highlight the illusion, perhaps from different angles to reveal its deceptive nature.",
|
||||
"accents": [
|
||||
"Precise geometric patterns and sharp lines.",
|
||||
"Carefully chosen color contrasts to enhance the illusion."
|
||||
],
|
||||
"mood": "deceptive, fascinating, and mind-bending",
|
||||
"lighting": "Lighting that emphasizes the illusion, perhaps with sharp contrasts or subtle gradients.",
|
||||
"style": "geometric optical illusions with impossible perspectives"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A composition that uses color and contrast to create afterimages or visual distortions.",
|
||||
"sceneVariants": [
|
||||
"A composition that uses color and contrast to create afterimages or visual distortions.",
|
||||
"A pattern of bright colors that leaves a lingering impression.",
|
||||
"High-contrast elements that create a vibrating effect.",
|
||||
"An illusion that plays with simultaneous color contrast.",
|
||||
"A scene that appears to change color depending on the viewer's focus."
|
||||
],
|
||||
"actions": [
|
||||
"The colors subtly shift or intensify.",
|
||||
"A lingering afterimage appears when the pattern changes.",
|
||||
"A sense of visual dynamism and perceptual play.",
|
||||
"The colors seem to interact and influence each other."
|
||||
],
|
||||
"camera": "A steady camera that allows the viewer to focus on the color interactions and perceptual effects.",
|
||||
"accents": [
|
||||
"Bold, contrasting color palettes.",
|
||||
"Sharp, defined edges to enhance color perception."
|
||||
],
|
||||
"mood": "vibrant, perceptual, and visually stimulating",
|
||||
"lighting": "Bright, high-contrast lighting that emphasizes the color interactions.",
|
||||
"style": "optical illusions based on color and contrast"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "An illusion of depth created through perspective, shading, or overlapping elements.",
|
||||
"sceneVariants": [
|
||||
"An illusion of depth created through perspective, shading, or overlapping elements.",
|
||||
"A scene that appears to have layers receding into the distance.",
|
||||
"Objects that seem to pop out of the screen.",
|
||||
"A pattern that creates a sense of a three-dimensional space.",
|
||||
"An illusion of tunnels or infinite corridors."
|
||||
],
|
||||
"actions": [
|
||||
"The sense of depth subtly shifts or changes.",
|
||||
"Elements appear to move forward or backward.",
|
||||
"A feeling of being drawn into the visual space.",
|
||||
"The illusion of depth is convincing and engaging."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the illusion of depth, perhaps with slow zooms or pans that reveal new layers.",
|
||||
"accents": [
|
||||
"Careful use of perspective lines and vanishing points.",
|
||||
"Shading that enhances the sense of volume and depth."
|
||||
],
|
||||
"mood": "deep, immersive, and perspective-bending",
|
||||
"lighting": "Lighting that enhances the illusion of depth, perhaps with directional light creating strong shadows.",
|
||||
"style": "optical illusions based on perspective and depth"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A dark, moody scene featuring optical illusions that create a sense of mystery or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring optical illusions that create a sense of mystery or unease.",
|
||||
"Illusory patterns that seem to shift or writhe in the shadows.",
|
||||
"A scene where hidden images or figures emerge from the darkness.",
|
||||
"An illusion that plays with perception in a disorienting way.",
|
||||
"A composition that evokes a sense of the uncanny through visual tricks."
|
||||
],
|
||||
"actions": [
|
||||
"The illusory elements subtly shift or change.",
|
||||
"Shadows play tricks on the eyes.",
|
||||
"A sense of hidden meanings and perceptual ambiguity.",
|
||||
"The atmosphere feels unsettling and mysterious."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the mysterious or unsettling nature of the illusions.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Subtle, ambiguous forms that play with perception."
|
||||
],
|
||||
"mood": "mysterious, disorienting, and uncanny",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and subtle, ambiguous highlights.",
|
||||
"style": "dark optical illusions with a sense of mystery"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A vibrant, abstract composition of optical illusions in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of optical illusions in bright, bold colors.",
|
||||
"Dynamic patterns that create a sense of movement and energy.",
|
||||
"Illusory shapes that overlap and interact.",
|
||||
"A chaotic yet harmonious blend of visual tricks.",
|
||||
"A composition that plays with perception in a lively way."
|
||||
],
|
||||
"actions": [
|
||||
"The illusory elements pulse or shift color.",
|
||||
"Patterns appear to move or change.",
|
||||
"A sense of pure visual energy and playfulness.",
|
||||
"The artwork feels spontaneous and engaging."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of the optical illusions, emphasizing their movement and energy.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Sharp, defined lines to enhance the illusory effects."
|
||||
],
|
||||
"mood": "lively, dynamic, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and illusory effects.",
|
||||
"style": "vibrant abstract optical illusions with bold colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A close-up of intricate optical illusion details, such as fine patterns or subtle distortions.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate optical illusion details, such as fine patterns or subtle distortions.",
|
||||
"A detailed view of a complex geometric pattern that creates an illusion.",
|
||||
"The subtle distortion of lines or shapes.",
|
||||
"The fine details of an illusion that require close inspection.",
|
||||
"The interplay of elements that create a perceptual trick."
|
||||
],
|
||||
"actions": [
|
||||
"The illusory details subtly shift or animate.",
|
||||
"Light plays across the patterns in interesting ways.",
|
||||
"A sense of the artist's precision in creating the illusion.",
|
||||
"The detail invites closer inspection and contemplation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between elements that create the illusion.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the illusory details.",
|
||||
"Subtle internal glow or luminescence within the patterns."
|
||||
],
|
||||
"mood": "detailed, intricate, and perceptual",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the optical illusions.",
|
||||
"style": "macro optical illusions with focus on detail and distortion"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A futuristic optical illusion, incorporating elements of technology and advanced visual effects.",
|
||||
"sceneVariants": [
|
||||
"A futuristic optical illusion, incorporating elements of technology and advanced visual effects.",
|
||||
"Illusions created with holographic displays or augmented reality.",
|
||||
"A scene depicting futuristic environments with mind-bending visual tricks.",
|
||||
"Optical illusions that respond to viewer interaction.",
|
||||
"Renderings that showcase cutting-edge visual effects for illusions."
|
||||
],
|
||||
"actions": [
|
||||
"The illusory elements pulse with light or respond to interaction.",
|
||||
"Digital or holographic effects create perceptual shifts.",
|
||||
"A sense of advanced visual technology.",
|
||||
"The rendering feels cutting-edge and interactive."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the optical illusions.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures and clean lines that enhance illusions."
|
||||
],
|
||||
"mood": "futuristic, interactive, and visually deceptive",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic optical illusions with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through optical illusions.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through optical illusions.",
|
||||
"Illusory street art appearing on abandoned buildings.",
|
||||
"A contrast between decaying environments and mind-bending visual tricks.",
|
||||
"The transformation of a derelict space through illusory artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through perceptual play."
|
||||
],
|
||||
"actions": [
|
||||
"The illusory elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the perception that suggest ongoing change.",
|
||||
"A sense of hope and transformation through visual trickery.",
|
||||
"The artwork breathes life into forgotten spaces with its illusions."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant optical illusions.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with sharp, illusory patterns.",
|
||||
"Color palettes that highlight the contrast between old and new through perceptual effects."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and perceptually engaging",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the illusory elements.",
|
||||
"style": "optical illusions exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A minimalist optical illusion landscape, where simple illusory elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist optical illusion landscape, where simple illusory elements are placed in a vast environment.",
|
||||
"A single, clean geometric pattern creating an illusion on a large surface.",
|
||||
"A few scattered subtle illusory elements across a scene.",
|
||||
"A subtle optical illusion that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the illusion."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist illusory elements subtly shift or align.",
|
||||
"A gentle change in pattern or distortion.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist optical illusion within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined lines and patterns.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and perceptual",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the optical illusions.",
|
||||
"style": "minimalist optical illusions in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A dark, moody scene featuring sharp, angular optical illusion shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular optical illusion shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken illusory forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive illusory architecture.",
|
||||
"A composition of colliding, fragmented illusory shards.",
|
||||
"A shadowy figure composed of sharp, abstract illusory planes."
|
||||
],
|
||||
"actions": [
|
||||
"Illusory shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the illusory forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the illusory shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark optical illusions with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting optical illusion patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting optical illusion patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of illusory shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent illusory forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of illusory elements in a flat design style.",
|
||||
"A composition that plays with perspective, making illusory shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Illusory patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the illusory elements.",
|
||||
"New illusory patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of illusory elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all illusory forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into illusory components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into illusory components.",
|
||||
"A clock face made of interlocking illusory gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of illusory triangles.",
|
||||
"A tree with branches made of sharp, crystalline illusory structures.",
|
||||
"A floating island composed of stacked illusory blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Illusory components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from illusory parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal illusory environment, focusing on the illusory deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key illusory elements.",
|
||||
"style": "surreal digital art with a focus on illusory abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex illusory structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex illusory structures.",
|
||||
"A skyscraper that twists and curves like an illusory helix made of segments.",
|
||||
"A city where all structures are based on repeating illusory modules.",
|
||||
"A space station with a complex, multi-faceted illusory design.",
|
||||
"An interior of a futuristic vehicle with illusory control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the illusory lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic illusory displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic illusory architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated illusory edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with illusory emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A close-up view of intricate illusory patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate illusory patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"An illusory pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming illusory lattices.",
|
||||
"A complex network of interconnected illusory lines and nodes.",
|
||||
"A pattern that appears to be woven from illusory threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual illusory elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the illusory pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between illusory elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the illusory details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the illusory patterns.",
|
||||
"style": "macro photography of intricate illusory patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A playful scene where simple illusory patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple illusory patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of illusory cubes and cylinders.",
|
||||
"A car constructed from illusory spheres and rectangles.",
|
||||
"A house built from stacked illusory blocks.",
|
||||
"A friendly monster composed of various illusory forms."
|
||||
],
|
||||
"actions": [
|
||||
"Illusory characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the illusory creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the illusory characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some illusory elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "illusory character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Optical Illusions",
|
||||
"scene": "A dark, moody scene featuring sharp, angular illusory shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular illusory shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken illusory forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive illusory architecture.",
|
||||
"A composition of colliding, fragmented illusory shards.",
|
||||
"A shadowy figure composed of sharp, abstract illusory planes."
|
||||
],
|
||||
"actions": [
|
||||
"Illusory shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the illusory forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the illusory shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark optical illusions with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_pop_art.json
Normal file
404
src/data/abstract_art_pop_art.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A vibrant and bold composition featuring everyday objects or iconic imagery rendered in bright, flat colors and bold outlines.",
|
||||
"sceneVariants": [
|
||||
"A vibrant and bold composition featuring everyday objects or iconic imagery rendered in bright, flat colors and bold outlines.",
|
||||
"A repeated pattern of a common object, like a soup can or a comic book panel.",
|
||||
"A portrait of a celebrity or cultural icon in a stylized, graphic manner.",
|
||||
"A scene that plays with consumer culture and mass production.",
|
||||
"An abstract composition using bold color blocking and graphic elements."
|
||||
],
|
||||
"actions": [
|
||||
"The elements subtly shift or change color.",
|
||||
"A sense of graphic energy and visual impact.",
|
||||
"The imagery feels familiar yet recontextualized.",
|
||||
"The composition is clean and impactful."
|
||||
],
|
||||
"camera": "A steady, direct camera that presents the artwork clearly, emphasizing its graphic qualities.",
|
||||
"accents": [
|
||||
"Bold, flat colors with minimal shading.",
|
||||
"Strong, graphic outlines around objects and shapes."
|
||||
],
|
||||
"mood": "bold, graphic, and culturally relevant",
|
||||
"lighting": "Bright, even lighting that emphasizes the flat colors and graphic elements.",
|
||||
"style": "pop art with bold colors and graphic elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A minimalist pop art piece, using simple imagery and a limited, impactful color palette.",
|
||||
"sceneVariants": [
|
||||
"A minimalist pop art piece, using simple imagery and a limited, impactful color palette.",
|
||||
"A single, iconic object rendered with clean lines.",
|
||||
"A composition with only a few key elements and bold color blocking.",
|
||||
"A graphic representation of a common symbol.",
|
||||
"A focus on negative space to highlight the main subject."
|
||||
],
|
||||
"actions": [
|
||||
"The elements subtly shift or align.",
|
||||
"A gentle change in color or opacity.",
|
||||
"A sense of clean design and deliberate placement.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist pop art.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, graphic, and impactful",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the pop art.",
|
||||
"style": "minimalist pop art with clean lines and simple imagery"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A surreal pop art composition, blending everyday objects with dreamlike or illogical elements.",
|
||||
"sceneVariants": [
|
||||
"A surreal pop art composition, blending everyday objects with dreamlike or illogical elements.",
|
||||
"Familiar objects distorted or placed in unexpected contexts.",
|
||||
"A scene that combines pop culture imagery with surreal juxtapositions.",
|
||||
"Everyday items rendered with exaggerated colors and forms.",
|
||||
"A playful take on the uncanny through pop art."
|
||||
],
|
||||
"actions": [
|
||||
"The collage elements subtly morph or change context.",
|
||||
"A sense of playful absurdity.",
|
||||
"The artwork blurs the lines between reality and imagination.",
|
||||
"The pop art feels like a commentary on perception."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal juxtapositions and illogical combinations within the pop art.",
|
||||
"accents": [
|
||||
"Unusual combinations of colors and imagery.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, playful, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the pop art, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal pop art with dreamlike and illogical combinations"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A dark, moody pop art piece with a gritty, urban aesthetic, perhaps commenting on consumerism or societal issues.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody pop art piece with a gritty, urban aesthetic, perhaps commenting on consumerism or societal issues.",
|
||||
"Imagery of mass-produced goods rendered with a sense of decay.",
|
||||
"A collage of advertising elements with a critical or unsettling tone.",
|
||||
"Pop art that conveys a sense of social commentary or critique.",
|
||||
"A weathered pop art piece with fragmented elements."
|
||||
],
|
||||
"actions": [
|
||||
"The pop art elements appear to shift or fade subtly.",
|
||||
"A sense of urban grit and raw commentary.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the pop art.",
|
||||
"accents": [
|
||||
"Rough textures and distressed surfaces.",
|
||||
"Deep, dark shadows that obscure details."
|
||||
],
|
||||
"mood": "gritty, critical, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and mood of the pop art.",
|
||||
"style": "dark pop art with a gritty, critical aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A vibrant, abstract pop art composition, focusing on color and graphic elements.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract pop art composition, focusing on color and graphic elements.",
|
||||
"A dynamic interplay of colors and shapes that evoke energy.",
|
||||
"Pop art elements that create abstract patterns.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of joy and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The pop art elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve.",
|
||||
"A sense of pure visual energy and playfulness.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and form in the abstract pop art.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting graphic elements and clean lines."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract pop art with focus on color and graphic elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A close-up of intricate pop art details, such as graphic patterns, repeated motifs, or bold outlines.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate pop art details, such as graphic patterns, repeated motifs, or bold outlines.",
|
||||
"A detailed view of a repeating graphic pattern.",
|
||||
"The texture of flat color areas and bold lines.",
|
||||
"The fine details of photographic elements within the pop art.",
|
||||
"The interplay of different graphic elements creating a striking surface."
|
||||
],
|
||||
"actions": [
|
||||
"The pop art details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's precision in graphic design.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between pop art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the pop art details.",
|
||||
"Subtle internal glow or luminescence within the graphic elements."
|
||||
],
|
||||
"mood": "detailed, graphic, and striking",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the pop art.",
|
||||
"style": "macro pop art with focus on detail and graphic elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A futuristic pop art artwork, incorporating elements of technology and modern consumer culture.",
|
||||
"sceneVariants": [
|
||||
"A futuristic pop art artwork, incorporating elements of technology and modern consumer culture.",
|
||||
"Pop art with neon colors and digital interfaces.",
|
||||
"A scene depicting futuristic products or advertising.",
|
||||
"Pop art that uses interactive or responsive elements.",
|
||||
"Artwork that blends digital aesthetics with pop art themes."
|
||||
],
|
||||
"actions": [
|
||||
"The pop art elements pulse with digital effects or respond to interaction.",
|
||||
"Digital glitches and futuristic interfaces appear and disappear.",
|
||||
"A sense of advanced consumer culture.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the pop art.",
|
||||
"accents": [
|
||||
"Digital textures and glitch effects.",
|
||||
"Sleek, metallic elements combined with bold colors and graphic lines."
|
||||
],
|
||||
"mood": "futuristic, consumerist, and dynamic",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic pop art with technological and consumerist elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through pop art.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through pop art.",
|
||||
"Pop art elements appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant pop art pieces.",
|
||||
"The transformation of a derelict space through pop art intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through commentary on mass culture."
|
||||
],
|
||||
"actions": [
|
||||
"The pop art elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the composition that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten spaces with its commentary."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant pop art elements.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, graphic pop art elements.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, critical, and commentary-driven",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the pop art elements.",
|
||||
"style": "pop art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A minimalist pop art landscape, where simple pop art elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist pop art landscape, where simple pop art elements are placed in a vast environment.",
|
||||
"A single, clean graphic icon on a large, blank surface.",
|
||||
"A few scattered subtle pop art elements across a scene.",
|
||||
"A subtle pop art element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the pop art."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist pop art elements subtly shift or align.",
|
||||
"A gentle change in color or placement.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist pop art within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, graphic, and understated",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the pop art elements.",
|
||||
"style": "minimalist pop art in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular pop art shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular pop art shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken pop art forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive pop art architecture.",
|
||||
"A composition of colliding, fragmented pop art shards.",
|
||||
"A shadowy figure composed of sharp, abstract pop art planes."
|
||||
],
|
||||
"actions": [
|
||||
"Pop art shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the pop art forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the pop art shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark pop art with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting pop art patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting pop art patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of pop art shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent pop art forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of pop art elements in a flat design style.",
|
||||
"A composition that plays with perspective, making pop art shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Pop art patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the pop art elements.",
|
||||
"New pop art patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of pop art elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all pop art forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into pop art components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into pop art components.",
|
||||
"A clock face made of interlocking pop art gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of pop art triangles.",
|
||||
"A tree with branches made of sharp, crystalline pop art structures.",
|
||||
"A floating island composed of stacked pop art blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Pop art components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from pop art parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal pop art environment, focusing on the pop art deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key pop art elements.",
|
||||
"style": "surreal digital art with a focus on pop art abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex pop art structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex pop art structures.",
|
||||
"A skyscraper that twists and curves like a pop art helix made of segments.",
|
||||
"A city where all structures are based on repeating pop art modules.",
|
||||
"A space station with a complex, multi-faceted pop art design.",
|
||||
"An interior of a futuristic vehicle with pop art control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the pop art lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic pop art displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic pop art architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated pop art edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with pop art emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A close-up view of intricate pop art patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate pop art patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A pop art pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming pop art lattices.",
|
||||
"A complex network of interconnected pop art lines and nodes.",
|
||||
"A pattern that appears to be woven from pop art threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual pop art elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the pop art pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between pop art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the pop art details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the pop art patterns.",
|
||||
"style": "macro photography of intricate pop art patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A playful scene where simple pop art patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple pop art patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of pop art cubes and cylinders.",
|
||||
"A car constructed from pop art spheres and rectangles.",
|
||||
"A house built from stacked pop art blocks.",
|
||||
"A friendly monster composed of various pop art forms."
|
||||
],
|
||||
"actions": [
|
||||
"Pop art characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the pop art creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the pop art characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some pop art elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "pop art character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pop Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular pop art shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular pop art shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken pop art forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive pop art architecture.",
|
||||
"A composition of colliding, fragmented pop art shards.",
|
||||
"A shadowy figure composed of sharp, abstract pop art planes."
|
||||
],
|
||||
"actions": [
|
||||
"Pop art shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the pop art forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the pop art shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark pop art with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_street_art.json
Normal file
404
src/data/abstract_art_street_art.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A vibrant street art mural on a weathered urban wall, featuring bold colors and dynamic imagery.",
|
||||
"sceneVariants": [
|
||||
"A vibrant street art mural on a weathered urban wall, featuring bold colors and dynamic imagery.",
|
||||
"A close-up of intricate stencil art with sharp details.",
|
||||
"A paste-up artwork with layered textures and imagery.",
|
||||
"A street art piece that interacts with the urban environment (e.g., using pipes or windows).",
|
||||
"A yarn bombing installation adding color to street furniture."
|
||||
],
|
||||
"actions": [
|
||||
"The street art elements appear to animate or subtly shift.",
|
||||
"Colors blend and interact in dynamic ways.",
|
||||
"A sense of urban creativity and raw expression.",
|
||||
"The artwork feels alive and constantly evolving."
|
||||
],
|
||||
"camera": "A camera that moves along the street art, highlighting different sections and details, emphasizing the scale and impact.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Textured paint effects, drips, and stencil edges."
|
||||
],
|
||||
"mood": "urban, expressive, and dynamic",
|
||||
"lighting": "Harsh urban lighting, perhaps with dramatic shadows or the glow of streetlights.",
|
||||
"style": "vibrant street art with bold imagery and urban textures"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A minimalist street art piece, focusing on clean lines, simple shapes, and a limited color palette.",
|
||||
"sceneVariants": [
|
||||
"A minimalist street art piece, focusing on clean lines, simple shapes, and a limited color palette.",
|
||||
"A single, stylized stencil with precise execution.",
|
||||
"A geometric street art design with sharp edges.",
|
||||
"A paste-up with a clear, impactful message.",
|
||||
"A composition that uses negative space effectively."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist elements subtly shift or align.",
|
||||
"A gentle change in color or opacity.",
|
||||
"A sense of clean design and deliberate placement.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist street art.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, precise, and impactful",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the street art.",
|
||||
"style": "minimalist street art with clean lines and simple forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A surreal street art artwork that blends urban art with dreamlike or illogical elements.",
|
||||
"sceneVariants": [
|
||||
"A surreal street art artwork that blends urban art with dreamlike or illogical elements.",
|
||||
"Street art characters that seem to float or defy gravity.",
|
||||
"A mural where the painted elements interact with the real environment.",
|
||||
"A scene that combines spray-painted imagery with photographic elements.",
|
||||
"Street art that depicts impossible landscapes or creatures."
|
||||
],
|
||||
"actions": [
|
||||
"The painted elements subtly morph or change.",
|
||||
"A sense of magical realism within the urban setting.",
|
||||
"The artwork blurs the lines between reality and imagination.",
|
||||
"The street art feels like a portal to another world."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal elements and illogical juxtapositions within the street art.",
|
||||
"accents": [
|
||||
"Unusual color combinations that evoke a sense of the uncanny.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, urban, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the street art, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal street art with dreamlike elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A dark, moody street art piece with a gritty, urban aesthetic.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody street art piece with a gritty, urban aesthetic.",
|
||||
"Street art in a dimly lit alleyway, with rough textures.",
|
||||
"A mural featuring dark, imposing figures or symbols.",
|
||||
"Street art that conveys a sense of rebellion or social commentary.",
|
||||
"A weathered street art piece with peeling paint and urban decay."
|
||||
],
|
||||
"actions": [
|
||||
"The street art elements appear to shift or fade subtly.",
|
||||
"A sense of urban grit and raw energy.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the street art.",
|
||||
"accents": [
|
||||
"Rough textures and distressed surfaces.",
|
||||
"Deep, dark shadows that obscure details."
|
||||
],
|
||||
"mood": "gritty, urban, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and mood of the street art.",
|
||||
"style": "dark urban street art with a gritty aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A vibrant, abstract street art composition, focusing on color and form rather than recognizable imagery.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract street art composition, focusing on color and form rather than recognizable imagery.",
|
||||
"A dynamic splash of colors and shapes that evoke energy.",
|
||||
"Street art that is purely about the interplay of lines and hues.",
|
||||
"Abstract patterns created with spray paint or stencils.",
|
||||
"A composition that feels spontaneous and energetic."
|
||||
],
|
||||
"actions": [
|
||||
"Colors blend and interact in dynamic ways.",
|
||||
"Abstract shapes shift and evolve.",
|
||||
"A sense of pure visual energy.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of color and form in the abstract street art.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Textured paint effects and energetic lines."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract street art with focus on color and form"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A close-up of intricate street art details, such as tags, stencils, or paint textures.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate street art details, such as tags, stencils, or paint textures.",
|
||||
"A detailed view of a complex stencil.",
|
||||
"The texture of spray paint on a rough surface.",
|
||||
"A paste-up artwork with layered details.",
|
||||
"The layering of different techniques in street art."
|
||||
],
|
||||
"actions": [
|
||||
"The details subtly shift or animate.",
|
||||
"Light plays across the textures in interesting ways.",
|
||||
"A sense of the artist's hand and technique.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between street art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the details.",
|
||||
"Subtle internal glow or luminescence within the textures."
|
||||
],
|
||||
"mood": "detailed, intricate, and textural",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the street art.",
|
||||
"style": "macro street art with focus on detail and texture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A futuristic street art artwork, incorporating elements of technology and urban futurism.",
|
||||
"sceneVariants": [
|
||||
"A futuristic street art artwork, incorporating elements of technology and urban futurism.",
|
||||
"Street art with neon colors and glowing elements.",
|
||||
"A mural depicting futuristic cityscapes or cybernetic figures.",
|
||||
"Street art that uses digital or holographic effects.",
|
||||
"Artwork that blends traditional street art techniques with futuristic aesthetics."
|
||||
],
|
||||
"actions": [
|
||||
"The street art elements pulse with light or energy.",
|
||||
"Digital or holographic effects appear and disappear.",
|
||||
"A sense of advanced urban culture.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the street art.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures and clean lines."
|
||||
],
|
||||
"mood": "futuristic, urban, and technologically advanced",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic street art with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through street art.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through street art.",
|
||||
"Street art appearing on abandoned buildings.",
|
||||
"A contrast between decaying structures and vibrant street art.",
|
||||
"The transformation of a derelict space through artistic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments."
|
||||
],
|
||||
"actions": [
|
||||
"The street art appears to be a force of renewal against decay.",
|
||||
"Subtle shifts in the environment that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten spaces."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant street art.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with smooth, vibrant paint.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and hopeful",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the street art.",
|
||||
"style": "street art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A minimalist street art landscape, where simple street art elements are placed in a vast urban environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist street art landscape, where simple street art elements are placed in a vast urban environment.",
|
||||
"A single, clean stencil on a large, blank wall.",
|
||||
"A few scattered tags across a cityscape.",
|
||||
"A subtle street art element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the street art."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist street art elements subtly shift or align.",
|
||||
"A gentle change in color or opacity.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist street art within the urban expanse.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and urban",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the street art within the urban setting.",
|
||||
"style": "minimalist street art in an urban landscape"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular street art shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular street art shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken street art forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive street art architecture.",
|
||||
"A composition of colliding, fragmented street art shards.",
|
||||
"A shadowy figure composed of sharp, abstract street art planes."
|
||||
],
|
||||
"actions": [
|
||||
"Street art shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the street art forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the street art shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark street art with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting street art patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting street art patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of street art shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent street art forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of street art elements in a flat design style.",
|
||||
"A composition that plays with perspective, making street art shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Street art patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the street art elements.",
|
||||
"New street art patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of street art elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all street art forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into street art components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into street art components.",
|
||||
"A clock face made of interlocking street art gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of street art triangles.",
|
||||
"A tree with branches made of sharp, crystalline street art structures.",
|
||||
"A floating island composed of stacked street art blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Street art components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from street art parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal street art environment, focusing on the street art deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key street art elements.",
|
||||
"style": "surreal digital art with a focus on street art abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex street art structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex street art structures.",
|
||||
"A skyscraper that twists and curves like a street art helix made of segments.",
|
||||
"A city where all structures are based on repeating street art modules.",
|
||||
"A space station with a complex, multi-faceted street art design.",
|
||||
"An interior of a futuristic vehicle with street art control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the street art lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic street art displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic street art architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated street art edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with street art emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A close-up view of intricate street art patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate street art patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A street art pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming street art lattices.",
|
||||
"A complex network of interconnected street art lines and nodes.",
|
||||
"A pattern that appears to be woven from street art threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual street art elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the street art pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between street art elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the street art details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the street art patterns.",
|
||||
"style": "macro photography of intricate street art patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A playful scene where simple street art patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple street art patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of street art cubes and cylinders.",
|
||||
"A car constructed from street art spheres and rectangles.",
|
||||
"A house built from stacked street art blocks.",
|
||||
"A friendly monster composed of various street art forms."
|
||||
],
|
||||
"actions": [
|
||||
"Street art characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the street art creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the street art characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some street art elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "street art character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Street Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular street art shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular street art shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken street art forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive street art architecture.",
|
||||
"A composition of colliding, fragmented street art shards.",
|
||||
"A shadowy figure composed of sharp, abstract street art planes."
|
||||
],
|
||||
"actions": [
|
||||
"Street art shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the street art forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the street art shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark street art with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_surrealism.json
Normal file
404
src/data/abstract_art_surrealism.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A dreamlike landscape where everyday objects are distorted and placed in illogical contexts.",
|
||||
"sceneVariants": [
|
||||
"A dreamlike landscape where everyday objects are distorted and placed in illogical contexts.",
|
||||
"Melting clocks draped over barren trees.",
|
||||
"Floating islands with impossible architecture.",
|
||||
"A desert with giant, disembodied eyes watching from the sand.",
|
||||
"A sky filled with fish swimming through clouds."
|
||||
],
|
||||
"actions": [
|
||||
"Objects slowly morph or transform into other things.",
|
||||
"Gravity seems to be defied, with objects floating or falling upwards.",
|
||||
"A sense of quiet unease and profound mystery.",
|
||||
"The environment subtly shifts and changes as if in a dream."
|
||||
],
|
||||
"camera": "A wandering, exploratory camera that drifts through the surreal landscape, emphasizing the illogical juxtapositions and dreamlike atmosphere.",
|
||||
"accents": [
|
||||
"Unusual color combinations that evoke a sense of the uncanny.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "dreamy, illogical, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key surreal elements.",
|
||||
"style": "surrealist painting with dreamlike imagery"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A portrait where facial features are replaced or combined with unexpected elements.",
|
||||
"sceneVariants": [
|
||||
"A portrait where facial features are replaced or combined with unexpected elements.",
|
||||
"A face composed of flowers and insects.",
|
||||
"A portrait with eyes made of swirling galaxies.",
|
||||
"A face where the mouth is a doorway to another dimension.",
|
||||
"A portrait with a body made of stone and a head of clouds."
|
||||
],
|
||||
"actions": [
|
||||
"Facial features subtly shift or animate.",
|
||||
"The combined elements seem to have a life of their own.",
|
||||
"A sense of uncanny familiarity and strangeness.",
|
||||
"The portrait's gaze seems to follow the viewer."
|
||||
],
|
||||
"camera": "A steady, focused shot on the surreal portrait, allowing the viewer to examine the bizarre details.",
|
||||
"accents": [
|
||||
"Sharp focus on the surreal elements, with a softer background.",
|
||||
"Unusual textures and material combinations."
|
||||
],
|
||||
"mood": "unsettling, intriguing, and bizarre",
|
||||
"lighting": "Dramatic lighting that highlights the unusual features of the portrait.",
|
||||
"style": "surrealist portraiture with symbolic elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "An abstract composition that plays with scale and perspective, creating a sense of disorientation.",
|
||||
"sceneVariants": [
|
||||
"An abstract composition that plays with scale and perspective, creating a sense of disorientation.",
|
||||
"Giant everyday objects in a miniature landscape.",
|
||||
"A landscape viewed from an impossible, distorted perspective.",
|
||||
"Objects that appear to be both near and far simultaneously.",
|
||||
"A scene that defies the laws of physics and logic."
|
||||
],
|
||||
"actions": [
|
||||
"The sense of scale and perspective shifts unexpectedly.",
|
||||
"Objects appear to bend or warp reality.",
|
||||
"A feeling of being lost in a distorted space.",
|
||||
"The composition constantly challenges the viewer's perception."
|
||||
],
|
||||
"camera": "Dynamic camera movements that emphasize the distorted scale and perspective, creating a disorienting effect.",
|
||||
"accents": [
|
||||
"Sharp contrasts in scale between elements.",
|
||||
"Unusual focal points that draw the eye to illogical details."
|
||||
],
|
||||
"mood": "disorienting, illogical, and mind-bending",
|
||||
"lighting": "Lighting that enhances the sense of depth and distortion, with sharp shadows and highlights.",
|
||||
"style": "surrealist abstract art with distorted perspective"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A dark, atmospheric scene with elements of the uncanny and the subconscious.",
|
||||
"sceneVariants": [
|
||||
"A dark, atmospheric scene with elements of the uncanny and the subconscious.",
|
||||
"A shadowy figure emerging from a distorted landscape.",
|
||||
"A room filled with unsettling, symbolic objects.",
|
||||
"A forest where the trees have human-like features.",
|
||||
"A scene that evokes feelings of dread and mystery."
|
||||
],
|
||||
"actions": [
|
||||
"Shadows lengthen and distort, taking on strange forms.",
|
||||
"Objects appear to move or change when not directly observed.",
|
||||
"A sense of hidden meanings and unspoken threats.",
|
||||
"The atmosphere feels heavy and oppressive."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the unsettling nature of the scene.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"mood": "uncanny, mysterious, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark surrealism with psychological undertones"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A vibrant, colorful surreal scene that is playful and whimsical, yet still illogical.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, colorful surreal scene that is playful and whimsical, yet still illogical.",
|
||||
"A landscape populated by friendly, bizarre creatures.",
|
||||
"Objects that float and dance in a cheerful manner.",
|
||||
"A world where the impossible happens with a sense of joy.",
|
||||
"Bright colors and playful forms that create a sense of wonder."
|
||||
],
|
||||
"actions": [
|
||||
"Playful objects interact in unexpected ways.",
|
||||
"Colors shift and blend in a cheerful manner.",
|
||||
"A sense of childlike wonder and imagination.",
|
||||
"The scene feels lighthearted despite its illogical nature."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the playful action and highlights the whimsical nature of the scene.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, whimsical, and joyful",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "playful surrealism with vibrant colors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A close-up of a surreal object or texture, focusing on its bizarre details and material qualities.",
|
||||
"sceneVariants": [
|
||||
"A close-up of a surreal object or texture, focusing on its bizarre details and material qualities.",
|
||||
"A surface that appears to be made of a combination of unexpected materials.",
|
||||
"An object with impossible geometry or form.",
|
||||
"A texture that is both familiar and alien.",
|
||||
"A detail that hints at a larger, illogical narrative."
|
||||
],
|
||||
"actions": [
|
||||
"The texture or object subtly shifts or changes.",
|
||||
"Light plays across the unusual surfaces in interesting ways.",
|
||||
"A sense of tactile strangeness.",
|
||||
"The detail invites closer inspection and contemplation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between surreal elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the bizarre details.",
|
||||
"Subtle internal glow or luminescence within the object."
|
||||
],
|
||||
"mood": "detailed, bizarre, and tactile",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the surreal object or texture.",
|
||||
"style": "macro surrealism with focus on texture and detail"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A futuristic surreal scene, blending advanced technology with illogical and dreamlike elements.",
|
||||
"sceneVariants": [
|
||||
"A futuristic surreal scene, blending advanced technology with illogical and dreamlike elements.",
|
||||
"A city where buildings defy gravity and logic.",
|
||||
"Robots with organic, surreal features.",
|
||||
"Spaceships that resemble impossible biological forms.",
|
||||
"A virtual reality that is hyper-realistic yet fundamentally illogical."
|
||||
],
|
||||
"actions": [
|
||||
"Technology behaves in unexpected, surreal ways.",
|
||||
"The environment shifts and reconfigures based on dream logic.",
|
||||
"A sense of advanced yet alien consciousness.",
|
||||
"The fusion of the artificial and the illogical."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic surreal environment.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated surreal elements.",
|
||||
"Integrated lighting systems that highlight the bizarre architecture."
|
||||
],
|
||||
"mood": "futuristic, surreal, and technologically alien",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials, with surreal distortions.",
|
||||
"style": "futuristic surrealism with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A composition that plays with the concept of time, showing its fluidity and distortion.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of time, showing its fluidity and distortion.",
|
||||
"Clocks melting or shattering.",
|
||||
"Moments from different times overlapping.",
|
||||
"Objects aging or de-aging rapidly.",
|
||||
"A sense of time standing still or moving erratically."
|
||||
],
|
||||
"actions": [
|
||||
"The passage of time is visually represented in illogical ways.",
|
||||
"Objects appear in multiple states of existence simultaneously.",
|
||||
"A feeling of temporal displacement.",
|
||||
"The scene challenges the viewer's perception of linear time."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the fluidity and distortion of time, perhaps with slow-motion or time-lapse effects.",
|
||||
"accents": [
|
||||
"Visual cues that suggest the passage or distortion of time (e.g., sand, gears, light trails).",
|
||||
"Color palettes that shift to represent different temporal states."
|
||||
],
|
||||
"mood": "temporal, fluid, and disorienting",
|
||||
"lighting": "Lighting that shifts and changes to represent different moments in time or the distortion of time.",
|
||||
"style": "surrealism exploring the concept of time"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A surreal landscape where natural elements are combined with artificial or unexpected forms.",
|
||||
"sceneVariants": [
|
||||
"A surreal landscape where natural elements are combined with artificial or unexpected forms.",
|
||||
"A desert with giant, mechanical flowers.",
|
||||
"An ocean filled with floating furniture.",
|
||||
"A forest where trees are made of crystal or metal.",
|
||||
"Mountains that resemble sleeping giants."
|
||||
],
|
||||
"actions": [
|
||||
"Natural elements behave in unnatural ways.",
|
||||
"Artificial elements are integrated seamlessly into the natural world.",
|
||||
"A sense of wonder and the uncanny.",
|
||||
"The landscape feels both familiar and alien."
|
||||
],
|
||||
"camera": "Sweeping camera movements that capture the vastness and strangeness of the surreal landscape.",
|
||||
"accents": [
|
||||
"Unexpected juxtapositions of natural and artificial materials.",
|
||||
"Color palettes that blend the organic and the synthetic."
|
||||
],
|
||||
"mood": "natural yet artificial, wondrous, and strange",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the landscape, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal landscape art with mixed elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular surreal shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular surreal shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken surreal forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive surreal architecture.",
|
||||
"A composition of colliding, fragmented surreal shards.",
|
||||
"A shadowy figure composed of sharp, abstract surreal planes."
|
||||
],
|
||||
"actions": [
|
||||
"Surreal shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the surreal forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the surreal shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark surrealism with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting surreal patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting surreal patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of surreal shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent surreal forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of surreal elements in a flat design style.",
|
||||
"A composition that plays with perspective, making surreal shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Surreal patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the surreal elements.",
|
||||
"New surreal patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of surreal elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all surreal forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into surreal components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into surreal components.",
|
||||
"A clock face made of interlocking surreal gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of surreal triangles.",
|
||||
"A tree with branches made of sharp, crystalline surreal structures.",
|
||||
"A floating island composed of stacked surreal blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Surreal components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from surreal parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal environment, focusing on the surreal deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key surreal elements.",
|
||||
"style": "surreal digital art with a focus on surreal abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex surreal structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex surreal structures.",
|
||||
"A skyscraper that twists and curves like a surreal helix made of segments.",
|
||||
"A city where all structures are based on repeating surreal modules.",
|
||||
"A space station with a complex, multi-faceted surreal design.",
|
||||
"An interior of a futuristic vehicle with surreal control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the surreal lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic surreal displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic surreal architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated surreal edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with surreal emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A close-up view of intricate surreal patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate surreal patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A surreal pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming surreal lattices.",
|
||||
"A complex network of interconnected surreal lines and nodes.",
|
||||
"A pattern that appears to be woven from surreal threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual surreal elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the surreal pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between surreal elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the surreal details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the surreal patterns.",
|
||||
"style": "macro photography of intricate surreal patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A playful scene where simple surreal patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple surreal patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of surreal cubes and cylinders.",
|
||||
"A car constructed from surreal spheres and rectangles.",
|
||||
"A house built from stacked surreal blocks.",
|
||||
"A friendly monster composed of various surreal forms."
|
||||
],
|
||||
"actions": [
|
||||
"Surreal characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the surreal creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the surreal characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some surreal elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "surreal character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Surrealism",
|
||||
"scene": "A dark, moody scene featuring sharp, angular surreal shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular surreal shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken surreal forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive surreal architecture.",
|
||||
"A composition of colliding, fragmented surreal shards.",
|
||||
"A shadowy figure composed of sharp, abstract surreal planes."
|
||||
],
|
||||
"actions": [
|
||||
"Surreal shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the surreal forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the surreal shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark surrealism with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
404
src/data/abstract_art_typography_art.json
Normal file
404
src/data/abstract_art_typography_art.json
Normal file
@ -0,0 +1,404 @@
|
||||
{
|
||||
"Abstract & Art": [
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "An abstract composition where letters and words are arranged to form shapes, patterns, or evoke a specific mood.",
|
||||
"sceneVariants": [
|
||||
"An abstract composition where letters and words are arranged to form shapes, patterns, or evoke a specific mood.",
|
||||
"A portrait formed entirely from text.",
|
||||
"A landscape created using words and letters as building blocks.",
|
||||
"Typography that morphs and transforms into abstract forms.",
|
||||
"A pattern of repeating letters or words creating a visual rhythm."
|
||||
],
|
||||
"actions": [
|
||||
"The typography subtly shifts or rearranges.",
|
||||
"Letters morph into abstract shapes.",
|
||||
"A sense of visual rhythm and semantic depth.",
|
||||
"The text itself becomes a visual element."
|
||||
],
|
||||
"camera": "A camera that moves across the typography, highlighting the arrangement, form, and any subtle animations.",
|
||||
"accents": [
|
||||
"Clean, legible typography.",
|
||||
"Harmonious or contrasting color palettes for the text."
|
||||
],
|
||||
"mood": "graphic, conceptual, and visually rhythmic",
|
||||
"lighting": "Lighting that emphasizes the typography, perhaps with subtle highlights or shadows to define the forms.",
|
||||
"style": "abstract typography art with focus on form and arrangement"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A minimalist typography art piece, using simple text elements and a clean aesthetic.",
|
||||
"sceneVariants": [
|
||||
"A minimalist typography art piece, using simple text elements and a clean aesthetic.",
|
||||
"A single word or phrase rendered with elegant typography.",
|
||||
"A composition with only a few key letters or symbols.",
|
||||
"A focus on negative space to highlight the text.",
|
||||
"Typography with a clean, sans-serif font and minimal embellishments."
|
||||
],
|
||||
"actions": [
|
||||
"The typography subtly shifts or aligns.",
|
||||
"A gentle change in opacity or color.",
|
||||
"A sense of clean design and deliberate placement.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist typography.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all text elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, refined, and impactful",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and execution of the typography.",
|
||||
"style": "minimalist typography art with clean lines and simple text"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A surreal typography art composition, where letters and words form illogical or dreamlike structures.",
|
||||
"sceneVariants": [
|
||||
"A surreal typography art composition, where letters and words form illogical or dreamlike structures.",
|
||||
"Text that defies gravity and logic.",
|
||||
"A scene where typography interacts with the environment in unexpected ways.",
|
||||
"Words that morph into abstract shapes or symbols.",
|
||||
"Typography that creates visual paradoxes."
|
||||
],
|
||||
"actions": [
|
||||
"The typography elements subtly morph or change context.",
|
||||
"A sense of magical realism through unexpected text arrangements.",
|
||||
"The artwork blurs the lines between language and visual form.",
|
||||
"The typography feels like a representation of abstract thought."
|
||||
],
|
||||
"camera": "A curious, exploratory camera that lingers on the surreal typography and illogical arrangements.",
|
||||
"accents": [
|
||||
"Unusual combinations of fonts and text styles.",
|
||||
"Soft, diffused lighting that enhances the dreamlike quality."
|
||||
],
|
||||
"mood": "surreal, conceptual, and imaginative",
|
||||
"lighting": "Lighting that enhances the surreal qualities of the typography, perhaps with unusual color casts or dramatic shadows.",
|
||||
"style": "surreal typography art with dreamlike text arrangements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A dark, moody typography art piece with a gritty, urban aesthetic, perhaps conveying a powerful message.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody typography art piece with a gritty, urban aesthetic, perhaps conveying a powerful message.",
|
||||
"Typography with rough textures and distressed effects.",
|
||||
"A composition of impactful words or phrases in a stark setting.",
|
||||
"Typography that conveys a sense of rebellion or social commentary.",
|
||||
"Weathered text with fragmented elements."
|
||||
],
|
||||
"actions": [
|
||||
"The typography elements appear to shift or fade subtly.",
|
||||
"A sense of urban grit and raw expression.",
|
||||
"The artwork feels authentic and unpolished.",
|
||||
"The atmosphere is heavy and intense."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the gritty and imposing nature of the typography.",
|
||||
"accents": [
|
||||
"Rough textures and distressed surfaces.",
|
||||
"Deep, dark shadows that obscure details."
|
||||
],
|
||||
"mood": "gritty, impactful, and intense",
|
||||
"lighting": "Dramatic, high-contrast lighting that emphasizes the textures and mood of the typography.",
|
||||
"style": "dark typography art with a gritty, urban aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A vibrant, abstract typography art composition, focusing on the visual form of letters and words.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract typography art composition, focusing on the visual form of letters and words.",
|
||||
"A dynamic interplay of letters creating abstract patterns.",
|
||||
"Typography that forms abstract shapes and textures.",
|
||||
"A scene that feels spontaneous and energetic through its composition.",
|
||||
"Bright colors used to create a sense of joy and visual impact."
|
||||
],
|
||||
"actions": [
|
||||
"The typography elements blend and interact dynamically.",
|
||||
"Abstract forms shift and evolve.",
|
||||
"A sense of pure visual energy and playfulness.",
|
||||
"The artwork feels spontaneous and expressive."
|
||||
],
|
||||
"camera": "Dynamic camera movements that follow the flow of typography and energy in the abstract composition.",
|
||||
"accents": [
|
||||
"Bold, high-contrast color palettes.",
|
||||
"Interesting typographic treatments and clean lines."
|
||||
],
|
||||
"mood": "abstract, energetic, and colorful",
|
||||
"lighting": "Bright, even lighting that emphasizes the colors and forms.",
|
||||
"style": "abstract typography art with focus on form and color"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A close-up of intricate typography details, such as fine letterforms, textures, or the arrangement of text.",
|
||||
"sceneVariants": [
|
||||
"A close-up of intricate typography details, such as fine letterforms, textures, or the arrangement of text.",
|
||||
"A detailed view of complex letterforms.",
|
||||
"The texture of printed or digital text.",
|
||||
"The fine details of how letters interact to create patterns.",
|
||||
"The interplay of different typographic elements creating a complex surface."
|
||||
],
|
||||
"actions": [
|
||||
"The typography details subtly shift or animate.",
|
||||
"Light plays across the surfaces in interesting ways.",
|
||||
"A sense of the artist's skill in typographic design.",
|
||||
"The detail invites closer inspection and appreciation."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between typographic elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the typographic details.",
|
||||
"Subtle internal glow or luminescence within the text."
|
||||
],
|
||||
"mood": "detailed, intricate, and typographic",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the typography.",
|
||||
"style": "macro typography art with focus on detail and letterforms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A futuristic typography artwork, incorporating elements of technology and advanced visual design.",
|
||||
"sceneVariants": [
|
||||
"A futuristic typography artwork, incorporating elements of technology and advanced visual design.",
|
||||
"Typography with neon colors and digital interfaces.",
|
||||
"A scene depicting futuristic text-based interfaces or messages.",
|
||||
"Typography that responds to viewer interaction.",
|
||||
"Artwork that blends digital aesthetics with typographic art."
|
||||
],
|
||||
"actions": [
|
||||
"The typography elements pulse with light or digital effects.",
|
||||
"Digital glitches and futuristic interfaces appear and disappear.",
|
||||
"A sense of advanced visual technology.",
|
||||
"The artwork feels cutting-edge and dynamic."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the futuristic and dynamic nature of the typography art.",
|
||||
"accents": [
|
||||
"Neon colors and glowing elements.",
|
||||
"Sleek, metallic textures combined with bold typography."
|
||||
],
|
||||
"mood": "futuristic, digital, and dynamic",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the futuristic elements, with neon glows and sharp contrasts.",
|
||||
"style": "futuristic typography art with technological elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A composition that plays with the concept of urban decay and renewal through typography art.",
|
||||
"sceneVariants": [
|
||||
"A composition that plays with the concept of urban decay and renewal through typography art.",
|
||||
"Typography appearing on abandoned structures.",
|
||||
"A contrast between decaying environments and vibrant typographic elements.",
|
||||
"The transformation of a derelict space through typographic intervention.",
|
||||
"A scene that speaks to the resilience of creativity in urban environments through fragmented text."
|
||||
],
|
||||
"actions": [
|
||||
"The typography elements appear to be a force of renewal against decay.",
|
||||
"Subtle shifts in the composition that suggest ongoing change.",
|
||||
"A sense of hope and transformation.",
|
||||
"The artwork breathes life into forgotten spaces with its layered narratives."
|
||||
],
|
||||
"camera": "Camera movements that emphasize the contrast between decay and renewal, perhaps with slow pans across derelict areas and close-ups on vibrant typography.",
|
||||
"accents": [
|
||||
"Juxtaposition of rough, decaying textures with clean, typographic elements.",
|
||||
"Color palettes that highlight the contrast between old and new."
|
||||
],
|
||||
"mood": "urban renewal, resilient, and narrative",
|
||||
"lighting": "Lighting that enhances the contrast between decay and renewal, perhaps with stark shadows and bright highlights on the typography.",
|
||||
"style": "typography art exploring urban decay and renewal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A minimalist typography art landscape, where simple text elements are placed in a vast environment.",
|
||||
"sceneVariants": [
|
||||
"A minimalist typography art landscape, where simple text elements are placed in a vast environment.",
|
||||
"A single, clean word on a large, blank surface.",
|
||||
"A few scattered subtle typographic elements across a scene.",
|
||||
"A subtle typographic element that adds character to an otherwise plain scene.",
|
||||
"The use of negative space to emphasize the typography."
|
||||
],
|
||||
"actions": [
|
||||
"The minimalist typography elements subtly shift or align.",
|
||||
"A gentle change in opacity or placement.",
|
||||
"A sense of deliberate placement and understated impact.",
|
||||
"The artwork feels refined and impactful despite its simplicity."
|
||||
],
|
||||
"camera": "A static or slow-panning camera that highlights the clean lines and precise execution of the minimalist typography within the environment.",
|
||||
"accents": [
|
||||
"Crisp, defined edges on all elements.",
|
||||
"A limited, harmonious color palette."
|
||||
],
|
||||
"mood": "clean, understated, and precise",
|
||||
"lighting": "Clean, directional lighting that emphasizes the form and arrangement of the typography.",
|
||||
"style": "minimalist typography art in a vast environment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular typography shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular typography shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken typographic forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive typographic architecture.",
|
||||
"A composition of colliding, fragmented typographic shards.",
|
||||
"A shadowy figure composed of sharp, abstract typographic planes."
|
||||
],
|
||||
"actions": [
|
||||
"Typography shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the typography forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the typography shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark typography art with angular forms"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A vibrant, abstract composition of overlapping and intersecting typography patterns in bright, bold colors.",
|
||||
"sceneVariants": [
|
||||
"A vibrant, abstract composition of overlapping and intersecting typography patterns in bright, bold colors.",
|
||||
"A dynamic arrangement of typography shapes creating a sense of movement.",
|
||||
"A layered effect with semi-transparent typography forms creating new colors where they overlap.",
|
||||
"A chaotic yet harmonious blend of typography elements in a flat design style.",
|
||||
"A composition that plays with perspective, making typography shapes appear to recede and advance."
|
||||
],
|
||||
"actions": [
|
||||
"Typography patterns gently pulse or breathe.",
|
||||
"Colors subtly shift within the typography elements.",
|
||||
"New typography patterns emerge from the intersections of existing ones.",
|
||||
"A subtle parallax effect as layers of typography elements move independently."
|
||||
],
|
||||
"camera": "A steady, eye-level view that allows the viewer to appreciate the composition and color interactions.",
|
||||
"accents": [
|
||||
"Clean, crisp edges on all typography forms.",
|
||||
"A subtle sheen or gloss on some surfaces."
|
||||
],
|
||||
"mood": "lively, modern, and visually engaging",
|
||||
"lighting": "Flat, even lighting that emphasizes the colors and forms without harsh shadows.",
|
||||
"style": "flat design abstract art with bold color blocking"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A surreal dreamscape where familiar objects are deconstructed into typography components.",
|
||||
"sceneVariants": [
|
||||
"A surreal dreamscape where familiar objects are deconstructed into typography components.",
|
||||
"A clock face made of interlocking typography gears and spheres.",
|
||||
"A human silhouette formed by a mosaic of typography triangles.",
|
||||
"A tree with branches made of sharp, crystalline typography structures.",
|
||||
"A floating island composed of stacked typography blocks."
|
||||
],
|
||||
"actions": [
|
||||
"Typography components of objects slowly drift apart.",
|
||||
"Objects reassemble themselves in unexpected ways.",
|
||||
"The environment itself seems to be constructed from typography parts.",
|
||||
"A sense of gentle, dreamlike transformation."
|
||||
],
|
||||
"camera": "Wandering, exploratory camera that drifts through the surreal typography environment, focusing on the typography deconstruction of objects.",
|
||||
"accents": [
|
||||
"Soft, diffused lighting that enhances the dreamlike quality.",
|
||||
"Unusual color combinations that evoke a sense of the uncanny."
|
||||
],
|
||||
"mood": "dreamy, surreal, and thought-provoking",
|
||||
"lighting": "Soft, ambient lighting with occasional spotlights on key typography elements.",
|
||||
"style": "surreal digital art with a focus on typography abstraction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A futuristic architectural concept, a building or city entirely designed with complex typography structures.",
|
||||
"sceneVariants": [
|
||||
"A futuristic architectural concept, a building or city entirely designed with complex typography structures.",
|
||||
"A skyscraper that twists and curves like a typography helix made of segments.",
|
||||
"A city where all structures are based on repeating typography modules.",
|
||||
"A space station with a complex, multi-faceted typography design.",
|
||||
"An interior of a futuristic vehicle with typography control panels and seating."
|
||||
],
|
||||
"actions": [
|
||||
"Lights pulse along the typography lines of the architecture.",
|
||||
"Sections of the structure move or reconfigure.",
|
||||
"Holographic typography displays appear and disappear.",
|
||||
"A sense of advanced engineering and design."
|
||||
],
|
||||
"camera": "Cinematic camera movements that showcase the grandeur and innovation of the futuristic typography architecture.",
|
||||
"accents": [
|
||||
"Gleaming metallic surfaces and illuminated typography edges.",
|
||||
"Integrated lighting systems that highlight the architectural forms."
|
||||
],
|
||||
"mood": "advanced, sleek, and awe-inspiring",
|
||||
"lighting": "Modern, often artificial lighting that emphasizes the clean lines and materials.",
|
||||
"style": "futuristic architectural visualization with typography emphasis"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A close-up view of intricate typography patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"sceneVariants": [
|
||||
"A close-up view of intricate typography patterns, perhaps resembling circuitry or microscopic structures.",
|
||||
"A typography pattern that repeats infinitely at different scales.",
|
||||
"A microscopic view of crystalline structures forming typography lattices.",
|
||||
"A complex network of interconnected typography lines and nodes.",
|
||||
"A pattern that appears to be woven from typography threads."
|
||||
],
|
||||
"actions": [
|
||||
"The pattern slowly zooms out, revealing its repeating nature.",
|
||||
"Individual typography elements within the pattern shift or animate.",
|
||||
"Light traces paths along the lines of the typography pattern.",
|
||||
"A sense of infinite detail and complexity."
|
||||
],
|
||||
"camera": "Macro photography style, focusing on extreme detail and the intricate relationships between typography elements.",
|
||||
"accents": [
|
||||
"Sharp focus and high contrast to define the typography details.",
|
||||
"Subtle internal glow or luminescence within the pattern."
|
||||
],
|
||||
"mood": "detailed, complex, and mesmerizing",
|
||||
"lighting": "Sharp, focused lighting that highlights the fine details of the typography patterns.",
|
||||
"style": "macro photography of intricate typography patterns"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A playful scene where simple typography patterns are used to construct whimsical characters or objects.",
|
||||
"sceneVariants": [
|
||||
"A playful scene where simple typography patterns are used to construct whimsical characters or objects.",
|
||||
"A robot made of typography cubes and cylinders.",
|
||||
"A car constructed from typography spheres and rectangles.",
|
||||
"A house built from stacked typography blocks.",
|
||||
"A friendly monster composed of various typography forms."
|
||||
],
|
||||
"actions": [
|
||||
"Typography characters move and interact in a playful manner.",
|
||||
"Shapes assemble and disassemble to change form.",
|
||||
"A sense of childlike wonder and creativity.",
|
||||
"Simple animations that bring the typography creations to life."
|
||||
],
|
||||
"camera": "Upbeat, dynamic camera that follows the action and highlights the playful nature of the typography characters.",
|
||||
"accents": [
|
||||
"Bright, cheerful colors.",
|
||||
"Soft, rounded edges on some typography elements to enhance friendliness."
|
||||
],
|
||||
"mood": "playful, cheerful, and imaginative",
|
||||
"lighting": "Bright, even lighting that creates a friendly and inviting atmosphere.",
|
||||
"style": "typography character design with a playful aesthetic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Typography Art",
|
||||
"scene": "A dark, moody scene featuring sharp, angular typography shapes that create a sense of tension or unease.",
|
||||
"sceneVariants": [
|
||||
"A dark, moody scene featuring sharp, angular typography shapes that create a sense of tension or unease.",
|
||||
"A landscape of jagged, broken typographic forms under a stormy sky.",
|
||||
"An interior with sharp, oppressive typographic architecture.",
|
||||
"A composition of colliding, fragmented typographic shards.",
|
||||
"A shadowy figure composed of sharp, abstract typographic planes."
|
||||
],
|
||||
"actions": [
|
||||
"Typography shapes slowly shift or grind against each other.",
|
||||
"Sharp edges cast long, distorted shadows.",
|
||||
"A sense of impending movement or collapse.",
|
||||
"Subtle, unsettling sounds accompanying the visual changes."
|
||||
],
|
||||
"camera": "Low-angle shots and dramatic framing to emphasize the imposing nature of the typography forms.",
|
||||
"accents": [
|
||||
"Deep, dark shadows that obscure details.",
|
||||
"Sharp, piercing highlights on the edges of the typography shapes."
|
||||
],
|
||||
"mood": "tense, ominous, and unsettling",
|
||||
"lighting": "Dramatic, high-contrast lighting with deep shadows and sharp highlights.",
|
||||
"style": "dark typography art with angular forms"
|
||||
}
|
||||
]
|
||||
}
|
||||
477
src/data/animals_and_wildlife_bats.json
Normal file
477
src/data/animals_and_wildlife_bats.json
Normal file
@ -0,0 +1,477 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Dawn cave exit: thousands of fruit bats streaming out of a rainforest cavern",
|
||||
"sceneVariants": [
|
||||
"Dawn cave exit: thousands of fruit bats streaming out of a rainforest cavern",
|
||||
"Silhouetted wings against a pale sky",
|
||||
"A dense ribbon of animals rising above the canopy",
|
||||
"Dewy branches vibrating from passing wings",
|
||||
"Mist lingering over the forest"
|
||||
],
|
||||
"actions": [
|
||||
"Mass synchronized emergence in flowing columns",
|
||||
"Brief spiralling climbs to catch morning thermals",
|
||||
"Scattered individuals peeling off toward fruiting trees",
|
||||
"A few straggling juveniles flapping to catch up"
|
||||
],
|
||||
"camera": "Wide aerial reveal from cavern mouth with gentle crane up into the sky",
|
||||
"accents": [
|
||||
"soft backlight rim on wing membranes",
|
||||
"fine micro-highlights on dew and leaf edges"
|
||||
],
|
||||
"mood": "awe-inspiring exodus",
|
||||
"lighting": "soft pre-dawn to dawn gradient",
|
||||
"style": "epic natural migration"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Hanging roost inside a limestone cave with filtered shaft light",
|
||||
"sceneVariants": [
|
||||
"Hanging roost inside a limestone cave with filtered shaft light",
|
||||
"Clusters of bats tightly packed on ceiling",
|
||||
"Stalactites framing roost silhouettes",
|
||||
"Dust motes and guano textures on lower ledges",
|
||||
"A steady silence punctuated by distant drops"
|
||||
],
|
||||
"actions": [
|
||||
"Lazy wing-fold resting posture",
|
||||
"Occasional scratching and micro-shifts to reposition",
|
||||
"Silent wing uncurl to adjust balance",
|
||||
"One bat peeling away to stretch before sleep"
|
||||
],
|
||||
"camera": "Intimate low-light macro with slow focus pulls on texture",
|
||||
"accents": [
|
||||
"volumetric shafts sculpting cave dust",
|
||||
"subtle specular on leathery wing creases"
|
||||
],
|
||||
"mood": "sacred hush",
|
||||
"lighting": "filtered cave shafts and shadow",
|
||||
"style": "textural subterranean portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Urban dusk: microbats hunting insects over a city river with neon reflections",
|
||||
"sceneVariants": [
|
||||
"Urban dusk: microbats hunting insects over a city river with neon reflections",
|
||||
"Blinking bridge lights and glass facades",
|
||||
"Rippling water reflecting colored signs",
|
||||
"Motes of insects drawn to lamplight",
|
||||
"A tram gliding past in the background"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid darting arcs and precise mid-air turns",
|
||||
"Surface-skirting passes near water to snatch insects",
|
||||
"Synchronized sweeps following insect swarms",
|
||||
"Quick climbs to avoid low-flying obstacles"
|
||||
],
|
||||
"camera": "Handheld low-light with telephoto compression to capture flight paths",
|
||||
"accents": [
|
||||
"neon rim glints on wing edges",
|
||||
"sparkling micro-highlights on water ripples"
|
||||
],
|
||||
"mood": "urban nocturnal bustle",
|
||||
"lighting": "mixed artificial evening light",
|
||||
"style": "noir urban wildlife"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Tropical fruit orchard at night where large flying foxes feed in the canopy",
|
||||
"sceneVariants": [
|
||||
"Tropical fruit orchard at night where large flying foxes feed in the canopy",
|
||||
"Heavy fruit-laden branches bowed under weight",
|
||||
"Glows of distant village lights",
|
||||
"Rustle and occasional metallic clink of fruit",
|
||||
"Thick humid night air"
|
||||
],
|
||||
"actions": [
|
||||
"Hanging to rip fruit then carefully peeling with claws",
|
||||
"Loud social calls echoing between roost trees",
|
||||
"Short glides between feeding sites",
|
||||
"Guarding displays when food is monopolized"
|
||||
],
|
||||
"camera": "Slow canopy crane with intimate close-ups on feeding mouths",
|
||||
"accents": [
|
||||
"warm fruit rim-lights against dark foliage",
|
||||
"textured micro-highlights on fur and juice droplets"
|
||||
],
|
||||
"mood": "nocturnal abundance",
|
||||
"lighting": "soft moonlight with warm localized glows",
|
||||
"style": "sensory feeding vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Maternity colony night: female bats nurturing pups in tight clusters",
|
||||
"sceneVariants": [
|
||||
"Maternity colony night: female bats nurturing pups in tight clusters",
|
||||
"Tiny pups clinging to maternal fur",
|
||||
"Faint squeaks and whispered grooming",
|
||||
"A dim protective glow from a single shaft",
|
||||
"Warm air inside the roost"
|
||||
],
|
||||
"actions": [
|
||||
"Nuzzling and nursing micro-interactions",
|
||||
"Pups clambering for better latch positions",
|
||||
"Maternal repositioning to shield from drafts",
|
||||
"Occasional maternal grooming flicks"
|
||||
],
|
||||
"camera": "Macro intimate with high-ISO soft grading for low light detail",
|
||||
"accents": [
|
||||
"gentle warm rim on fur and pup features",
|
||||
"dewy micro-highlights on tiny claws and whiskers"
|
||||
],
|
||||
"mood": "tender protectiveness",
|
||||
"lighting": "very low warm ambient roost light",
|
||||
"style": "emotive wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Echo-mapping sequence: close interior perspective following an insect-eating bat emitting clicks",
|
||||
"sceneVariants": [
|
||||
"Echo-mapping sequence: close interior perspective following an insect-eating bat emitting clicks",
|
||||
"Animated visual overlays of sonar cones (for cinematic effect)",
|
||||
"Insects illuminated by brief ultrasonic pulses",
|
||||
"Rapid approach to a single target",
|
||||
"Background tree-line blurred"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid ultrasonic click bursts with precise steering",
|
||||
"Micro-dart and grab of a single moth",
|
||||
"Immediate course correction after missed attempt",
|
||||
"Short hover to re-lock target"
|
||||
],
|
||||
"camera": "Microscale POV with visualized sonar cones and high-frame-rate inserts",
|
||||
"accents": [
|
||||
"cold pulse rim on wing beats",
|
||||
"digital micro-highlights representing echo points"
|
||||
],
|
||||
"mood": "focused predatory precision",
|
||||
"lighting": "dark with surgically placed micro-inserts",
|
||||
"style": "scientific cinematic study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Cave waterfall night where bats skirt fine spray and feed on emergent insects",
|
||||
"sceneVariants": [
|
||||
"Cave waterfall night where bats skirt fine spray and feed on emergent insects",
|
||||
"Mist-driven shafts from falling water",
|
||||
"Glimmering droplets catching tiny lights",
|
||||
"Echoing drips creating a rhythmic backdrop",
|
||||
"A narrow sliver of sky visible high above"
|
||||
],
|
||||
"actions": [
|
||||
"High-energy swoops through spray curtains",
|
||||
"Feeding arcs around the waterfall plume",
|
||||
"Short bursts of wing beats to navigate turbulence",
|
||||
"Brief regroup on damp rock ledges"
|
||||
],
|
||||
"camera": "Low-light fluid tracking with slow-motion spray freeze-frames",
|
||||
"accents": [
|
||||
"sparkling water micro-highlights",
|
||||
"wet-wing specular details"
|
||||
],
|
||||
"mood": "wild energetic ballet",
|
||||
"lighting": "low with dynamic wet highlights",
|
||||
"style": "moody natural choreography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Rural barn dusk with barn owls and bats sharing hunting grounds",
|
||||
"sceneVariants": [
|
||||
"Rural barn dusk with barn owls and bats sharing hunting grounds",
|
||||
"Old timber beams and open haylofts",
|
||||
"Soft chorus of insects in tall grass",
|
||||
"Barn door half open with warm interior glow",
|
||||
"Farmer silhouette closing a gate"
|
||||
],
|
||||
"actions": [
|
||||
"Bats zipping through rafters while owls glide above",
|
||||
"Shared but partitioned hunting niches",
|
||||
"Brief chittering and aerial avoidance maneuvers",
|
||||
"Ground prey rustling as both predators queued"
|
||||
],
|
||||
"camera": "Medium steady with close aerial inserts to show interaction",
|
||||
"accents": [
|
||||
"warm loft rim and cool night wing highlights",
|
||||
"detailed micro-highlights on wood grain and wing leather"
|
||||
],
|
||||
"mood": "balanced nocturnal coexistence",
|
||||
"lighting": "dusk warm interior vs cool exterior",
|
||||
"style": "observational rural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Windfarm edge at night where bats navigate turbine shadows while feeding",
|
||||
"sceneVariants": [
|
||||
"Windfarm edge at night where bats navigate turbine shadows while feeding",
|
||||
"Slow-turning turbine blades casting huge shadow arcs",
|
||||
"Distant blinking beacons on towers",
|
||||
"Open steppe with low shrub patterns",
|
||||
"A thin chilly wind"
|
||||
],
|
||||
"actions": [
|
||||
"Quick evasive maneuvers to avoid blades",
|
||||
"Feeding sweeps across turbine-induced insect clouds",
|
||||
"Periodic rises when updrafts form near towers",
|
||||
"Brief avoidance clustering to minimize collision risk"
|
||||
],
|
||||
"camera": "Long-exposure-like tracking with blade-synchronized inserts",
|
||||
"accents": [
|
||||
"hard LED rim from tower beacons",
|
||||
"textured micro-highlights on wing veins"
|
||||
],
|
||||
"mood": "tense adaptation",
|
||||
"lighting": "artificial windfarm night light",
|
||||
"style": "modern wildlife concern piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Cave painting study: bats as cultural motifs in an ancient rock shelter",
|
||||
"sceneVariants": [
|
||||
"Cave painting study: bats as cultural motifs in an ancient rock shelter",
|
||||
"Ochre pigment echoes of wing shapes",
|
||||
"Filtered daylight falling on petroglyphs",
|
||||
"A modern researcher sketching and measuring",
|
||||
"Layered historical patina"
|
||||
],
|
||||
"actions": [
|
||||
"Researcher tracing motifs and photographing details",
|
||||
"Comparative overlay of living bat silhouettes",
|
||||
"Careful brush-cleaning to reveal pigment",
|
||||
"Gentle measurement and sampling"
|
||||
],
|
||||
"camera": "Documentary close with archival overlay visualizations",
|
||||
"accents": [
|
||||
"soft warm ochre rim on rock texture",
|
||||
"high micro-highlights on pigment grains"
|
||||
],
|
||||
"mood": "respectful curiosity",
|
||||
"lighting": "soft filtered natural light",
|
||||
"style": "cultural-ethnographic mini-doc"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Paddle-roost porch: bats roosting under old bridge eaves in early morning",
|
||||
"sceneVariants": [
|
||||
"Paddle-roost porch: bats roosting under old bridge eaves in early morning",
|
||||
"Timbered underside with hanging bundles",
|
||||
"River below shimmering in morning",
|
||||
"Commuters passing on a distant path",
|
||||
"A cat slinking near the bank"
|
||||
],
|
||||
"actions": [
|
||||
"Bats clinging and slowly uncurling",
|
||||
"Early few taking off in tentative sorties",
|
||||
"Drips from the bridge occasionally tap on wings",
|
||||
"A wary glance toward human movement"
|
||||
],
|
||||
"camera": "Low-angle riverside dolly with close roost inserts",
|
||||
"accents": [
|
||||
"soft morning rim on wing tips",
|
||||
"detailed micro-highlights on wood grain and guano patterns"
|
||||
],
|
||||
"mood": "domestic nocturnal residue",
|
||||
"lighting": "muted early-morning fill",
|
||||
"style": "urban-edge wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Research lab night: a bat fitted with a tiny lightweight GPS for migration study",
|
||||
"sceneVariants": [
|
||||
"Research lab night: a bat fitted with a tiny lightweight GPS for migration study",
|
||||
"White bench, small instruments and laptops",
|
||||
"Gloved hands carefully attaching a tag",
|
||||
"Soft hum of equipment and low conversations",
|
||||
"A checklist and printed migration maps"
|
||||
],
|
||||
"actions": [
|
||||
"Careful attachment and calibration of the tag",
|
||||
"Brief recovery observation to ensure normal flight",
|
||||
"Tagging paperwork and database entry",
|
||||
"Release into a controlled night yard for test flight"
|
||||
],
|
||||
"camera": "Clinical close with informational overlays and tag-telemetry inserts",
|
||||
"accents": [
|
||||
"cool clinical speculars on instruments",
|
||||
"detailed micro-highlights on tag seams"
|
||||
],
|
||||
"mood": "precise scientific stewardship",
|
||||
"lighting": "soft controlled lab light",
|
||||
"style": "informative conservation vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Mangrove edge dusk where bats forage along tidal creeks",
|
||||
"sceneVariants": [
|
||||
"Mangrove edge dusk where bats forage along tidal creeks",
|
||||
"Tangled aerial roots and reflective channels",
|
||||
"Midges rising from mudflats at low tide",
|
||||
"A chorus of frogs and distant gulls",
|
||||
"Soft humidity in the air"
|
||||
],
|
||||
"actions": [
|
||||
"Low sweeping passes over water catching emerging insects",
|
||||
"Rapid course changes to follow insect scattering",
|
||||
"Occasional brief landings on exposed roots",
|
||||
"Tactile checks to remove debris from wings"
|
||||
],
|
||||
"camera": "Low-water level tracking with close wing-detail inserts",
|
||||
"accents": [
|
||||
"cool wet rim on wing edges",
|
||||
"sparkling micro-highlights on waterline"
|
||||
],
|
||||
"mood": "efficient nocturnal harvesting",
|
||||
"lighting": "dusk cool soft light",
|
||||
"style": "coastal feeding study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Volcanic fissure roost where bats cling to warm rock walls near geothermal vents",
|
||||
"sceneVariants": [
|
||||
"Volcanic fissure roost where bats cling to warm rock walls near geothermal vents",
|
||||
"Warm steam ribbons and mineral stains",
|
||||
"Orange-tinged ambient glow from vent heat",
|
||||
"Sparse moss resistant to heat",
|
||||
"A distant rumble and tectonic smell"
|
||||
],
|
||||
"actions": [
|
||||
"Clinging in sheltered micro-niches to exploit warmth",
|
||||
"Short sorties into mineral-rich air for insects",
|
||||
"Preening to remove mineral dust",
|
||||
"Shifting deeper when steam intensity increases"
|
||||
],
|
||||
"camera": "Low-heat resistant close with warm grading and texture inserts",
|
||||
"accents": [
|
||||
"warm vent rim on wing outlines",
|
||||
"textured micro-highlights on mineral dust"
|
||||
],
|
||||
"mood": "primal adaptation",
|
||||
"lighting": "warm geothermal glow in dark cavity",
|
||||
"style": "extreme environment portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Suburban backyard at night with a bat box where youngsters learn flight",
|
||||
"sceneVariants": [
|
||||
"Suburban backyard at night with a bat box where youngsters learn flight",
|
||||
"Garden lights dimmed and a porch in the distance",
|
||||
"Bat box mounted at eaves with small outlines moving",
|
||||
"Parents dropping food near the box",
|
||||
"Neighbors watching quietly from windows"
|
||||
],
|
||||
"actions": [
|
||||
"Young bats making their first tentative sorties",
|
||||
"Parents returning periodically with insect loads",
|
||||
"Soft chirps guiding fledglings",
|
||||
"Landing practice and gentle crashes leading to resilience"
|
||||
],
|
||||
"camera": "Warm documentary POV with close learning-flight inserts",
|
||||
"accents": [
|
||||
"soft porch rim on box silhouette",
|
||||
"detailed micro-highlights on small wing membranes"
|
||||
],
|
||||
"mood": "hopeful apprenticeship",
|
||||
"lighting": "soft suburban night with powered garden lights",
|
||||
"style": "human-wildlife neighborhood vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Tropical cave river dawn: bats returning to roost after nocturnal foraging",
|
||||
"sceneVariants": [
|
||||
"Tropical cave river dawn: bats returning to roost after nocturnal foraging",
|
||||
"River mist and pale orange rim light",
|
||||
"Clusters settling back into niches",
|
||||
"A line of drifting leaves on the current",
|
||||
"A sleepy silent jungle waking"
|
||||
],
|
||||
"actions": [
|
||||
"Tired returns and finding tight crevice perches",
|
||||
"Pre-roost grooming to remove prey debris",
|
||||
"Short social murmurs before rest",
|
||||
"Final wing tucks and slow heart rhythms"
|
||||
],
|
||||
"camera": "Aerial to interior transition with serene slow glide",
|
||||
"accents": [
|
||||
"soft dawn rim on returning silhouettes",
|
||||
"dewy micro-highlights on fur and wing joints"
|
||||
],
|
||||
"mood": "worn completion",
|
||||
"lighting": "soft first-light interior gradient",
|
||||
"style": "gentle closure portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Biology lecture filming: slow-motion wingbeat studies in a controlled flight tunnel",
|
||||
"sceneVariants": [
|
||||
"Biology lecture filming: slow-motion wingbeat studies in a controlled flight tunnel",
|
||||
"High-speed cameras and motion tracking rigs",
|
||||
"Visual overlays of wing vortices",
|
||||
"Technicians monitoring waveforms",
|
||||
"A controlled insect release system"
|
||||
],
|
||||
"actions": [
|
||||
"Tether-free flight passes across calibrated markers",
|
||||
"High-speed capture of wing flex and membrane deformation",
|
||||
"Playback visualizations overlaying aerodynamics",
|
||||
"Scientists adjusting environmental parameters"
|
||||
],
|
||||
"camera": "High-speed capture and multi-angle slow-motion replay",
|
||||
"accents": [
|
||||
"cool lab rim on wing membranes",
|
||||
"technical micro-highlights on rigs and sensors"
|
||||
],
|
||||
"mood": "analytical fascination",
|
||||
"lighting": "soft controlled studio light",
|
||||
"style": "educational visual research"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Forest canopy storm edge where bats exploit insect updrafts after rain",
|
||||
"sceneVariants": [
|
||||
"Forest canopy storm edge where bats exploit insect updrafts after rain",
|
||||
"Wet leaves and dripping branches",
|
||||
"Fresh scent of petrichor rising",
|
||||
"Insect clouds breaking from wet foliage",
|
||||
"A raptor perched watching from a tall snag"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic low arcs catching emerging insects",
|
||||
"Coordinated avoidance when raptor threatens",
|
||||
"Short surface skimming to drink droplets",
|
||||
"Quick escapes into dense canopy"
|
||||
],
|
||||
"camera": "Dynamic canopy tracking with wet-lens texture inserts",
|
||||
"accents": [
|
||||
"wet-leaf micro-highlights on wing passes",
|
||||
"sparkling droplet micro-highlights"
|
||||
],
|
||||
"mood": "charged post-storm vitality",
|
||||
"lighting": "soft diffused post-rain light",
|
||||
"style": "dynamic nature sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bats",
|
||||
"scene": "Final night vignette: a single bat silhouetted against a vast starfield as it climbs higher",
|
||||
"sceneVariants": [
|
||||
"Final night vignette: a single bat silhouetted against a vast starfield as it climbs higher",
|
||||
"Milky way band streaking overhead",
|
||||
"A cool hush and distant meteor streak",
|
||||
"Sparse cloudlets drifting slowly",
|
||||
"A serene horizon line below"
|
||||
],
|
||||
"actions": [
|
||||
"Slow ascending spiral gaining altitude",
|
||||
"Comfortable gliding with occasional wing adjustments",
|
||||
"Quiet sonar pulses and gentle course setting",
|
||||
"A final fade into the starfield silhouette"
|
||||
],
|
||||
"camera": "Wide celestial reveal with a slow push to silhouetted detail",
|
||||
"accents": [
|
||||
"stellar rim on wing silhouettes",
|
||||
"tiny distant micro-highlights from distant lights"
|
||||
],
|
||||
"mood": "exultant loneliness",
|
||||
"lighting": "clear starlit night",
|
||||
"style": "poetic closing shot"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_bears.json
Normal file
427
src/data/animals_and_wildlife_bears.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Grizzly sow teaching cubs to fish at a rushing river in morning light",
|
||||
"sceneVariants": [
|
||||
"Grizzly sow teaching cubs to fish at a rushing river in morning light",
|
||||
"Shallow rapids and scattered boulders",
|
||||
"Cubs close to the rock edge attempting tentative swipes",
|
||||
"Silver spray catching sun",
|
||||
"Fir trees lining the far bank"
|
||||
],
|
||||
"actions": [
|
||||
"Mother demonstrating timed swipes into schooling fish",
|
||||
"Cubs mimicking awkward slaps",
|
||||
"Water splashing with flurried motion",
|
||||
"Triumphant little chirps from successful catches"
|
||||
],
|
||||
"camera": "Low-angle tracking shot along the river edge with periodic push-ins",
|
||||
"accents": [
|
||||
"sparkling specular highlights on water droplets",
|
||||
"warm rim light on wet fur"
|
||||
],
|
||||
"mood": "teaching patient intensity",
|
||||
"lighting": "warm soft morning with bright water highlights",
|
||||
"style": "natural history vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Black bear and cubs foraging under dense summer canopy",
|
||||
"sceneVariants": [
|
||||
"Black bear and cubs foraging under dense summer canopy",
|
||||
"Dappled sunlight on leaf litter",
|
||||
"Berries stained on snouts",
|
||||
"Ferns brushing round bellies",
|
||||
"A small creek hush nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Deliberate pawing through leaf litter",
|
||||
"Cubs tumbling playfully between finds",
|
||||
"Soft grunts of satisfaction while digging",
|
||||
"An adult pausing to sniff distant scent"
|
||||
],
|
||||
"camera": "Close handheld with shallow depth of field and soft pans",
|
||||
"accents": [
|
||||
"dappled sun shafts creating texture",
|
||||
"high-detail berry stains and wet nose highlights"
|
||||
],
|
||||
"mood": "playful provision",
|
||||
"lighting": "dappled daylight with cooling shade",
|
||||
"style": "intimate forest documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Polar bear mother and cub on broken sea ice at pale dusk",
|
||||
"sceneVariants": [
|
||||
"Polar bear mother and cub on broken sea ice at pale dusk",
|
||||
"Cracked ice floes and cold blue horizon",
|
||||
"Wind-swept fur and distant bergs",
|
||||
"Foam edging where water meets ice",
|
||||
"Pale low sun with long reflections"
|
||||
],
|
||||
"actions": [
|
||||
"Careful balancing across slippery ice",
|
||||
"Mom nudging cub away from thin sheets",
|
||||
"Soft sniffing of the horizon",
|
||||
"Calf stamping to test support"
|
||||
],
|
||||
"camera": "Wide cold-pan with occasional telephoto compression to show scale",
|
||||
"accents": [
|
||||
"cold silver rim on fur edges",
|
||||
"icy micro-highlights in skin and whiskers"
|
||||
],
|
||||
"mood": "fragile resolve",
|
||||
"lighting": "cool dusk with muted pastel sky",
|
||||
"style": "poignant Arctic portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Grizzly charging out of brush at twilight toward startled elk",
|
||||
"sceneVariants": [
|
||||
"Grizzly charging out of brush at twilight toward startled elk",
|
||||
"Low twilight gradient and shock of motion",
|
||||
"Flying debris and broken grasses",
|
||||
"Close-up on flared nostrils",
|
||||
"Distant herd panic forming"
|
||||
],
|
||||
"actions": [
|
||||
"Explosive sprint and thunderous impact",
|
||||
"Elk scattering in chaotic arcs",
|
||||
"Bear slamming into prey and shaking",
|
||||
"Short, gritty feeding sequence"
|
||||
],
|
||||
"camera": "Handheld rapid tracking with whip-pans for impact",
|
||||
"accents": [
|
||||
"warm dusk rim highlighting muscle outlines",
|
||||
"dramatic flying debris micro-detail"
|
||||
],
|
||||
"mood": "raw predation intensity",
|
||||
"lighting": "mixed warm/cool twilight",
|
||||
"style": "high-adrenaline wildlife action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Sunlit grove where a brown bear scratches its back against a mossy log",
|
||||
"sceneVariants": [
|
||||
"Sunlit grove where a brown bear scratches its back against a mossy log",
|
||||
"Soft rays filtering through leaves",
|
||||
"Moss and lichen flaking away",
|
||||
"Relaxed posture and half-closed eyes",
|
||||
"Tiny insects stirred from bark"
|
||||
],
|
||||
"actions": [
|
||||
"Rhythmic rubbing and rolling",
|
||||
"Slow contented exhalations",
|
||||
"Swatting at flies lazily",
|
||||
"Occasional gentle nudge of a passing cub"
|
||||
],
|
||||
"camera": "Slow dolly around the scratching bear with close texture shots",
|
||||
"accents": [
|
||||
"golden rim on fur tips",
|
||||
"tactile high-detail on moss flakes"
|
||||
],
|
||||
"mood": "sated comfort",
|
||||
"lighting": "warm midday shafts through canopy",
|
||||
"style": "serene wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Cub and mother curled together in a snowy den at night",
|
||||
"sceneVariants": [
|
||||
"Cub and mother curled together in a snowy den at night",
|
||||
"Interior soft snow walls and warm breath steam",
|
||||
"Cozy close-knit fur shapes",
|
||||
"Muted distant wind sounds",
|
||||
"Small flakes occasionally drifting in"
|
||||
],
|
||||
"actions": [
|
||||
"Soft nuzzling and rearranging",
|
||||
"Murmured rumbles between mother and cub",
|
||||
"Short sleep twitches and stretched limbs",
|
||||
"Protective repositioning when a noise is heard"
|
||||
],
|
||||
"camera": "Tight intimate handheld with warm color grading",
|
||||
"accents": [
|
||||
"soft warm fill on faces against cold walls",
|
||||
"tiny wet fur micro-highlights"
|
||||
],
|
||||
"mood": "protective intimacy",
|
||||
"lighting": "low warm interior light within a cold exterior night",
|
||||
"style": "tender nocturnal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Pond-side at dawn: a black bear snatching frogs and watching dragonflies",
|
||||
"sceneVariants": [
|
||||
"Pond-side at dawn: a black bear snatching frogs and watching dragonflies",
|
||||
"Still water mirroring spring foliage",
|
||||
"Frogs leaping and ripples expanding",
|
||||
"Dragonflies flashing in brief arcs",
|
||||
"Mist lifting from the water"
|
||||
],
|
||||
"actions": [
|
||||
"Quick paw grabs and trial-and-error fishing",
|
||||
"Curious sniffs at insect landings",
|
||||
"Shaking water from paws with theatrical flicks",
|
||||
"Happy paw shuffles at small finds"
|
||||
],
|
||||
"camera": "Low tracking mirror with small slow-motion inserts",
|
||||
"accents": [
|
||||
"sparkling dew micro-highlights",
|
||||
"soft iridescent bokeh from insect wings"
|
||||
],
|
||||
"mood": "curious foraging",
|
||||
"lighting": "fresh cool morning light",
|
||||
"style": "playful micro-ecology piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Nighttime salmon run with bears silhouetted and moon-glinted water",
|
||||
"sceneVariants": [
|
||||
"Nighttime salmon run with bears silhouetted and moon-glinted water",
|
||||
"Dark shapes knee-deep in silver currents",
|
||||
"Salmon arcs catching moonlight",
|
||||
"Occasional splash crescendos",
|
||||
"Crowded riverbanks with murmured motion"
|
||||
],
|
||||
"actions": [
|
||||
"Swift scoops and pinning motions",
|
||||
"Paws slapping and water fountains",
|
||||
"Guttural calls and contented growls",
|
||||
"Competition between nearby bears"
|
||||
],
|
||||
"camera": "High-contrast night handheld tracking with close impact cuts",
|
||||
"accents": [
|
||||
"cold moon rim highlighting wet fur",
|
||||
"specular streaks on leaping fish"
|
||||
],
|
||||
"mood": "urgent abundance",
|
||||
"lighting": "cool moonlit night with bright water highlights",
|
||||
"style": "nocturnal natural spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "A grizzly standing on hind legs observing a sweeping valley in stormlight",
|
||||
"sceneVariants": [
|
||||
"A grizzly standing on hind legs observing a sweeping valley in stormlight",
|
||||
"Dark clouds rolling and a fierce wind",
|
||||
"Silhouette punctuating a dramatic skyline",
|
||||
"Tall grasses bowed by wind",
|
||||
"Farther ridgelines cut in relief"
|
||||
],
|
||||
"actions": [
|
||||
"Slow surveying posture then scent-testing the air",
|
||||
"Ears flicking, nose lifting",
|
||||
"A sudden head-turn to follow movement",
|
||||
"Return to four-legged silence"
|
||||
],
|
||||
"camera": "Epic low-angle crane with telephoto compositional compression",
|
||||
"accents": [
|
||||
"storm-edge cold rim light",
|
||||
"wind-driven dust micro-highlights"
|
||||
],
|
||||
"mood": "primal vigilance",
|
||||
"lighting": "dramatic storm light with high contrast",
|
||||
"style": "heroic nature portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Spring melt: bears excavating roots from thawed earth in bright daylight",
|
||||
"sceneVariants": [
|
||||
"Spring melt: bears excavating roots from thawed earth in bright daylight",
|
||||
"Clumps of sod and warm wet soil",
|
||||
"Tiny green shoots emerging",
|
||||
"Worms and insects revealed",
|
||||
"Nearby streams swelling with melt-water"
|
||||
],
|
||||
"actions": [
|
||||
"Fierce paw digs and probing sniffs",
|
||||
"Satisfied crunching on found tubers",
|
||||
"Occasional cleansing shake",
|
||||
"Playful competition among siblings"
|
||||
],
|
||||
"camera": "Close texture-focused tracking with earthy mid-shots",
|
||||
"accents": [
|
||||
"warm soil micro-texture highlights",
|
||||
"spray from damp clods catching sun"
|
||||
],
|
||||
"mood": "hungry renewal",
|
||||
"lighting": "bright spring sun",
|
||||
"style": "earthy natural study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "A bear den entrance at twilight with curious cub noses poking out",
|
||||
"sceneVariants": [
|
||||
"A bear den entrance at twilight with curious cub noses poking out",
|
||||
"Soft shelter shadow and exposed entrance rim",
|
||||
"Tiny paws and whiskers visible",
|
||||
"Cracked earth and fallen needles around the den",
|
||||
"Warm interior glow from one small crevice"
|
||||
],
|
||||
"actions": [
|
||||
"Nose pokes and cautious peeks",
|
||||
"A growl of reassurance from inside",
|
||||
"Cub retreat then flit back to test the world",
|
||||
"Adult murmuring softly"
|
||||
],
|
||||
"camera": "Tight near-ground handheld with slight vignette",
|
||||
"accents": [
|
||||
"gentle warm interior highlight",
|
||||
"micro-detail on tiny whisker movements"
|
||||
],
|
||||
"mood": "curiosity and safety",
|
||||
"lighting": "soft twilight with warm interior contrast",
|
||||
"style": "intimate natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Coastal brown bears grazing on kelp and tidal flats at low sun",
|
||||
"sceneVariants": [
|
||||
"Coastal brown bears grazing on kelp and tidal flats at low sun",
|
||||
"Shallow tidal pools filled with marine life",
|
||||
"Kelp ribbons in warm backlight",
|
||||
"Seabirds pecking around their feet",
|
||||
"Wet mud reflecting the sky"
|
||||
],
|
||||
"actions": [
|
||||
"Scenting and tearing kelp for edible bits",
|
||||
"Sideways pawing to unearth shellfish",
|
||||
"Satisfying chomps and crunches",
|
||||
"Occasional shaking to dislodge cling-ons"
|
||||
],
|
||||
"camera": "Wide coastal sweep with texture close-ups",
|
||||
"accents": [
|
||||
"long warm rim on wet fur",
|
||||
"sparkling wet-mud micro-highlights"
|
||||
],
|
||||
"mood": "coastal abundance",
|
||||
"lighting": "golden low sun with reflective water highlights",
|
||||
"style": "documentary coastal slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Moonlit lumber: a bear making slow midnight rounds through a berry field",
|
||||
"sceneVariants": [
|
||||
"Moonlit lumber: a bear making slow midnight rounds through a berry field",
|
||||
"Silvered leaves and dark berry clusters",
|
||||
"Quiet rustling and soft pops of ripe fruit",
|
||||
"Moth fluttering in the wake",
|
||||
"Horizon low and indistinct"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle selective nibbles and satisfied chewing",
|
||||
"Pausing to listen with perked ears",
|
||||
"Rubbing cheek on a low branch",
|
||||
"Occasional long inhalations marking scent"
|
||||
],
|
||||
"camera": "Slow handheld prowling with close mouth and paw inserts",
|
||||
"accents": [
|
||||
"cool moon rim on berry sheen",
|
||||
"tiny glints on wet berry skins"
|
||||
],
|
||||
"mood": "quiet midnight indulgence",
|
||||
"lighting": "cool moonlight with soft highlights",
|
||||
"style": "nocturnal pastoral"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "A bear investigating a campsite in soft pre-dawn blue light",
|
||||
"sceneVariants": [
|
||||
"A bear investigating a campsite in soft pre-dawn blue light",
|
||||
"Torn bags and knocked-over cookware",
|
||||
"Faint lantern glow still warm in the tent",
|
||||
"Bear sniffing at nylon and metal",
|
||||
"Silent sleeping figures unaware nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Careful prods and tentative nibbles at gear",
|
||||
"A sudden clatter causing quick retreat",
|
||||
"Smell-based exploratory circles",
|
||||
"Final decisive snag of an abandoned snack"
|
||||
],
|
||||
"camera": "Documentary POV from slightly hidden vantage with quick reaction cuts",
|
||||
"accents": [
|
||||
"cool pre-dawn rim light",
|
||||
"speculars on metal and wet fur"
|
||||
],
|
||||
"mood": "curious opportunism",
|
||||
"lighting": "soft pre-dawn blue with warm lantern contrast",
|
||||
"style": "tense human-wildlife interaction"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Autumn hillside where bears roll and feed among fallen apples",
|
||||
"sceneVariants": [
|
||||
"Autumn hillside where bears roll and feed among fallen apples",
|
||||
"Crisp leaf carpets and scattered fruit",
|
||||
"Red apples split and juices flowing",
|
||||
"Warm autumn haze",
|
||||
"Buzzing flies near the richest finds"
|
||||
],
|
||||
"actions": [
|
||||
"Rolling to reach a bounty of fruit",
|
||||
"Joyful mouthfuls and sloppy satisfaction",
|
||||
"Playful bops between siblings",
|
||||
"A purposeful haul toward a hidden stash"
|
||||
],
|
||||
"camera": "Medium tracking with joyful close-ups on mouths and paws",
|
||||
"accents": [
|
||||
"warm autumn rim lighting fruit gloss",
|
||||
"high-detail juice micro-highlights"
|
||||
],
|
||||
"mood": "gluttonous warmth",
|
||||
"lighting": "warm golden autumn sun",
|
||||
"style": "exuberant seasonal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "A lone bear silhouette on a foggy ridge at first light",
|
||||
"sceneVariants": [
|
||||
"A lone bear silhouette on a foggy ridge at first light",
|
||||
"Mist rolling through low valleys",
|
||||
"Sparse pines peeking through fog",
|
||||
"Silky muted palette and calm stillness",
|
||||
"Distant bird calls barely audible"
|
||||
],
|
||||
"actions": [
|
||||
"Slow deliberate stride through the mist",
|
||||
"Periodic stops to scent and listen",
|
||||
"Deep slow exhale making visible vapor",
|
||||
"Turning silhouette to regard rising sun"
|
||||
],
|
||||
"camera": "Wide atmospheric crane with soft focus foreground",
|
||||
"accents": [
|
||||
"volumetric light through mist",
|
||||
"soft luminous rim on fur outlines"
|
||||
],
|
||||
"mood": "meditative solitude",
|
||||
"lighting": "muted pastel dawn with fog diffusion",
|
||||
"style": "lyrical nature study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bears",
|
||||
"scene": "Mating ritual displays at dusk with two bears circling and testing each other",
|
||||
"sceneVariants": [
|
||||
"Mating ritual displays at dusk with two bears circling and testing each other",
|
||||
"Postured movements and sniff exchanges",
|
||||
"Twilight embers in the sky",
|
||||
"Grass flattened where they confront",
|
||||
"Subtle assertive growls"
|
||||
],
|
||||
"actions": [
|
||||
"Slow circling and nose inspection",
|
||||
"Short test charges and retreats",
|
||||
"Momentary gentle rubbing followed by standoff",
|
||||
"Pair settling into mutual acceptance"
|
||||
],
|
||||
"camera": "Medium intimate handheld with slow pacing",
|
||||
"accents": [
|
||||
"warm dusk rim and soft backlight",
|
||||
"fine detail on fur alignment and ear edges"
|
||||
],
|
||||
"mood": "tense courtship",
|
||||
"lighting": "soft dusk warm-cool blend",
|
||||
"style": "behavioral documentary vignette"
|
||||
}
|
||||
]
|
||||
352
src/data/animals_and_wildlife_butterflies.json
Normal file
352
src/data/animals_and_wildlife_butterflies.json
Normal file
@ -0,0 +1,352 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Sunlit wildflower meadow alive with fluttering monarchs",
|
||||
"sceneVariants": [
|
||||
"Sunlit wildflower meadow alive with fluttering monarchs",
|
||||
"Orange wings punctuating tall grasses",
|
||||
"A warm breeze moving the flower tops",
|
||||
"Bees humming in parallel lanes",
|
||||
"Distant hay bales under a clear sky"
|
||||
],
|
||||
"actions": [
|
||||
"Delicate wingbeats sampling nectar",
|
||||
"Courtship flutter spirals between individuals",
|
||||
"Landing-and-lift cycle over bright blooms",
|
||||
"Occasional sun-bathing wing spread"
|
||||
],
|
||||
"camera": "Low dolly sweeping through flowers with macro push-ins",
|
||||
"accents": [
|
||||
"golden rim light through translucent wings",
|
||||
"high micro-detail on wing scales"
|
||||
],
|
||||
"mood": "joyful abundance",
|
||||
"lighting": "warm midday sunlight with soft backlight",
|
||||
"style": "luminous macro nature"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Pale lavender field at dawn where painted ladies wake and warm",
|
||||
"sceneVariants": [
|
||||
"Pale lavender field at dawn where painted ladies wake and warm",
|
||||
"Soft pastel horizon and dewy petals",
|
||||
"Clusters of butterflies settling on lavender heads",
|
||||
"Thin mist hugging the ground",
|
||||
"A distant bee lane humming"
|
||||
],
|
||||
"actions": [
|
||||
"Slow morning wing-opening to absorb heat",
|
||||
"Tiny proboscis probing for nectar",
|
||||
"Occasional flutter to reposition",
|
||||
"Gathering on a warm rock for sun"
|
||||
],
|
||||
"camera": "Macro close-ups with gentle pullback to reveal field",
|
||||
"accents": [
|
||||
"soft volumetric shafts through petals",
|
||||
"dewy micro-highlights on wing fringes"
|
||||
],
|
||||
"mood": "tranquil awakening",
|
||||
"lighting": "soft dawn gold with cool under-shade",
|
||||
"style": "delicate natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Tropical rainforest glade with iridescent swallowtails dancing",
|
||||
"sceneVariants": [
|
||||
"Tropical rainforest glade with iridescent swallowtails dancing",
|
||||
"Wet verdant leaves forming a high canopy",
|
||||
"Patches of bright orchids and damp leaf litter",
|
||||
"Tiny waterfalls and glinting pools",
|
||||
"Sun-flecked clearings"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid looping flights between orchids",
|
||||
"Perching with wings fanned to show iridescence",
|
||||
"Courtship spirals in filtered sun",
|
||||
"Skimming water surfaces to sip minerals"
|
||||
],
|
||||
"camera": "Handheld close-tracking with saturated color grading",
|
||||
"accents": [
|
||||
"prismatic iridescent highlights on wings",
|
||||
"wet-leaf specular micro-highlights"
|
||||
],
|
||||
"mood": "exotic exuberance",
|
||||
"lighting": "dappled tropical sun",
|
||||
"style": "vivid nature tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Meadow edge at high noon with dozens of fritillaries feeding on thistles",
|
||||
"sceneVariants": [
|
||||
"Meadow edge at high noon with dozens of fritillaries feeding on thistles",
|
||||
"Dry rim of grassland and scattered scrub",
|
||||
"Bright blue sky overhead",
|
||||
"Heat shimmer near the soil",
|
||||
"A distant fence-line"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic nectaring and rapid wing flicks",
|
||||
"Territorial chasing between males",
|
||||
"Brief land-and-hop sampling across blooms",
|
||||
"Resting on sun-warmed stones"
|
||||
],
|
||||
"camera": "Wide field sweep with macro inserts for feeding detail",
|
||||
"accents": [
|
||||
"hard sun rim on wing edges",
|
||||
"crisp micro-detail on nectar-tube interactions"
|
||||
],
|
||||
"mood": "busy vitality",
|
||||
"lighting": "harsh bright midday sun",
|
||||
"style": "documentary natural slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Pollinator garden in a suburban backyard with mixed species at sunset",
|
||||
"sceneVariants": [
|
||||
"Pollinator garden in a suburban backyard with mixed species at sunset",
|
||||
"Blooming zinnias and coneflowers",
|
||||
"Fence and house silhouette in the warm distance",
|
||||
"Children's garden tools left aside",
|
||||
"Soft humming of bees and insects"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle mutual ignoring between species while feeding",
|
||||
"Slow circling over favored blooms",
|
||||
"Intermittent tiny mating dances",
|
||||
"Retreating into shade as last sun dips"
|
||||
],
|
||||
"camera": "Intimate garden POV with balanced mid-shots and macro picks",
|
||||
"accents": [
|
||||
"warm golden rim on translucent wings",
|
||||
"garden-bokeh micro-highlights"
|
||||
],
|
||||
"mood": "domestic warmth",
|
||||
"lighting": "golden hour with soft warm glow",
|
||||
"style": "human-nature neighborhood vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Moonlit orchid greenhouse where night butterflies (hawkmoths) hover like ghosts",
|
||||
"sceneVariants": [
|
||||
"Moonlit orchid greenhouse where night butterflies (hawkmoths) hover like ghosts",
|
||||
"Glass panes and humid breath inside",
|
||||
"Large white hawkmoths resembling birds",
|
||||
"Dim interior lights and moonbeam through glass",
|
||||
"Fragrant waves of night-bloom scent"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid hovering like tiny helicopters",
|
||||
"Long proboscis probing deep corollas",
|
||||
"Occasional perching under broad leaves to rest",
|
||||
"Soft wing blur creating shimmering bokeh"
|
||||
],
|
||||
"camera": "Low-light stabilized tracking with close slow-motion on hover",
|
||||
"accents": [
|
||||
"cool moon rim on wing membranes",
|
||||
"soft organic glow micro-highlights"
|
||||
],
|
||||
"mood": "ethereal nocturnal elegance",
|
||||
"lighting": "very low moonlit greenhouse with warm plant accents",
|
||||
"style": "dreamlike botanical nocturne"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Twilight on the moor where ghostly pale moths appear as stars fall",
|
||||
"sceneVariants": [
|
||||
"Twilight on the moor where ghostly pale moths appear as stars fall",
|
||||
"Heather and low scrub under a violet sky",
|
||||
"Soft distant lantern from a shepherd's hut",
|
||||
"Cool breeze and fragrant heather",
|
||||
"A single owl calling remotely"
|
||||
],
|
||||
"actions": [
|
||||
"Slow drifting flight at the edge of vision",
|
||||
"Resting on cool stones with folded wings",
|
||||
"Occasional erratic glides near porch-lights",
|
||||
"Mild mating flutter in soft violet light"
|
||||
],
|
||||
"camera": "Gentle stabilized panning with soft-focus bokeh",
|
||||
"accents": [
|
||||
"cool twilight rim on pale wings",
|
||||
"tiny reflective micro-highlights on scales"
|
||||
],
|
||||
"mood": "melancholic calm",
|
||||
"lighting": "twilight cool-warm blend",
|
||||
"style": "poetic dusk vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Night garden under sodium streetlamps where moths swirl in orange pools",
|
||||
"sceneVariants": [
|
||||
"Night garden under sodium streetlamps where moths swirl in orange pools",
|
||||
"Tin-lit hedgerows and warm air shimmer",
|
||||
"Clusters of attracted moths circling lamps",
|
||||
"A cat watching cautiously from a wall",
|
||||
"Soft human windows glowing in the distance"
|
||||
],
|
||||
"actions": [
|
||||
"Hypnotic circling around artificial lights",
|
||||
"Erratic close passes and sudden dives",
|
||||
"Occasional landing on lamp insulation",
|
||||
"Drift-off into darker hedges after lamp movement"
|
||||
],
|
||||
"camera": "Low-light handheld with artificial lamp punch-ins",
|
||||
"accents": [
|
||||
"warm sodium speculars on wing edges",
|
||||
"glowing micro-highlights in the lamp halo"
|
||||
],
|
||||
"mood": "urban nocturnal pull",
|
||||
"lighting": "harsh warm artificial night light",
|
||||
"style": "nocturnal urban snapshot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Cave mouth at dusk where glowing butterflies (fantasy) swirl in bioluminescent clusters",
|
||||
"sceneVariants": [
|
||||
"Cave mouth at dusk where glowing butterflies (fantasy) swirl in bioluminescent clusters",
|
||||
"Dark rock throat and soft glowing halos",
|
||||
"Stalactite silhouettes framing an ethereal swarm",
|
||||
"Glossy wet stone and moss",
|
||||
"Cool evening breeze"
|
||||
],
|
||||
"actions": [
|
||||
"Slow drifting luminous dance at the cave lip",
|
||||
"Pairs weaving tight spirals as if painting light",
|
||||
"Occasional plunge into the cave interior",
|
||||
"Soft chiming wing sounds like tiny bells"
|
||||
],
|
||||
"camera": "Stabilized cinematic with glow bloom and slow crane-ins",
|
||||
"accents": [
|
||||
"soft luminous rim and internal glow",
|
||||
"sparkling micro-glow highlights on moss"
|
||||
],
|
||||
"mood": "mystical enchantment",
|
||||
"lighting": "very low with internal bioluminescent glow",
|
||||
"style": "fantastical nocturnal tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "High alpine scree with alpine fritillaries basking on warm stones",
|
||||
"sceneVariants": [
|
||||
"High alpine scree with alpine fritillaries basking on warm stones",
|
||||
"Sparse alpine flora and wind-polished rocks",
|
||||
"Thin cold sky and intense blue",
|
||||
"Distant glacier gleam",
|
||||
"Shimmering heat above stones"
|
||||
],
|
||||
"actions": [
|
||||
"Clustered sun-basking with wings angled",
|
||||
"Short fluttery flights between rocks",
|
||||
"Edge-perching to escape gusts",
|
||||
"Quick cooling flaps after short sprints"
|
||||
],
|
||||
"camera": "Telephoto compressed with macro detail on wing patterns",
|
||||
"accents": [
|
||||
"hard sun rim on scale edges",
|
||||
"crisp micro-texture on stone and wing margins"
|
||||
],
|
||||
"mood": "stoic alpine calm",
|
||||
"lighting": "bright high-altitude sun",
|
||||
"style": "small-scale landscape portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Evening hedgerow where dark-colored moths become prominent as day species fade",
|
||||
"sceneVariants": [
|
||||
"Evening hedgerow where dark-colored moths become prominent as day species fade",
|
||||
"Shadowed hedge lines and cooling air",
|
||||
"Flash of wing patterns as animals cross",
|
||||
"Distant streetlamp starting to warm",
|
||||
"Crickets beginning their chorus"
|
||||
],
|
||||
"actions": [
|
||||
"Emergence from foliage with soft wingbeats",
|
||||
"Feeding on late-blooming jasmine",
|
||||
"Quick evasive turns at sudden noise",
|
||||
"Tucking into dense leaves for the night"
|
||||
],
|
||||
"camera": "Soft dusk handheld with close feeding inserts",
|
||||
"accents": [
|
||||
"cool dusk rim on darker wings",
|
||||
"subtle reflective micro-highlights on nectar drops"
|
||||
],
|
||||
"mood": "transformative calm",
|
||||
"lighting": "low dusk with cool fill",
|
||||
"style": "intimate crepuscular piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Orchard midday where small blue butterflies ferry between apple blossoms",
|
||||
"sceneVariants": [
|
||||
"Orchard midday where small blue butterflies ferry between apple blossoms",
|
||||
"Blossom-scented air and drowsy pollinators",
|
||||
"Rows of flowering trees",
|
||||
"Bumblebees and hoverflies sharing the space",
|
||||
"A distant orchard worker under a sunhat"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid tiny flights between clusters",
|
||||
"Perch-and-probe on soft petals",
|
||||
"Occasional playful chase between males",
|
||||
"Resting on a warm branch between bouts"
|
||||
],
|
||||
"camera": "Gentle lateral tracking with macro blossom inserts",
|
||||
"accents": [
|
||||
"warm floral rim on wing edges",
|
||||
"crisp micro-highlights on pollen grains"
|
||||
],
|
||||
"mood": "light pastoral charm",
|
||||
"lighting": "soft bright midday with warm tones",
|
||||
"style": "gentle documentary slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Riverbank at dusk where blue morphos flash between shaded trees",
|
||||
"sceneVariants": [
|
||||
"Riverbank at dusk where blue morphos flash between shaded trees",
|
||||
"Damp leaf litter and mossy roots",
|
||||
"Glints of electric blue as they fold and open",
|
||||
"A slow river reflecting last light",
|
||||
"Distant frog chorus"
|
||||
],
|
||||
"actions": [
|
||||
"Sudden spectacular flashes revealing iridescence",
|
||||
"Quick low passes skimming the water",
|
||||
"Perch-and-fan displays in semi-darkness",
|
||||
"Search-and-sip at damp mineral patches"
|
||||
],
|
||||
"camera": "Low-light handheld with high-contrast macro inserts",
|
||||
"accents": [
|
||||
"electric iridescent micro-highlights",
|
||||
"cool reflective rim on wet leaves"
|
||||
],
|
||||
"mood": "magical dusk spectacle",
|
||||
"lighting": "low dusk with bright iridescent accents",
|
||||
"style": "cinematic natural wonder"
|
||||
},
|
||||
{
|
||||
"subGenre": "Butterflies",
|
||||
"scene": "Nighttime lotus pond where moths hover and sip nectar beneath a soft moon",
|
||||
"sceneVariants": [
|
||||
"Nighttime lotus pond where moths hover and sip nectar beneath a soft moon",
|
||||
"Floating pads and open nocturnal blooms",
|
||||
"Reflective water mirroring moon and moth silhouettes",
|
||||
"Scent ribbons rising from open flowers",
|
||||
"Faint frog ripples"
|
||||
],
|
||||
"actions": [
|
||||
"Butterfly-like moths hovering into deep corollas",
|
||||
"Gentle wing shimmers leaving circular glow trails",
|
||||
"Landing to rest on cool leaf pads",
|
||||
"Occasional flight to deeper shadow for concealment"
|
||||
],
|
||||
"camera": "Stabilized nighttime crane with reflective inserts",
|
||||
"accents": [
|
||||
"soft moon rim on wing edges",
|
||||
"moist micro-highlights on petals and water"
|
||||
],
|
||||
"mood": "quiet nocturnal beauty",
|
||||
"lighting": "soft moonlit night with minimal fill",
|
||||
"style": "serene nocturnal vignette"
|
||||
}
|
||||
]
|
||||
327
src/data/animals_and_wildlife_camels.json
Normal file
327
src/data/animals_and_wildlife_camels.json
Normal file
@ -0,0 +1,327 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Dromedary caravan cresting a golden dune under high noon",
|
||||
"sceneVariants": [
|
||||
"Dromedary caravan cresting a golden dune under high noon",
|
||||
"Long shadows falling behind humps",
|
||||
"Heat shimmer bending the horizon",
|
||||
"Roped line of pack camels and laden saddles",
|
||||
"A solitary palm oasis visible far below"
|
||||
],
|
||||
"actions": [
|
||||
"Measured marching with synchronized footfalls",
|
||||
"Pack handlers adjusting loads and calling softly",
|
||||
"A young camel stumbling then regaining balance",
|
||||
"Sand drifting in small eddies around feet"
|
||||
],
|
||||
"camera": "Wide lateral tracking from a low dune with intermittent telephoto compressions",
|
||||
"accents": [
|
||||
"strong high-key speculars on sand grains",
|
||||
"textured micro-highlights on leather harness"
|
||||
],
|
||||
"mood": "steady endurance",
|
||||
"lighting": "harsh midday desert sun with high contrast",
|
||||
"style": "epic travel vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Night caravan crossing under a star-filled sky with a sliver moon",
|
||||
"sceneVariants": [
|
||||
"Night caravan crossing under a star-filled sky with a sliver moon",
|
||||
"Cool blue silhouettes of humps against stars",
|
||||
"Lanterns bobbing along the lead rope",
|
||||
"A faint milky way visible overhead",
|
||||
"Soft wind moving dune crests"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet plodding with muffled padding sounds",
|
||||
"Occasional low chatter between handlers",
|
||||
"Lantern light catching bridle edges",
|
||||
"Camels shifting weight to find footing"
|
||||
],
|
||||
"camera": "Low-light stabilized lateral glide with occasional close lantern inserts",
|
||||
"accents": [
|
||||
"cold moon rim on humps and harness",
|
||||
"tiny point-lights from lantern bokeh"
|
||||
],
|
||||
"mood": "solemn persistence",
|
||||
"lighting": "cool nocturnal moon-and-star light",
|
||||
"style": "noir desert tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Bedouin camp at dusk with camels resting near smoky fires",
|
||||
"sceneVariants": [
|
||||
"Bedouin camp at dusk with camels resting near smoky fires",
|
||||
"Low tents and domestic items strewn",
|
||||
"Children weaving between legs",
|
||||
"Smoke curling up into a mellow sky",
|
||||
"Lanterns and simple cooking setups"
|
||||
],
|
||||
"actions": [
|
||||
"Camels kneeling and loosening loads",
|
||||
"Handlers untying and offering water",
|
||||
"Camaraderie among humans and animals",
|
||||
"Soft songs and drum rhythms starting"
|
||||
],
|
||||
"camera": "Intimate mid-shots with close inserts of hands and ropes",
|
||||
"accents": [
|
||||
"warm firelit rim on fur edges",
|
||||
"soft soot micro-highlights around harness"
|
||||
],
|
||||
"mood": "domestic respite",
|
||||
"lighting": "warm dusk with firelight accents",
|
||||
"style": "human-animal cultural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Solitary camel silhouetted on cracked clay flats during a red sunset",
|
||||
"sceneVariants": [
|
||||
"Solitary camel silhouetted on cracked clay flats during a red sunset",
|
||||
"Long fractured ground patterns",
|
||||
"A blazing red-orange sky",
|
||||
"A distant mirage shimmer",
|
||||
"Sparse thorn scrub in silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Slow steady head lifts to scan for water",
|
||||
"A lone footstep raising a small dust puff",
|
||||
"Tail flicking at persistent flies",
|
||||
"An extended low hum"
|
||||
],
|
||||
"camera": "Telephoto compressed silhouette with slow pull-in to reveal texture",
|
||||
"accents": [
|
||||
"fiery rim on silhouette edges",
|
||||
"high grain micro-highlights on cracked earth"
|
||||
],
|
||||
"mood": "lonely perseverance",
|
||||
"lighting": "intense golden-red sunset",
|
||||
"style": "poetic desert portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Oasis watering: thirsty caravan circling a small palm pool at morning",
|
||||
"sceneVariants": [
|
||||
"Oasis watering: thirsty caravan circling a small palm pool at morning",
|
||||
"Reflective still water and pendant palms",
|
||||
"Wet hoof prints around the rim",
|
||||
"Bright birds drinking at the bank",
|
||||
"Fresh green growth contrasting arid surrounds"
|
||||
],
|
||||
"actions": [
|
||||
"Camels lowering muzzles to drink deeply",
|
||||
"Handlers scooping water and rinsing jars",
|
||||
"Playful splashes by curious juveniles",
|
||||
"Careful rotation to give each animal space"
|
||||
],
|
||||
"camera": "Low circular dolly around the pool with close water-sip inserts",
|
||||
"accents": [
|
||||
"sparkling speculars on water droplets",
|
||||
"soft cool reflections on fur"
|
||||
],
|
||||
"mood": "relief and refreshment",
|
||||
"lighting": "soft morning fill with reflective water highlights",
|
||||
"style": "refreshing natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Sandstorm approach: camels bunched together as wind rises to a roar",
|
||||
"sceneVariants": [
|
||||
"Sandstorm approach: camels bunched together as wind rises to a roar",
|
||||
"Whipping orange air and stinging sand",
|
||||
"Squinted eyes and braced bodies",
|
||||
"Taut straps and flapping saddlecloths",
|
||||
"Distant silhouettes melting into dust"
|
||||
],
|
||||
"actions": [
|
||||
"Tight grouping to reduce exposure",
|
||||
"Handlers shielding faces and securing loads",
|
||||
"Camels lowering heads against the wind",
|
||||
"A sudden blinding sand sweep enveloping the scene"
|
||||
],
|
||||
"camera": "Handheld chaotic with quick-cut rhythm, heavy grain for sand",
|
||||
"accents": [
|
||||
"flying sand micro-highlights frozen on leather",
|
||||
"harsh rim from storm-side light shafts"
|
||||
],
|
||||
"mood": "urgent concealment",
|
||||
"lighting": "high-contrast storm-swept light with orange haze",
|
||||
"style": "tense weather drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Nighttime market: camels tethered among stalls with warm lantern glow",
|
||||
"sceneVariants": [
|
||||
"Nighttime market: camels tethered among stalls with warm lantern glow",
|
||||
"Stacks of spices, woven textiles and camel silhouettes",
|
||||
"Crowds bargaining and walking past",
|
||||
"Lantern smoke and bargaining voices",
|
||||
"A call to prayer echoing"
|
||||
],
|
||||
"actions": [
|
||||
"Camels shifting weight while merchants haggle",
|
||||
"Handlers retrieving blankets and blankets being replaced",
|
||||
"Animals sniffing passed foods",
|
||||
"Occasional low chuffs as they settle"
|
||||
],
|
||||
"camera": "Medium handheld with close cutaways on goods and animal faces",
|
||||
"accents": [
|
||||
"warm lantern speculars on harness metal",
|
||||
"soft reflective micro-highlights on textiles"
|
||||
],
|
||||
"mood": "bustling nocturnal commerce",
|
||||
"lighting": "warm market lanterns in deep night",
|
||||
"style": "cultural market documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Camel racing track midday: sleek racing camels and jockeys in colorful silks",
|
||||
"sceneVariants": [
|
||||
"Camel racing track midday: sleek racing camels and jockeys in colorful silks",
|
||||
"Crowded stands with flags and banners",
|
||||
"Dusty straight track and timing flags",
|
||||
"Adrenal faces of jockeys crouched low",
|
||||
"Finish-line frenzy and judges"
|
||||
],
|
||||
"actions": [
|
||||
"Explosive sprint down the straight with whip-crack momentum",
|
||||
"Photofinish closeness and triumphant rears",
|
||||
"Handlers cheering and crowd roar",
|
||||
"Victory lap with ribbons flying"
|
||||
],
|
||||
"camera": "High-speed lateral tracking with slow-motion finish insert",
|
||||
"accents": [
|
||||
"bright midday specular on silk and tack",
|
||||
"dust micro-highlights frozen in frame"
|
||||
],
|
||||
"mood": "adrenal competition",
|
||||
"lighting": "bright competitive midday",
|
||||
"style": "sports documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Camels foraging among acacia scrub at sunset with warm golden light",
|
||||
"sceneVariants": [
|
||||
"Camels foraging among acacia scrub at sunset with warm golden light",
|
||||
"Thorny branches silhouettes and sparse shade",
|
||||
"Grazing mouthfuls of thorn-resistant shrubs",
|
||||
"A distant herd moving slowly",
|
||||
"Traces of earlier caravan footpaths"
|
||||
],
|
||||
"actions": [
|
||||
"Careful nibbling on thorny leaves with efficient mouths",
|
||||
"Head lifts to chew and crunch",
|
||||
"Occasional flaring nostril to scent the air",
|
||||
"Slow chewing and swallow rhythms"
|
||||
],
|
||||
"camera": "Medium close with texture inserts on mouth and leaf contact",
|
||||
"accents": [
|
||||
"warm rim on leaf edges",
|
||||
"detailed micro-highlights on mouth and whiskers"
|
||||
],
|
||||
"mood": "practical sustenance",
|
||||
"lighting": "golden hour warm fill",
|
||||
"style": "natural feeding vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Temple procession with camels carrying ornate howdahs in midday ceremony",
|
||||
"sceneVariants": [
|
||||
"Temple procession with camels carrying ornate howdahs in midday ceremony",
|
||||
"Colorful banners and incense smoke",
|
||||
"Priests and devotees lining the route",
|
||||
"Camels adorned with cloth and metal",
|
||||
"Empire-style architecture in background"
|
||||
],
|
||||
"actions": [
|
||||
"Slow ceremonial walk with rhythmic drumbeat",
|
||||
"Handlers guiding and adjusting ornaments",
|
||||
"Camels bowing slightly near shrine",
|
||||
"Crowd offering flowers and gifts"
|
||||
],
|
||||
"camera": "Ceremonial steady mid-shots with ornate detail inserts",
|
||||
"accents": [
|
||||
"bright decorative speculars on metalwork",
|
||||
"warm festival rim on cloth textures"
|
||||
],
|
||||
"mood": "solemn ceremony",
|
||||
"lighting": "clear midday festival light",
|
||||
"style": "ritual cultural tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Moonlit single-hump camel silhouetted against a blood-red bloodmoon",
|
||||
"sceneVariants": [
|
||||
"Moonlit single-hump camel silhouetted against a blood-red bloodmoon",
|
||||
"Eerie reddish moon casting long, cold shadows",
|
||||
"Still desert plain and distant spine ridges",
|
||||
"A sense of unnatural drama in the sky",
|
||||
"Dry low shrubs half in silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Slow head-up silhouette survey",
|
||||
"A tense pause as the sky glows",
|
||||
"Small shifts of hooves in silence",
|
||||
"Eventual calm resumption of grazing"
|
||||
],
|
||||
"camera": "Low-noise long lens close with high-contrast moonlit inserts",
|
||||
"accents": [
|
||||
"cold red rim on silhouette edges",
|
||||
"moody micro-highlights on sparse vegetation"
|
||||
],
|
||||
"mood": "ominous grandeur",
|
||||
"lighting": "dramatic blood-moon night lighting",
|
||||
"style": "noir lunar tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Salt-plain mirage midday where camels appear doubled in heat horizons",
|
||||
"sceneVariants": [
|
||||
"Salt-plain mirage midday where camels appear doubled in heat horizons",
|
||||
"White salt crusts and wavering horizon lines",
|
||||
"Distant camels flickering visually",
|
||||
"Low scrub and cracking soil",
|
||||
"Hard sun overhead"
|
||||
],
|
||||
"actions": [
|
||||
"Slow procession distorted by shimmering heat",
|
||||
"Camels lowering muzzles to pick sparse salt-tolerant plants",
|
||||
"Handlers shading eyes and pointing to the next landmark",
|
||||
"Short water sips at a rare brackish spring"
|
||||
],
|
||||
"camera": "Telephoto shimmer compression with heat-haze focus pulls",
|
||||
"accents": [
|
||||
"mirage micro-highlights on salt",
|
||||
"strong specular on sun-bleached harness"
|
||||
],
|
||||
"mood": "illusory endurance",
|
||||
"lighting": "intense midday heat haze",
|
||||
"style": "surreal desert study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Camels",
|
||||
"scene": "Dawn training yard: camels learning to kneel and accept packs under soft morning",
|
||||
"sceneVariants": [
|
||||
"Dawn training yard: camels learning to kneel and accept packs under soft morning",
|
||||
"Handlers coaxing with gentle ropes",
|
||||
"New harness being fitted and adjusted",
|
||||
"Small crowd of apprentices watching",
|
||||
"Warm wash of morning light"
|
||||
],
|
||||
"actions": [
|
||||
"Repeated kneel-and-stand training cycles",
|
||||
"Calm desensitization to saddles and noise",
|
||||
"Soft guidance and rewards of food",
|
||||
"Final acceptance and confident standing"
|
||||
],
|
||||
"camera": "Intimate training POV with instructional cutaways",
|
||||
"accents": [
|
||||
"soft volumetric rim on morning stages",
|
||||
"detailed micro-highlights on tack contact points"
|
||||
],
|
||||
"mood": "patient instruction",
|
||||
"lighting": "soft early-morning fill",
|
||||
"style": "educational animal-training vignette"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_crocodiles.json
Normal file
427
src/data/animals_and_wildlife_crocodiles.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Lazy estuary bank with a large saltwater crocodile half-submerged at midday",
|
||||
"sceneVariants": [
|
||||
"Lazy estuary bank with a large saltwater crocodile half-submerged at midday",
|
||||
"Sun glare on slow-moving water",
|
||||
"Mangrove roots framing the bank",
|
||||
"A distant fishing boat slicing the horizon",
|
||||
"Shorebirds picking at exposed mud"
|
||||
],
|
||||
"actions": [
|
||||
"Slow body undulation beneath the surface",
|
||||
"Occasional subtle eye-scan above water",
|
||||
"Brief nostril flaring to sample scent",
|
||||
"A lazy flick of the tail to adjust position"
|
||||
],
|
||||
"camera": "Low-angle riverbank track with occasional close telephoto on eye and jaw",
|
||||
"accents": [
|
||||
"sharp speculars on scaly ridges",
|
||||
"detailed micro-highlights on water ripples"
|
||||
],
|
||||
"mood": "patient lethargy",
|
||||
"lighting": "bright high-noon reflections",
|
||||
"style": "documentary still study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Night ambush at a slow-moving river with moonlight glancing over a lurking crocodile",
|
||||
"sceneVariants": [
|
||||
"Night ambush at a slow-moving river with moonlight glancing over a lurking crocodile",
|
||||
"Chromatic moon shimmer across dark water",
|
||||
"Eyes like small jewels in the black",
|
||||
"Reeds whispering in a gentle current",
|
||||
"Distant animal calls echoing"
|
||||
],
|
||||
"actions": [
|
||||
"Silent glide toward unsuspecting prey",
|
||||
"Sudden explosive lunge breaking the surface",
|
||||
"Surface churn and underwater thrash",
|
||||
"Drag-and-submerge sequence to hide the catch"
|
||||
],
|
||||
"camera": "Stabilized low-light insert with slow-motion impact on strike",
|
||||
"accents": [
|
||||
"cold moon rim on raised snout",
|
||||
"wet-skin micro-highlights caught in splash"
|
||||
],
|
||||
"mood": "predatory hush",
|
||||
"lighting": "soft moonlit night",
|
||||
"style": "nocturnal thriller vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Dry-season sandbar congregation where dozens soak in a blazing sun",
|
||||
"sceneVariants": [
|
||||
"Dry-season sandbar congregation where dozens soak in a blazing sun",
|
||||
"Cracked mud edges and clustered bodies",
|
||||
"Heat shimmer and slow breathing",
|
||||
"A shimmering horizon of parched scrub",
|
||||
"Single dominant adult in the center"
|
||||
],
|
||||
"actions": [
|
||||
"Haphazard repositioning to find shade",
|
||||
"Occasional jaws open for thermoregulation",
|
||||
"Tail flicks dispersing heat-warped dust",
|
||||
"Social jostling for the best sun patch"
|
||||
],
|
||||
"camera": "Wide aerial reveal then slow push-in to texture on scales",
|
||||
"accents": [
|
||||
"harsh midday specular on scales",
|
||||
"high micro-detail on cracked mud texture"
|
||||
],
|
||||
"mood": "feral lethargy",
|
||||
"lighting": "blazing high-noon heat",
|
||||
"style": "epic natural panorama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Muddy lagoon nursery with juvenile crocs sheltering among sticks at dusk",
|
||||
"sceneVariants": [
|
||||
"Muddy lagoon nursery with juvenile crocs sheltering among sticks at dusk",
|
||||
"Soft violet dusk reflected in shallow water",
|
||||
"Small shadows of young bodies huddling",
|
||||
"Parent occasionally nearby in darker water",
|
||||
"Dragonfly wings flashing overhead"
|
||||
],
|
||||
"actions": [
|
||||
"Tiny darting lunges at insect surface prey",
|
||||
"Synchronized stillness when threatened",
|
||||
"Parent scanning from shadowed deeper water",
|
||||
"Occasional exploratory nose touches against a twig"
|
||||
],
|
||||
"camera": "Intimate shallow-water macro tracking with close-eye inserts",
|
||||
"accents": [
|
||||
"warm dusk rim on juvenile ridges",
|
||||
"dewy micro-highlights on tiny scales"
|
||||
],
|
||||
"mood": "vulnerable tension",
|
||||
"lighting": "soft dusk warmth",
|
||||
"style": "tender yet uneasy vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Mangrove labyrinth where a crocodile slides between roots in filtered morning light",
|
||||
"sceneVariants": [
|
||||
"Mangrove labyrinth where a crocodile slides between roots in filtered morning light",
|
||||
"Dappled green water and tangled root silhouettes",
|
||||
"Sun shafts cutting through canopy gaps",
|
||||
"Small fish flashing along root edges",
|
||||
"A heron taking a wary step"
|
||||
],
|
||||
"actions": [
|
||||
"Low silent approach along root shadow-lines",
|
||||
"Brief investigative snout probing into a crevice",
|
||||
"Quick lateral reposition to ambush lane",
|
||||
"Slow retreat deeper into shaded channels"
|
||||
],
|
||||
"camera": "Tight tracking with shallow depth, root-pattern inserts",
|
||||
"accents": [
|
||||
"filtered green rim on edges",
|
||||
"sparkling micro-highlights on particulate in water"
|
||||
],
|
||||
"mood": "stealthy concealment",
|
||||
"lighting": "morning filtered canopy light",
|
||||
"style": "immersive close-nature study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "River crossing where a crocodile ambushes a thirsty antelope at sunset",
|
||||
"sceneVariants": [
|
||||
"River crossing where a crocodile ambushes a thirsty antelope at sunset",
|
||||
"A tense line of hooves pausing at the water's lip",
|
||||
"Burnt-orange sky mirrored in the river",
|
||||
"Splintered reeds and disrupted reflections",
|
||||
"A sudden commotion of birds"
|
||||
],
|
||||
"actions": [
|
||||
"Calculated launch as the antelope bends down",
|
||||
"Violent surface commotion and drag",
|
||||
"Antelope struggling then submerging",
|
||||
"Predator retreat into murk with prey"
|
||||
],
|
||||
"camera": "Medium to close handheld with crash slow-motion on strike",
|
||||
"accents": [
|
||||
"fiery rim on water spray",
|
||||
"dramatic micro-highlights on muscle strain"
|
||||
],
|
||||
"mood": "brutal efficiency",
|
||||
"lighting": "golden-hour directional light",
|
||||
"style": "tense cinematic predator set-piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Rocky river gorge where a crocodile basks on a sun-warmed slab",
|
||||
"sceneVariants": [
|
||||
"Rocky river gorge where a crocodile basks on a sun-warmed slab",
|
||||
"Echoing canyon walls and eddy pools",
|
||||
"Rough granite slabs hosting scaly patches",
|
||||
"Moss and small ferns clinging near cooler water",
|
||||
"Distant echo of falling drops"
|
||||
],
|
||||
"actions": [
|
||||
"Slow stretching of limbs to absorb heat",
|
||||
"Occasional roll to expose different flank",
|
||||
"Subtle head tilt to scan vertical rock faces",
|
||||
"A lazy slide into the pool when disturbed"
|
||||
],
|
||||
"camera": "Stable wide then macro texture insert on scute patterns",
|
||||
"accents": [
|
||||
"warm rock rim highlights",
|
||||
"high micro-detail on scute edges"
|
||||
],
|
||||
"mood": "ancient stillness",
|
||||
"lighting": "warm midday canyon light",
|
||||
"style": "textural natural portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Swamp fog morning where shapes of crocodiles float like logs",
|
||||
"sceneVariants": [
|
||||
"Swamp fog morning where shapes of crocodiles float like logs",
|
||||
"Low rolling fog and muted silhouettes",
|
||||
"Cypress knees and hanging moss",
|
||||
"Drifting pollen and insect chorus",
|
||||
"Soft distant water dripping"
|
||||
],
|
||||
"actions": [
|
||||
"Slow surfacing to breathe with minimal disturbance",
|
||||
"Tiny bubbles breaking surface periodically",
|
||||
"Ghostly glide under mirrored fog",
|
||||
"Sudden silent pivot when detecting sound"
|
||||
],
|
||||
"camera": "Soft-focus glide with ethereal grading and close nostril inserts",
|
||||
"accents": [
|
||||
"cool mist rim on scaled backs",
|
||||
"soft volumetric micro-highlights on water beads"
|
||||
],
|
||||
"mood": "ethereal menace",
|
||||
"lighting": "muted fog-diffused morning",
|
||||
"style": "mystical swamp study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Brackish creek at high tide where saltwater juveniles patrol the mouth",
|
||||
"sceneVariants": [
|
||||
"Brackish creek at high tide where saltwater juveniles patrol the mouth",
|
||||
"Mix of fresh and salty water eddies",
|
||||
"Mangrove fringe with exposed tangled roots",
|
||||
"Small crustaceans darting in shallow pools",
|
||||
"A watchful adult on a higher bank"
|
||||
],
|
||||
"actions": [
|
||||
"Juvenile synchronized passes to practice hunting",
|
||||
"Brief surface snaps at small fish",
|
||||
"Quick dives and re-emerges in learning bursts",
|
||||
"Huddling near deeper shade after exertion"
|
||||
],
|
||||
"camera": "Near-surface shallow-water tracking with juvenile close inserts",
|
||||
"accents": [
|
||||
"sparkling brackish micro-highlights",
|
||||
"detailed wet-skin speculars"
|
||||
],
|
||||
"mood": "learning vigilance",
|
||||
"lighting": "bright tidal morning",
|
||||
"style": "educational natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Historic river bridge where a wary crocodile lurks beneath tourist footsteps",
|
||||
"sceneVariants": [
|
||||
"Historic river bridge where a wary crocodile lurks beneath tourist footsteps",
|
||||
"Stone bridge arches and tourist silhouettes",
|
||||
"Cold shadow beneath bridge and glinting river",
|
||||
"Caution signs and local guides shouting warnings",
|
||||
"A camera flash bouncing off water"
|
||||
],
|
||||
"actions": [
|
||||
"Slow drift under the arch avoiding current",
|
||||
"Brief investigative head up when hearing footsteps",
|
||||
"Sudden submerge when light flashes",
|
||||
"Careful reposition to deeper still water"
|
||||
],
|
||||
"camera": "Documentary POV from bridge rail with stealth underwater inserts",
|
||||
"accents": [
|
||||
"hard contrast rim under arch",
|
||||
"dry-stone micro-highlights"
|
||||
],
|
||||
"mood": "urban-edge tension",
|
||||
"lighting": "patchy daylight and shadow",
|
||||
"style": "urban-nature caution piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Mudflat nocturne where feeding crocs create silhouettes against fisher lanterns",
|
||||
"sceneVariants": [
|
||||
"Mudflat nocturne where feeding crocs create silhouettes against fisher lanterns",
|
||||
"Lantern reflections and churning mud",
|
||||
"Fishermen casting nets in shallow pools",
|
||||
"Low tide channels revealing clay substrate",
|
||||
"Soft clatter of boats at rest"
|
||||
],
|
||||
"actions": [
|
||||
"Opportunistic snatching of hooked fish",
|
||||
"Slow encirclement of shallow prey",
|
||||
"Fishermen pulling to avoid sudden tugs",
|
||||
"Brief skirmishes among multiple crocs over a scrap"
|
||||
],
|
||||
"camera": "Low-light documentary with handheld reactions and close mud-splash inserts",
|
||||
"accents": [
|
||||
"warm lantern specular on water",
|
||||
"mud micro-highlights suspended mid-splash"
|
||||
],
|
||||
"mood": "tense human-animal overlap",
|
||||
"lighting": "harsh artificial lanterns in night",
|
||||
"style": "raw human-wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Riverbank mating display where two large males jostle at twilight",
|
||||
"sceneVariants": [
|
||||
"Riverbank mating display where two large males jostle at twilight",
|
||||
"Deepened shadows and flaring displays",
|
||||
"Heated posturing and open mouths",
|
||||
"Rippling water from body slams",
|
||||
"Nearby females watching from distance"
|
||||
],
|
||||
"actions": [
|
||||
"Growl-like hissing and throat-slap displays",
|
||||
"Violent lateral pushes and body-rolls",
|
||||
"Occasional retreat and regroup",
|
||||
"Dominant claim and triumphant bellow"
|
||||
],
|
||||
"camera": "Dynamic mid-shot with high-frame-rate slow-motion on impact",
|
||||
"accents": [
|
||||
"twilight rim on splashing water",
|
||||
"dramatic micro-highlights on jaw teeth"
|
||||
],
|
||||
"mood": "primeval rivalry",
|
||||
"lighting": "twilight mixed cool-warm",
|
||||
"style": "cinematic animal conflict"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Urban lagoon restoration area where crocs coexist with reclaimed wetlands by day",
|
||||
"sceneVariants": [
|
||||
"Urban lagoon restoration area where crocs coexist with reclaimed wetlands by day",
|
||||
"Boardwalks and interpretive signs",
|
||||
"Kayakers keeping distance",
|
||||
"Well-rooted vegetation and structured marsh edges",
|
||||
"Children peering from safe platforms"
|
||||
],
|
||||
"actions": [
|
||||
"Crocodile basking near a planted reed edge",
|
||||
"Occasional glide past educational kayakers",
|
||||
"Park rangers monitoring and marking territory",
|
||||
"Public information being read aloud"
|
||||
],
|
||||
"camera": "Steady educational wide with interpretive close-ins",
|
||||
"accents": [
|
||||
"soft public-space speculars",
|
||||
"detailed micro-highlights on restored plant textures"
|
||||
],
|
||||
"mood": "cautious coexistence",
|
||||
"lighting": "clear urban-daylight",
|
||||
"style": "informative conservation piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Tidal creek at dawn where a crocodile slides into reflective glassy water",
|
||||
"sceneVariants": [
|
||||
"Tidal creek at dawn where a crocodile slides into reflective glassy water",
|
||||
"Pink and blue dawn gradients",
|
||||
"Wet mud panes reflecting new light",
|
||||
"Small fish flicking in shallow channels",
|
||||
"Fog lifting in soft bands"
|
||||
],
|
||||
"actions": [
|
||||
"Seamless slide into surface with minimal ripple",
|
||||
"Gentle passes along mirrored banks",
|
||||
"Scanning with nostrils barely breaking surface",
|
||||
"Pausing to let current carry motion"
|
||||
],
|
||||
"camera": "Aerial to waterline transition with quiet slow-tracking",
|
||||
"accents": [
|
||||
"soft dawn rim reflections",
|
||||
"calm glass micro-highlights"
|
||||
],
|
||||
"mood": "serene patience",
|
||||
"lighting": "soft pastel dawn",
|
||||
"style": "quiet reflective portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Nesting site on riverbank as females dig and guard clutches under hot sun",
|
||||
"sceneVariants": [
|
||||
"Nesting site on riverbank as females dig and guard clutches under hot sun",
|
||||
"Freshly excavated sand mounds and marked nests",
|
||||
"Tiny imprint tracks around the rim",
|
||||
"Guarding stance with flattened body",
|
||||
"Occasional shadow of a threatening bird"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic excavation of nest cavities",
|
||||
"Vigilant scanning and warning hisses",
|
||||
"Diverse posture changes to cool clutch",
|
||||
"Camouflaging the nest after laying"
|
||||
],
|
||||
"camera": "Documentary close with protective-stance inserts and clutch detail",
|
||||
"accents": [
|
||||
"hot sand micro-highlights",
|
||||
"detailed egg-shell texture highlights"
|
||||
],
|
||||
"mood": "protective intensity",
|
||||
"lighting": "hot midday nesting light",
|
||||
"style": "maternal wildlife study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Storm-swollen river where crocodiles ride stronger currents beneath churning surface",
|
||||
"sceneVariants": [
|
||||
"Storm-swollen river where crocodiles ride stronger currents beneath churning surface",
|
||||
"Fast-flowing brown water and turbulent eddies",
|
||||
"Debris and branches carried along",
|
||||
"Clouded sky and intensifying wind",
|
||||
"Banks eroding and collapsing"
|
||||
],
|
||||
"actions": [
|
||||
"Clinging to calmer eddies to conserve energy",
|
||||
"Quick repositioning to avoid debris",
|
||||
"Occasional surface breaks to breathe",
|
||||
"Using submerged roots as temporary anchors"
|
||||
],
|
||||
"camera": "Chaotic handheld with water-spray inserts and rescue vantage",
|
||||
"accents": [
|
||||
"storm-scatter micro-highlights on wet skin",
|
||||
"high-contrast splash speculars"
|
||||
],
|
||||
"mood": "survival tension",
|
||||
"lighting": "storm-diffused heavy light",
|
||||
"style": "weather survival sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Crocodiles",
|
||||
"scene": "Final quiet lagoon scene at late dusk where one croc drifts and the water calms",
|
||||
"sceneVariants": [
|
||||
"Final quiet lagoon scene at late dusk where one croc drifts and the water calms",
|
||||
"Subtle purple-blue sky reflected",
|
||||
"Reeds rustling gently",
|
||||
"A single firefly orbiting the surface",
|
||||
"Silence threaded with distant frogs"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle drift barely moving the mirrored surface",
|
||||
"Slow eyelid blinks and minute gill ripples",
|
||||
"Body settling into deeper shadow",
|
||||
"A final long breath exhaled into the dusk"
|
||||
],
|
||||
"camera": "Wide tranquil establishing then tight soft-focus on eye reflection",
|
||||
"accents": [
|
||||
"muted dusk rim on silhouette",
|
||||
"calm mirror micro-highlights"
|
||||
],
|
||||
"mood": "resolved stillness",
|
||||
"lighting": "soft late-dusk fill",
|
||||
"style": "calm closing portrait"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_dolphins.json
Normal file
427
src/data/animals_and_wildlife_dolphins.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Sunlit pod riding bow waves off a small research vessel",
|
||||
"sceneVariants": [
|
||||
"Sunlit pod riding bow waves off a small research vessel",
|
||||
"Glassy ocean with scattered whitecaps",
|
||||
"Dolphins arcing in synchronized rhythm",
|
||||
"Foamy wake stretching behind the boat",
|
||||
"Wake spray catching the midday sun"
|
||||
],
|
||||
"actions": [
|
||||
"High-arched leaps clearing the wake",
|
||||
"Quick synchronized dives beneath the hull",
|
||||
"Close inspection of the boat's shadow",
|
||||
"Playful tail-slaps near the surface"
|
||||
],
|
||||
"camera": "Low stern-mounted tracking with occasional slow crane up to capture arcs",
|
||||
"accents": [
|
||||
"sparkling specular highlights on water droplets",
|
||||
"crisp micro-detail on skin sheen"
|
||||
],
|
||||
"mood": "exuberant playfulness",
|
||||
"lighting": "bright noon sun with high specular contrast",
|
||||
"style": "energetic marine documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Twilight breach line with violet sky and soft horizon",
|
||||
"sceneVariants": [
|
||||
"Twilight breach line with violet sky and soft horizon",
|
||||
"Silhouetted bodies sliding through a changing palette",
|
||||
"Long smooth arcs punctuating calm seas",
|
||||
"Gulls trailing behind chasing fish",
|
||||
"Distant lighthouse blinking"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated group breaches",
|
||||
"Surface porpoising and rapid passes",
|
||||
"Tactile rubbing between individuals",
|
||||
"Soft vocal clicks audible in the calm"
|
||||
],
|
||||
"camera": "Wide lateral crane with gentle push-ins during breaches",
|
||||
"accents": [
|
||||
"soft rim light on dorsal curves",
|
||||
"reflective streaks along wet skin"
|
||||
],
|
||||
"mood": "graceful cohesion",
|
||||
"lighting": "soft twilight with cool-violet fill",
|
||||
"style": "lyrical marine sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Nocturnal hunting corridor lit by a bioluminescent plankton bloom",
|
||||
"sceneVariants": [
|
||||
"Nocturnal hunting corridor lit by a bioluminescent plankton bloom",
|
||||
"Slowly glowing water trails from moving bodies",
|
||||
"Darkness pierced by warm breath glints",
|
||||
"Flash of fish when struck",
|
||||
"Ghostly blue ribbons following each fin stroke"
|
||||
],
|
||||
"actions": [
|
||||
"Silent coordinated funneling of small fish",
|
||||
"Rapid close-quarter thrusts into shimmering pockets",
|
||||
"Rise-and-snap captures scattering plankton glow",
|
||||
"Occasional leaping arcs to finish strikes"
|
||||
],
|
||||
"camera": "Stabilized low-light tracking with slow-mo on bioluminescent wakes",
|
||||
"accents": [
|
||||
"cold point highlights from plankton glows",
|
||||
"sparkling wake micro-highlights"
|
||||
],
|
||||
"mood": "mystical urgency",
|
||||
"lighting": "very low with cool bioluminescent accents",
|
||||
"style": "ethereal nocturnal nature piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Calf learning to surf small shore breaks under a warm morning",
|
||||
"sceneVariants": [
|
||||
"Calf learning to surf small shore breaks under a warm morning",
|
||||
"Foamy shallow waves rolling onto sand",
|
||||
"Playful flipper paddles near the beach",
|
||||
"Small groups of humans watching from dunes",
|
||||
"Footprints and kelp on shore"
|
||||
],
|
||||
"actions": [
|
||||
"Clumsy little rides on mini waves",
|
||||
"Encouraging nudges from an adult",
|
||||
"Short excited chirps and splashes",
|
||||
"Playful rubbing alongside parents"
|
||||
],
|
||||
"camera": "Low beach POV with gentle lateral tracking",
|
||||
"accents": [
|
||||
"warm golden rim on splash droplets",
|
||||
"soft tactile detail on calf skin"
|
||||
],
|
||||
"mood": "tender instruction",
|
||||
"lighting": "warm morning sunlight with soft fill",
|
||||
"style": "intimate coastal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Pod herding sardines into a shining silver bait ball at noon",
|
||||
"sceneVariants": [
|
||||
"Pod herding sardines into a shining silver bait ball at noon",
|
||||
"Explosive flashes of silvery fish",
|
||||
"Frenetic surface chaos",
|
||||
"Birds plunging overhead in tandem",
|
||||
"Foam and spray in concentrated area"
|
||||
],
|
||||
"actions": [
|
||||
"Tight circling to compress prey",
|
||||
"Precision strikes from below the bait ball",
|
||||
"Leaps and rapid passes through fish curtains",
|
||||
"Brief surface feeding frenzy"
|
||||
],
|
||||
"camera": "High-paced handheld with quick whip-pans and close micro-cuts",
|
||||
"accents": [
|
||||
"high specular on fish scales",
|
||||
"crisp water-splash micro-highlights"
|
||||
],
|
||||
"mood": "exhilarating intensity",
|
||||
"lighting": "bright high-contrast noon light",
|
||||
"style": "dynamic natural action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Fog-shrouded bay where a small pod navigates near hidden rocks",
|
||||
"sceneVariants": [
|
||||
"Fog-shrouded bay where a small pod navigates near hidden rocks",
|
||||
"Muted gray palette and soft contours",
|
||||
"Narrow passages and submerged reef edges",
|
||||
"Slow movement with careful scanning",
|
||||
"Distant horn of a boat muffled"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet cautious passes with echolocation clicks",
|
||||
"Slow contour-following near rocky outcrops",
|
||||
"Occasional quick bursts to avoid obstacles",
|
||||
"Group cohesion tight to avoid separation"
|
||||
],
|
||||
"camera": "Slow stabilized crane with soft focus and fog diffusion",
|
||||
"accents": [
|
||||
"volumetric fog shafts and soft damp rim light",
|
||||
"gentle wet skin micro-details"
|
||||
],
|
||||
"mood": "cautious navigation",
|
||||
"lighting": "diffuse overcast with low contrast",
|
||||
"style": "moody marine documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Aerial shot of a massive traveling superpod crossing a deep-blue swell",
|
||||
"sceneVariants": [
|
||||
"Aerial shot of a massive traveling superpod crossing a deep-blue swell",
|
||||
"Thousands of dark dorsal fins visible in patterns",
|
||||
"Long undulating columns cutting through swell",
|
||||
"Occasional whitecaps punctuating lines",
|
||||
"Scale of ocean emphasized by tiny boat far away"
|
||||
],
|
||||
"actions": [
|
||||
"Large-scale coordinated travel with rhythmic porpoising",
|
||||
"Regular surface breathing rhythm",
|
||||
"Minor social clusters forming within the superpod",
|
||||
"Collective directional shift initiated by elders"
|
||||
],
|
||||
"camera": "High-altitude drone sweep with slow push-in to reveal formations",
|
||||
"accents": [
|
||||
"deep ocean specular bands",
|
||||
"sharp micro-contrast on dorsal silhouettes"
|
||||
],
|
||||
"mood": "awe-inspiring scale",
|
||||
"lighting": "bright midday with deep-blue contrast",
|
||||
"style": "epic aerial nature sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Harbor rescue where dolphins guide a trapped juvenile toward open water at dusk",
|
||||
"sceneVariants": [
|
||||
"Harbor rescue where dolphins guide a trapped juvenile toward open water at dusk",
|
||||
"Concrete piers with algae and fishermen watching",
|
||||
"Shallow bottle-neck channel",
|
||||
"Tension in faces of onlookers",
|
||||
"Calm sea with reflective lights"
|
||||
],
|
||||
"actions": [
|
||||
"Dolphins nudging and herding the juvenile",
|
||||
"Repetitive guiding passes to show a route",
|
||||
"Final coordinated escort into the main channel",
|
||||
"Onlookers releasing sighs and clapping"
|
||||
],
|
||||
"camera": "Documentary close tracking from pier vantage, emotional medium cuts",
|
||||
"accents": [
|
||||
"warm dusk rim on water edges",
|
||||
"moist reflective sheen on rescued juvenile"
|
||||
],
|
||||
"mood": "hopeful cooperation",
|
||||
"lighting": "soft warm dusk with human harbor lights",
|
||||
"style": "human-nature rescue vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Under-ice cracks in polar water where small dolphins surface and blow in blue cold light",
|
||||
"sceneVariants": [
|
||||
"Under-ice cracks in polar water where small dolphins surface and blow in blue cold light",
|
||||
"Broken ice edges and deep turquoise channels",
|
||||
"Slow visible breaths in cold air",
|
||||
"Sparse light filtering through ice",
|
||||
"Crystal formations along the edges"
|
||||
],
|
||||
"actions": [
|
||||
"Careful surfacing through narrow ice leads",
|
||||
"Synchronized breath-and-dive patterns",
|
||||
"Investigative nose touches on ice edges",
|
||||
"Quick undulating passes under thin ice"
|
||||
],
|
||||
"camera": "Submersible followed by close surface inserts with cool color grading",
|
||||
"accents": [
|
||||
"cold ice-reflected rim light",
|
||||
"textured micro-highlights on breath vapor"
|
||||
],
|
||||
"mood": "fragile exploration",
|
||||
"lighting": "cold blue filtered light under ice",
|
||||
"style": "poetic polar marine piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Shoreline sunrise where dolphins bow-ride with local surfers",
|
||||
"sceneVariants": [
|
||||
"Shoreline sunrise where dolphins bow-ride with local surfers",
|
||||
"Long rolling beach breaks and bright orange sky",
|
||||
"Surfboards gliding beside porpoising dolphins",
|
||||
"Early surfers greeting the pod",
|
||||
"Foamy surf lines and glinting water"
|
||||
],
|
||||
"actions": [
|
||||
"Playful close passes around surfboards",
|
||||
"Synchronized arcs timed with surfers' maneuvers",
|
||||
"Occasional cooperative chases of small fish",
|
||||
"Brief leaps to celebrate close encounters"
|
||||
],
|
||||
"camera": "Surf-cam POV with alternating wide beach cutaways",
|
||||
"accents": [
|
||||
"golden rim highlights on spray",
|
||||
"soft bokeh from wet-sand reflections"
|
||||
],
|
||||
"mood": "joyful coexistence",
|
||||
"lighting": "warm sunrise backlight",
|
||||
"style": "heartwarming coastal sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Deepwater night where a rogue dolphin creates playful luminous trails near an ROV",
|
||||
"sceneVariants": [
|
||||
"Deepwater night where a rogue dolphin creates playful luminous trails near an ROV",
|
||||
"Inky black water with faint equipment lights",
|
||||
"Curious approach to submersible glow",
|
||||
"Small luminous organisms disturbed into bloom",
|
||||
"Slow, hovering ROV presence"
|
||||
],
|
||||
"actions": [
|
||||
"Cautious investigative circles around the ROV",
|
||||
"Playful bursts that stir faint luminescence",
|
||||
"Sudden quick close passes and retreats",
|
||||
"Evasive bubbling cloud as they zoom away"
|
||||
],
|
||||
"camera": "ROV-mounted close dynamic following with low-light enhancement",
|
||||
"accents": [
|
||||
"cool technical lights mixing with organic glows",
|
||||
"tiny spark-like micro-highlights from disturbed organisms"
|
||||
],
|
||||
"mood": "curious mystery",
|
||||
"lighting": "very low artificial with organic point-glows",
|
||||
"style": "sci-fi flavored marine vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Gentle bay where older dolphins perform slow social rituals at midday",
|
||||
"sceneVariants": [
|
||||
"Gentle bay where older dolphins perform slow social rituals at midday",
|
||||
"Smooth water calm and shallow kelp beds",
|
||||
"Slow circling and tactile rubbing",
|
||||
"Pair bond gestures and fin touches",
|
||||
"Soft ambient bird calls"
|
||||
],
|
||||
"actions": [
|
||||
"Slow mutual rubs and fin caresses",
|
||||
"Soft vocal exchanges and gentle echoes",
|
||||
"Deliberate slow surfacing to maintain eye contact",
|
||||
"Occasional cooperative feeding assurance"
|
||||
],
|
||||
"camera": "Medium steady with intimate close-ins of fin contact",
|
||||
"accents": [
|
||||
"soft warm rim on skin creases",
|
||||
"crisp micro-detail on tactile contact points"
|
||||
],
|
||||
"mood": "calm intimacy",
|
||||
"lighting": "soft midday fill with warm tones",
|
||||
"style": "tender behavioral documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Storm-edge where the pod surfs the backs of whitecaps as a squall approaches",
|
||||
"sceneVariants": [
|
||||
"Storm-edge where the pod surfs the backs of whitecaps as a squall approaches",
|
||||
"Darkening sky with quickening wind",
|
||||
"Raised swell and chaotic wave patterns",
|
||||
"Spray driven sideways by gusts",
|
||||
"A sense of increasing intensity"
|
||||
],
|
||||
"actions": [
|
||||
"Aggressive bow-riding in bigger waves",
|
||||
"Sharp turns to avoid steep faces",
|
||||
"Synchronized dives to avoid spray",
|
||||
"Occasional dramatic breaches to clear turbulence"
|
||||
],
|
||||
"camera": "Handheld storm-proof tracking with high shutter to crisp spray",
|
||||
"accents": [
|
||||
"cold edgy rim from storm clouds",
|
||||
"sparkling spray micro-highlights frozen in frame"
|
||||
],
|
||||
"mood": "adrenal storm thrill",
|
||||
"lighting": "contrasty storm light with dark clouds",
|
||||
"style": "adrenal marine action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Lagoon twilight where mother and calf exchange slow tactile signals",
|
||||
"sceneVariants": [
|
||||
"Lagoon twilight where mother and calf exchange slow tactile signals",
|
||||
"Still glassy lagoon with mirrored sky",
|
||||
"Soft silhouettes overlapping",
|
||||
"Gentle ripples at their contact points",
|
||||
"Crickets and distant bird calls starting"
|
||||
],
|
||||
"actions": [
|
||||
"Slow synchronized rolls exposing bellies",
|
||||
"Contact nuzzles and tactile caresses",
|
||||
"Low mutual chirps focusing attention",
|
||||
"Gradual synchronized rest floating"
|
||||
],
|
||||
"camera": "Intimate shoulder-mounted close with shallow DOF",
|
||||
"accents": [
|
||||
"soft warm rim from the last sun",
|
||||
"gentle specular micro-highlights on wet skin"
|
||||
],
|
||||
"mood": "tender repose",
|
||||
"lighting": "soft twilight with warm-cool mix",
|
||||
"style": "emotive intimate vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Coastal reef where dolphins chase flying fish at a blazing sunset",
|
||||
"sceneVariants": [
|
||||
"Coastal reef where dolphins chase flying fish at a blazing sunset",
|
||||
"Orange-red sky and shimmering surf",
|
||||
"Flying fish leaving silver trails",
|
||||
"Dolphins leaping rhythmically through air",
|
||||
"Coral reef shallow outlines under water"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated aerial strikes through fish curtains",
|
||||
"High-speed directional changes and flips",
|
||||
"Short group celebrations with leaps",
|
||||
"Quick dives to regroup"
|
||||
],
|
||||
"camera": "Dynamic aerial-follow with slow motion on leaps",
|
||||
"accents": [
|
||||
"fiery rim light on leap silhouettes",
|
||||
"glinting fish-scale highlights"
|
||||
],
|
||||
"mood": "exuberant drama",
|
||||
"lighting": "dramatic sunset with warm saturation",
|
||||
"style": "cinematic coastal sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "Clear-night harbor where dolphins weave through moored lights and reflect them",
|
||||
"sceneVariants": [
|
||||
"Clear-night harbor where dolphins weave through moored lights and reflect them",
|
||||
"Still water dotted with lamp reflections",
|
||||
"Harbor buoys and quiet boats sleeping",
|
||||
"A few fishermen watching from decks",
|
||||
"Soft distant city glow"
|
||||
],
|
||||
"actions": [
|
||||
"Smooth weaving and reflective passes",
|
||||
"Occasional curious head-up to inspect lights",
|
||||
"Gentle tail-splashes leaving light ribbons",
|
||||
"Silent communication clicks heard faintly"
|
||||
],
|
||||
"camera": "Long-exposure like stabilized tracking emphasizing light trails",
|
||||
"accents": [
|
||||
"soft point-light bokeh from moorings",
|
||||
"tiny reflective micro-highlights along dorsal ridges"
|
||||
],
|
||||
"mood": "quiet urban enchantment",
|
||||
"lighting": "low warm harbor lights with cool ambient",
|
||||
"style": "gentle nocturnal portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Dolphins",
|
||||
"scene": "A pod escorts a lost pilot whale calf back to deeper water under a cool dawn",
|
||||
"sceneVariants": [
|
||||
"A pod escorts a lost pilot whale calf back to deeper water under a cool dawn",
|
||||
"Shallow muddy flats and soft morning haze",
|
||||
"Protective dolphins circling near the calf",
|
||||
"Calf surfacing slowly with the pod",
|
||||
"A final coordinated surge toward open sea"
|
||||
],
|
||||
"actions": [
|
||||
"Close protective nudging and guiding passes",
|
||||
"Coordinated route-finding towards deeper channels",
|
||||
"Loud encouraging chirps and clicks",
|
||||
"Final celebratory dips once safe"
|
||||
],
|
||||
"camera": "Documentary medium-close tracking with emotional close-ups",
|
||||
"accents": [
|
||||
"cool dawn rim on wet skin",
|
||||
"soft water micro-highlights accenting movement"
|
||||
],
|
||||
"mood": "compassionate teamwork",
|
||||
"lighting": "cool calm dawn light",
|
||||
"style": "emotional wildlife rescue vignette"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_eagles.json
Normal file
427
src/data/animals_and_wildlife_eagles.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Golden eagle riding thermal currents over craggy mountains at sunrise",
|
||||
"sceneVariants": [
|
||||
"Golden eagle riding thermal currents over craggy mountains at sunrise",
|
||||
"Silhouetted cliffs and narrow valleys",
|
||||
"Warm sun catching feather edges",
|
||||
"Clumps of alpine grass on ledges",
|
||||
"Thin mist settling in lower bowls"
|
||||
],
|
||||
"actions": [
|
||||
"Effortless soaring and wing-tucks",
|
||||
"Occasional stoop to inspect a marmot",
|
||||
"Sharp talon display during passes",
|
||||
"Slow banking to gain height"
|
||||
],
|
||||
"camera": "Telephoto from ridge with slow crane-up to reveal wingspan",
|
||||
"accents": [
|
||||
"fiery rim light on primary feathers",
|
||||
"high micro-detail on feather texture"
|
||||
],
|
||||
"mood": "aloof majesty",
|
||||
"lighting": "golden sunrise backlight",
|
||||
"style": "epic avian portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Pair nesting on a high pine, afternoon warmth and chicks peeking",
|
||||
"sceneVariants": [
|
||||
"Pair nesting on a high pine, afternoon warmth and chicks peeking",
|
||||
"Large stick nest perched on a sturdy limb",
|
||||
"Chicks fluffing and peering over rim",
|
||||
"Needles and cones scattered below",
|
||||
"Soft breeze ruffling nest items"
|
||||
],
|
||||
"actions": [
|
||||
"Parent bringing fresh prey and tearing at it",
|
||||
"Chicks flapping in excitement",
|
||||
"Tender bill-to-bill feeding",
|
||||
"Protective shading of young"
|
||||
],
|
||||
"camera": "Close insulated long lens with shallow DOF",
|
||||
"accents": [
|
||||
"warm specular on eye and beak",
|
||||
"fine feather-edge micro-highlights"
|
||||
],
|
||||
"mood": "protective domesticity",
|
||||
"lighting": "warm afternoon fill",
|
||||
"style": "intimate natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Sea eagle stooping over a rocky shoreline under stormy skies",
|
||||
"sceneVariants": [
|
||||
"Sea eagle stooping over a rocky shoreline under stormy skies",
|
||||
"Waves crashing against black rock",
|
||||
"Dark clouds and sharp wind",
|
||||
"Spray and gulls protesting above",
|
||||
"Tidepools reflecting the mood"
|
||||
],
|
||||
"actions": [
|
||||
"High-speed stoop and grab from rock pools",
|
||||
"Wings braced against gusts",
|
||||
"Talons retracting with bright-caught prey",
|
||||
"Quick ascent into turbulent air"
|
||||
],
|
||||
"camera": "Dynamic handheld tracking with whip-pans",
|
||||
"accents": [
|
||||
"cold rim light on wet plumage",
|
||||
"sparkling spray micro-highlights"
|
||||
],
|
||||
"mood": "storm-forged ferocity",
|
||||
"lighting": "high-contrast storm light",
|
||||
"style": "dramatic coastal sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Harbor osprey-like eagle hovering and plunging into calm blue inlet",
|
||||
"sceneVariants": [
|
||||
"Harbor osprey-like eagle hovering and plunging into calm blue inlet",
|
||||
"Seagulls restless on moorings",
|
||||
"Clear turquoise shallows",
|
||||
"Boat wakes crossing feeding area",
|
||||
"Reflections of masts"
|
||||
],
|
||||
"actions": [
|
||||
"Rigid hovering then vertical plunge",
|
||||
"Emerging with a silver fish in talons",
|
||||
"Shake-and-fly off water droplets",
|
||||
"Landing on piling to consume catch"
|
||||
],
|
||||
"camera": "Boat-mounted close with slow-mo on plunge",
|
||||
"accents": [
|
||||
"sparkling water beads on feathers",
|
||||
"bright speculars on fish scales"
|
||||
],
|
||||
"mood": "focused precision",
|
||||
"lighting": "bright midday sun",
|
||||
"style": "action coastal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Eagle silhouette against full moon over desert mesa at night",
|
||||
"sceneVariants": [
|
||||
"Eagle silhouette against full moon over desert mesa at night",
|
||||
"Wide arid plateau and distant starfield",
|
||||
"Cactus and scrub framing foreground",
|
||||
"Cool lunar glow bathing the scene",
|
||||
"Wind-shaped rock formations"
|
||||
],
|
||||
"actions": [
|
||||
"Slow wing-beat silhouette cruising",
|
||||
"Occasional perched pause on a lonely outcrop",
|
||||
"Listening posture with head cock",
|
||||
"Silent banking on moonlit thermals"
|
||||
],
|
||||
"camera": "Low-light long lens with wide negative space composition",
|
||||
"accents": [
|
||||
"cool moon rim on feather edges",
|
||||
"tiny reflective eye highlights"
|
||||
],
|
||||
"mood": "nocturnal solitude",
|
||||
"lighting": "cool moonlit night",
|
||||
"style": "noir avian portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Eagle stealing a fish from a gull in a busy estuary at dusk",
|
||||
"sceneVariants": [
|
||||
"Eagle stealing a fish from a gull in a busy estuary at dusk",
|
||||
"Tangled aerial sequences over muddy flats",
|
||||
"Frenetic wing beats and squawks",
|
||||
"Reflected dusk colors on water",
|
||||
"Boats drifting in distant light"
|
||||
],
|
||||
"actions": [
|
||||
"High-speed aerial snatch and quick escape",
|
||||
"Gull outraged flapping trailing behind",
|
||||
"Eagle banking to secure meal",
|
||||
"Drops of water scattering in wake"
|
||||
],
|
||||
"camera": "Handheld aerial with impact cutaways",
|
||||
"accents": [
|
||||
"dusk rim highlights on wingtip flashes",
|
||||
"water droplet micro-highlights"
|
||||
],
|
||||
"mood": "bold opportunism",
|
||||
"lighting": "muted dusk with warm accents",
|
||||
"style": "tense wildlife snippet"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Mountain thermals: juvenile practicing wide circles above alpine lake",
|
||||
"sceneVariants": [
|
||||
"Mountain thermals: juvenile practicing wide circles above alpine lake",
|
||||
"Glass lake reflecting sky",
|
||||
"Pine-dotted slopes and distant snowfields",
|
||||
"Shallow fog hugged to water",
|
||||
"Isolated rock stacks as perches"
|
||||
],
|
||||
"actions": [
|
||||
"Large circles gaining altitude",
|
||||
"Small corrective wing adjustments and glides",
|
||||
"Short stoops to mimic adults",
|
||||
"Resting on a rocky pinnacle between attempts"
|
||||
],
|
||||
"camera": "Slow drone circle with intermittent close-in on juvenile",
|
||||
"accents": [
|
||||
"soft thermal rim lighting",
|
||||
"fine feather micro-detail"
|
||||
],
|
||||
"mood": "learning determination",
|
||||
"lighting": "soft morning thermal light",
|
||||
"style": "educational nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Eagle perched on lighthouse at storm edge, scanline of distant ships",
|
||||
"sceneVariants": [
|
||||
"Eagle perched on lighthouse at storm edge, scanline of distant ships",
|
||||
"Whitewash cliffs and pounding surf",
|
||||
"Lighthouse beam slicing through rain",
|
||||
"Wind-swept perches slick with spray",
|
||||
"Gloomy horizon band"
|
||||
],
|
||||
"actions": [
|
||||
"Vigilant head sweeps and wind-braced stance",
|
||||
"Sudden launch to intercept a passing fish",
|
||||
"Return to perch shaking off spray",
|
||||
"A preen to realign soaked feathers"
|
||||
],
|
||||
"camera": "Stark medium with high-contrast weather inserts",
|
||||
"accents": [
|
||||
"cold wet speculars on feathers",
|
||||
"lens-dapple and rain micro-highlights"
|
||||
],
|
||||
"mood": "resilient watchfulness",
|
||||
"lighting": "storm-scattered cold light",
|
||||
"style": "gritty coastal portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Riverside mating display: aerial acrobatics and talon touches at dawn",
|
||||
"sceneVariants": [
|
||||
"Riverside mating display: aerial acrobatics and talon touches at dawn",
|
||||
"Riparian trees and silver water",
|
||||
"Pairs looping and mutual calls",
|
||||
"Soft dawn mist over the river",
|
||||
"Perch-lined banks"
|
||||
],
|
||||
"actions": [
|
||||
"Sky dances with synchronous rolls",
|
||||
"Brief talon-link mid-air",
|
||||
"Mutual vocal calls and swooping landings",
|
||||
"Nest-site circling afterward"
|
||||
],
|
||||
"camera": "Fluid aerial-follow with intimate close-ins on talon contact",
|
||||
"accents": [
|
||||
"soft dawn rim on wing edges",
|
||||
"sparkling water micro-highlights"
|
||||
],
|
||||
"mood": "ornamental courtship",
|
||||
"lighting": "gentle dawn light",
|
||||
"style": "elegant behavioral piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Urban rooftop: an eagle scavenging scraps at midday among city skylines",
|
||||
"sceneVariants": [
|
||||
"Urban rooftop: an eagle scavenging scraps at midday among city skylines",
|
||||
"Flat roofs and HVAC units",
|
||||
"Tiny people far below",
|
||||
"Scattered pigeons and crows on ledges",
|
||||
"Harsh urban geometry"
|
||||
],
|
||||
"actions": [
|
||||
"Quick hops and careful pecks at found food",
|
||||
"Shooing away crows with assertive wing displays",
|
||||
"Swift takeoff to clear airspace",
|
||||
"Perching to survey an urban territory"
|
||||
],
|
||||
"camera": "Street-level telephoto with shallow DOF between buildings",
|
||||
"accents": [
|
||||
"hard midday urban speculars",
|
||||
"detailed beak and talon micro-highlights"
|
||||
],
|
||||
"mood": "streetwise adaptation",
|
||||
"lighting": "harsh midday urban sun",
|
||||
"style": "human-wildlife edge documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Snowy conifer ridge: eagle stoops to intercept a leaping hare at dusk",
|
||||
"sceneVariants": [
|
||||
"Snowy conifer ridge: eagle stoops to intercept a leaping hare at dusk",
|
||||
"Powdered spruce branches and wind-swept drifts",
|
||||
"Hare white against snow",
|
||||
"Crisp cold air and visible breath",
|
||||
"Long purple dusk shadows"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid stoop with talons outstretched",
|
||||
"Hare evasive leaps and sudden zigzag",
|
||||
"Impact into soft snow and quick retrieval",
|
||||
"Retreat to perch to consume catch"
|
||||
],
|
||||
"camera": "Fast handheld with high-frame slow-mo on stoop",
|
||||
"accents": [
|
||||
"cold glint on talons and beak",
|
||||
"crisp snow micro-highlights on fur and feathers"
|
||||
],
|
||||
"mood": "hunting precision",
|
||||
"lighting": "cool dusk with sharp contrast",
|
||||
"style": "intense winter hunt"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Roosting valley at night: dozens of eagles settling into pines under moon",
|
||||
"sceneVariants": [
|
||||
"Roosting valley at night: dozens of eagles settling into pines under moon",
|
||||
"Dense dark canopy dotted with white heads",
|
||||
"Low murmurs and rustling branches",
|
||||
"Pale lunar wash over valley",
|
||||
"Occasional battery-lit farmhouse far away"
|
||||
],
|
||||
"actions": [
|
||||
"Silent landing into layered roosts",
|
||||
"Feather-fluffing and settling sounds",
|
||||
"Soft pre-sleep preening",
|
||||
"A distant alarm call scattering brief movement"
|
||||
],
|
||||
"camera": "Stabilized low-light wide with close roost texture inserts",
|
||||
"accents": [
|
||||
"cool moon rim on head patches",
|
||||
"tiny reflective eye micro-highlights"
|
||||
],
|
||||
"mood": "communal calm",
|
||||
"lighting": "soft moonlit night",
|
||||
"style": "nocturnal natural tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Eagle scavenging at a mountain carcass as ravens watch from nearby",
|
||||
"sceneVariants": [
|
||||
"Eagle scavenging at a mountain carcass as ravens watch from nearby",
|
||||
"Rugged alpine plateau and torn hides",
|
||||
"Grease-streaked beak and talons",
|
||||
"Raven battalion on loose rocks",
|
||||
"Sharp wind singing over bones"
|
||||
],
|
||||
"actions": [
|
||||
"Dominant tearing and careful portioning",
|
||||
"Assertive posturing to ward off ravens",
|
||||
"Occasional low threatening calls",
|
||||
"Final flight to a distant perch with a prize"
|
||||
],
|
||||
"camera": "Close gritty handheld with selective focus on feeding action",
|
||||
"accents": [
|
||||
"warm rim on blood moist areas",
|
||||
"high micro-detail on feather and flesh textures"
|
||||
],
|
||||
"mood": "ruthless necessity",
|
||||
"lighting": "harsh midday with high contrast",
|
||||
"style": "visceral mountain documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Coastal cliff thermal where juvenile practices stall-turns above kelp beds",
|
||||
"sceneVariants": [
|
||||
"Coastal cliff thermal where juvenile practices stall-turns above kelp beds",
|
||||
"Deep emerald water and kelp forests below",
|
||||
"Cliffs pocked with nesting pockets",
|
||||
"Cascading gusts and spray",
|
||||
"Isolated fishing coves"
|
||||
],
|
||||
"actions": [
|
||||
"Sharp stall-turns and wing-flick corrections",
|
||||
"Over-enthusiastic rolling and rapid recovery",
|
||||
"Parent call-in for guidance",
|
||||
"Resting at cliff lip between tries"
|
||||
],
|
||||
"camera": "Dynamic follow with slow-motion wingbeat inserts",
|
||||
"accents": [
|
||||
"sparkling spray highlights",
|
||||
"detailed feather flex micro-highlights"
|
||||
],
|
||||
"mood": "energetic apprenticeship",
|
||||
"lighting": "bright coastal sun with cool fill",
|
||||
"style": "youthful training vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Fog-lake morning where an eagle snatches a trout in mist-soft light",
|
||||
"sceneVariants": [
|
||||
"Fog-lake morning where an eagle snatches a trout in mist-soft light",
|
||||
"Milky water and soft reed silhouettes",
|
||||
"Brief plumes of mist as talons break surface",
|
||||
"Reflective pale sky",
|
||||
"Tranquil surrounding forest edge"
|
||||
],
|
||||
"actions": [
|
||||
"Precision silent descent and talon pierce",
|
||||
"Emerging with writhing trout and quick flap",
|
||||
"Shake to remove water and immediate consumption",
|
||||
"Short hovering to rearrange grasp"
|
||||
],
|
||||
"camera": "Low mist-plane tracking with gentle close splash inserts",
|
||||
"accents": [
|
||||
"soft volumetric rim through fog",
|
||||
"moist water micro-highlights on scales"
|
||||
],
|
||||
"mood": "quiet successful hunt",
|
||||
"lighting": "soft fog-diffused morning",
|
||||
"style": "gentle natural snapshot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Late autumn thermal lifts as eagles ride thermals hunting migrating rodents",
|
||||
"sceneVariants": [
|
||||
"Late autumn thermal lifts as eagles ride thermals hunting migrating rodents",
|
||||
"Fields of stubble and harvested crops",
|
||||
"Thin cold sky and long shadows",
|
||||
"Rodent-run pathways visible through stubble",
|
||||
"Scattered hedgerow lines"
|
||||
],
|
||||
"actions": [
|
||||
"High glides punctuated by sudden vertical stoops",
|
||||
"Talons pronouncing precise strikes",
|
||||
"Swift return to thermal after capture",
|
||||
"Occasional caching of small prey"
|
||||
],
|
||||
"camera": "Wide agricultural sweep with telephoto action cut-ins",
|
||||
"accents": [
|
||||
"warm low sun rim on back feathers",
|
||||
"detailed talon micro-highlights on impact"
|
||||
],
|
||||
"mood": "ruthless efficiency",
|
||||
"lighting": "late golden autumn light",
|
||||
"style": "behavioral harvest sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Eagles",
|
||||
"scene": "Storm-clear dawn where eagle preens dripping feathers on a windswept post",
|
||||
"sceneVariants": [
|
||||
"Storm-clear dawn where eagle preens dripping feathers on a windswept post",
|
||||
"Wet posts and glistening cobbles",
|
||||
"Pools reflecting the calm sky after storm",
|
||||
"Fresh washed plumage droplets",
|
||||
"A distant rainbow hint"
|
||||
],
|
||||
"actions": [
|
||||
"Vigorous preening and feather realignment",
|
||||
"Shaking off excess water and preen-snap",
|
||||
"Long slow stretches of wings and claws",
|
||||
"Momentary vigil before flight"
|
||||
],
|
||||
"camera": "Intimate mid-shot with high-detail texture inserts",
|
||||
"accents": [
|
||||
"soft prismatic rim from residual rain",
|
||||
"wet feather micro-highlights"
|
||||
],
|
||||
"mood": "renewed composure",
|
||||
"lighting": "soft post-storm morning light",
|
||||
"style": "healing natural portrait"
|
||||
}
|
||||
]
|
||||
452
src/data/animals_and_wildlife_elephants.json
Normal file
452
src/data/animals_and_wildlife_elephants.json
Normal file
@ -0,0 +1,452 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Matriarch leading a herd across golden floodplain at dawn",
|
||||
"sceneVariants": [
|
||||
"Matriarch leading a herd across golden floodplain at dawn",
|
||||
"Long column of gray shapes cutting across tall grasses",
|
||||
"Steam from breath in cool air",
|
||||
"A distant acacia ridge as backdrop",
|
||||
"Soft fog hugging the ground"
|
||||
],
|
||||
"actions": [
|
||||
"Deliberate, synchronized stepping of adults",
|
||||
"Calves slipping in puddles and regaining balance",
|
||||
"Trunk greetings exchanged between individuals",
|
||||
"Matriarch pausing to test the ground"
|
||||
],
|
||||
"camera": "Wide tracking shot with gentle crane up to reveal herd scale",
|
||||
"accents": [
|
||||
"warm rim light on ear edges",
|
||||
"dew micro-highlights on eyelashes"
|
||||
],
|
||||
"mood": "steady guardianship",
|
||||
"lighting": "soft golden sunrise with long gentle shadows",
|
||||
"style": "grand natural tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Juveniles play-wrestling in a muddy wallow under midday sun",
|
||||
"sceneVariants": [
|
||||
"Juveniles play-wrestling in a muddy wallow under midday sun",
|
||||
"Splattering mud and gleeful trumpets",
|
||||
"Puddles reflecting bright sky",
|
||||
"Muddy bellies and flapping ears",
|
||||
"Surrounding adults watching indulgently"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic rolling and mock charges",
|
||||
"Trunks scooping mud and flicking it around",
|
||||
"Happy trumpeting and rumbles",
|
||||
"Sudden pause to drink deeply"
|
||||
],
|
||||
"camera": "Handheld low-angle close-ups with occasional slow-mo on splashes",
|
||||
"accents": [
|
||||
"sparkling mud droplets catching light",
|
||||
"textured high-detail on wet hide"
|
||||
],
|
||||
"mood": "joyful chaos",
|
||||
"lighting": "bright high-contrast noon sun",
|
||||
"style": "playful wildlife short"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "A lone bull silhouetted against a blood-orange sunset",
|
||||
"sceneVariants": [
|
||||
"A lone bull silhouetted against a blood-orange sunset",
|
||||
"Long shadow stretching across cracked earth",
|
||||
"Distant silhouettes of termite mounds",
|
||||
"Wind-distorted grasses",
|
||||
"Heat haze softening the horizon"
|
||||
],
|
||||
"actions": [
|
||||
"Slow purposeful stride",
|
||||
"Trunk flicking at flies",
|
||||
"Head toss indicating irritation",
|
||||
"Occasional low-call to unseen companions"
|
||||
],
|
||||
"camera": "Telephoto compressed shot emphasizing solitude",
|
||||
"accents": [
|
||||
"fiery rim light outlining tusks",
|
||||
"subtle dust halo around feet"
|
||||
],
|
||||
"mood": "solemn wanderer",
|
||||
"lighting": "dramatic golden-hour warm tones",
|
||||
"style": "poetic silhouette portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Matriarch teaching calves to use trunks near a river bend",
|
||||
"sceneVariants": [
|
||||
"Matriarch teaching calves to use trunks near a river bend",
|
||||
"Delicate trunk-to-mouth lessons",
|
||||
"Small splashes as calves clumsily drink",
|
||||
"Pebbled shoreline and slow current",
|
||||
"Reeds waving in background"
|
||||
],
|
||||
"actions": [
|
||||
"Matriarch demonstrating and coaxing",
|
||||
"Calves fumbling with novelty of water",
|
||||
"Gentle nudges to correct technique",
|
||||
"Playful trumpet when a calf succeeds"
|
||||
],
|
||||
"camera": "Low dolly circling the teaching group with warm mid-shots",
|
||||
"accents": [
|
||||
"sparkly speculars on water droplets",
|
||||
"soft rim on wet hide"
|
||||
],
|
||||
"mood": "patient mentorship",
|
||||
"lighting": "warm late-morning fill with cool under-shade",
|
||||
"style": "intimate natural history"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Night migration under a silver moon with distant lightning",
|
||||
"sceneVariants": [
|
||||
"Night migration under a silver moon with distant lightning",
|
||||
"Huge forms moving like a living wall",
|
||||
"Eyes glinting and trunks occasionally raised",
|
||||
"Storm clouds flashing on horizon",
|
||||
"Cool mist settling low"
|
||||
],
|
||||
"actions": [
|
||||
"Slow steady plodding",
|
||||
"Sporadic trunk sniffs of the air",
|
||||
"Communicative low rumbles passing through the herd",
|
||||
"A calf pressing close to its mother"
|
||||
],
|
||||
"camera": "Stabilized tracking with occasional close eye catches",
|
||||
"accents": [
|
||||
"cold silver rim light on tusks",
|
||||
"moody wet speculars from occasional drizzle"
|
||||
],
|
||||
"mood": "stubborn endurance",
|
||||
"lighting": "cool moonlit night with storm backlight",
|
||||
"style": "epic nocturnal migration"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Elephant family bathing in a tropical monsoon shower",
|
||||
"sceneVariants": [
|
||||
"Elephant family bathing in a tropical monsoon shower",
|
||||
"Heavy droplets streaming off massive backs",
|
||||
"Lush jungle canopy dripping around them",
|
||||
"Mud and leaf litter churned by movement",
|
||||
"Loud distant thunder"
|
||||
],
|
||||
"actions": [
|
||||
"Joyful spraying with trunks",
|
||||
"Rolling in mud for cooling and skin care",
|
||||
"Synchronized shaking to fling water",
|
||||
"Trunk-to-trunk bonding moments"
|
||||
],
|
||||
"camera": "Dynamic handheld with close texture-focused inserts",
|
||||
"accents": [
|
||||
"sparkling rain micro-highlights",
|
||||
"rich saturated greens contrasting gray hides"
|
||||
],
|
||||
"mood": "exuberant relief",
|
||||
"lighting": "diffuse storm light with high saturation",
|
||||
"style": "lush cinematic wildlife moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Calf learning to stand on its wobbly legs at dawn",
|
||||
"sceneVariants": [
|
||||
"Calf learning to stand on its wobbly legs at dawn",
|
||||
"Mother supporting with a gentle trunk",
|
||||
"Fresh tracks in dew-covered grass",
|
||||
"Soft pastel sky behind",
|
||||
"Curious birds nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Repeated attempts to find footing",
|
||||
"A triumphant wobble then stable stance",
|
||||
"Mother nudging encouragement",
|
||||
"Calf trumpeting a small celebration"
|
||||
],
|
||||
"camera": "Tight close-up handheld with shallow DOF and soft focus backgrounds",
|
||||
"accents": [
|
||||
"gentle sunrise rim illuminating downy hair",
|
||||
"tiny dew bead highlights on lashes"
|
||||
],
|
||||
"mood": "tender optimism",
|
||||
"lighting": "soft warm dawn",
|
||||
"style": "adorable life-beginning vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Old matriarch resting beneath baobab as dust devils whirl",
|
||||
"sceneVariants": [
|
||||
"Old matriarch resting beneath baobab as dust devils whirl",
|
||||
"Weathered skin and long folded tusks",
|
||||
"Wind-swept leaves and whirling dust",
|
||||
"A few calves graze nearby",
|
||||
"A far-off caravan line"
|
||||
],
|
||||
"actions": [
|
||||
"Slow ruminating chewing",
|
||||
"Ear flaps to ward off flies",
|
||||
"Shifting weight and settling deeper",
|
||||
"Occasional deep rumble of content"
|
||||
],
|
||||
"camera": "Portrait-style mid-shot with dramatic sky above",
|
||||
"accents": [
|
||||
"cold edge light on tusk curves",
|
||||
"high micro-detail on cracked hide texture"
|
||||
],
|
||||
"mood": "ancient dignity",
|
||||
"lighting": "high-contrast late-afternoon with warm highlights",
|
||||
"style": "statuesque character portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Herd crossing a foggy marsh at first light",
|
||||
"sceneVariants": [
|
||||
"Herd crossing a foggy marsh at first light",
|
||||
"Silhouetted trunks appearing from mist",
|
||||
"Muffled footfalls in soft peat",
|
||||
"Low reeds bending with passage",
|
||||
"Pale sun diffusing through fog"
|
||||
],
|
||||
"actions": [
|
||||
"Careful stepping to avoid bog",
|
||||
"Calves slipping then nudged upright",
|
||||
"Trunks probing water depth",
|
||||
"Quiet communicative rumbles"
|
||||
],
|
||||
"camera": "Slow atmospheric crane with soft focus foreground reeds",
|
||||
"accents": [
|
||||
"volumetric light shafts through mist",
|
||||
"soft luminous edge on wet skin"
|
||||
],
|
||||
"mood": "silent determination",
|
||||
"lighting": "muted cool dawn with fog diffusion",
|
||||
"style": "mysterious natural sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Playful midnight duel under phosphorescent insects",
|
||||
"sceneVariants": [
|
||||
"Playful midnight duel under phosphorescent insects",
|
||||
"Tiny bioluminescent specks swirling around",
|
||||
"Trunks interlocked in mock challenge",
|
||||
"Dark silhouettes punctured by small lights",
|
||||
"Glints on tusk edges"
|
||||
],
|
||||
"actions": [
|
||||
"Light shoving and mock charges",
|
||||
"Trunk curls and playful ear flaps",
|
||||
"Occasional joyful trumpet",
|
||||
"Couple of calves joining in erratic spins"
|
||||
],
|
||||
"camera": "Close handheld with occasional slow motion for trunk impacts",
|
||||
"accents": [
|
||||
"cool point highlights from bioluminescent insects",
|
||||
"specular drops on skin glinting faintly"
|
||||
],
|
||||
"mood": "nocturnal playfulness",
|
||||
"lighting": "very low light with faint cool highlights",
|
||||
"style": "whimsical night vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Family foraging in a burnt savannah after a controlled fire",
|
||||
"sceneVariants": [
|
||||
"Family foraging in a burnt savannah after a controlled fire",
|
||||
"Charred stubble and new green shoots",
|
||||
"Sky smoky with lingering haze",
|
||||
"Ash clinging to feet",
|
||||
"Low heat gradients above ground"
|
||||
],
|
||||
"actions": [
|
||||
"Trunks sifting for tender new shoots",
|
||||
"Tactile rubbing on blackened trunks",
|
||||
"Occasional flap to cool themselves",
|
||||
"Calves nibbling cautiously"
|
||||
],
|
||||
"camera": "Medium tracking with texture-focused close-ups",
|
||||
"accents": [
|
||||
"contrasty warm rim light on ash particles",
|
||||
"high-detail on soot and fresh shoots"
|
||||
],
|
||||
"mood": "resilient renewal",
|
||||
"lighting": "soft hazy sunlight with warm undertones",
|
||||
"style": "documentary resilience piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Trunk-to-trunk greeting at dusk beneath a canopy of fireflies",
|
||||
"sceneVariants": [
|
||||
"Trunk-to-trunk greeting at dusk beneath a canopy of fireflies",
|
||||
"Tender close contact between elders",
|
||||
"Fireflies flickering like floating lanterns",
|
||||
"Warm dusk colors in the sky",
|
||||
"Soft leaf-litter ground"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle trunk entwining and nuzzling",
|
||||
"Low rumble exhalations",
|
||||
"Shared dusty breaths",
|
||||
"Calf watching the ceremony curiously"
|
||||
],
|
||||
"camera": "Intimate tight close-up with shallow depth and gentle dolly",
|
||||
"accents": [
|
||||
"soft warm rim on trunk creases",
|
||||
"tiny point-lights from fireflies creating bokeh accents"
|
||||
],
|
||||
"mood": "affectionate ritual",
|
||||
"lighting": "soft dusk with warm highlights and point light bokeh",
|
||||
"style": "poetic micro-moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Thunderstorm panic as herd seeks shelter among rocky outcrops",
|
||||
"sceneVariants": [
|
||||
"Thunderstorm panic as herd seeks shelter among rocky outcrops",
|
||||
"Sheets of rain creating rivers in gullies",
|
||||
"Lightning illuminating frantic movement",
|
||||
"Mud-laden hide and frantic dust rolling",
|
||||
"Roaring wind bending scrub"
|
||||
],
|
||||
"actions": [
|
||||
"Urgent crossing with splashing footfalls",
|
||||
"Adults shielding calves with bodies",
|
||||
"Head-lowering into driving rain",
|
||||
"Occasional startled trumpet calls"
|
||||
],
|
||||
"camera": "Handheld chaotic tracking with quick cuts and flash exposures",
|
||||
"accents": [
|
||||
"wet skin speculars and lightning staccato rim light",
|
||||
"spray and droplets frozen in high-detail"
|
||||
],
|
||||
"mood": "panic-driven urgency",
|
||||
"lighting": "harsh storm lighting with lightning punctuations",
|
||||
"style": "high-intensity natural weather sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Solitary calf lost and calling at midnight beneath a pale moon",
|
||||
"sceneVariants": [
|
||||
"Solitary calf lost and calling at midnight beneath a pale moon",
|
||||
"Small silhouette against wide landscape",
|
||||
"Echoing bellows into the night",
|
||||
"Sparse thorn scrub and open ground",
|
||||
"Distant silhouettes of grazing animals"
|
||||
],
|
||||
"actions": [
|
||||
"Repeated plaintive trumpeting",
|
||||
"Restless pacing and hesitant stops",
|
||||
"Crouch and low whimper when no response",
|
||||
"Finally calming as a distant rumble answers"
|
||||
],
|
||||
"camera": "Close handheld for emotional intimacy, slow pull back to show isolation",
|
||||
"accents": [
|
||||
"cold moon rim on tear-wet hide",
|
||||
"subtle rim glow on tiny tusk bud"
|
||||
],
|
||||
"mood": "vulnerable longing",
|
||||
"lighting": "cool moonlight with deep shadows",
|
||||
"style": "emotive nocturnal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Crossing a shallow delta at sunrise with birds lifting around them",
|
||||
"sceneVariants": [
|
||||
"Crossing a shallow delta at sunrise with birds lifting around them",
|
||||
"Mirror-like water reflecting warm sky",
|
||||
"Feet stirring up soft mud plumes",
|
||||
"White birds taking off in choreographed flight",
|
||||
"Snake of gray bodies threading through channels"
|
||||
],
|
||||
"actions": [
|
||||
"Measured stepping and trunk probing",
|
||||
"Birds flushing and wheeling in unison",
|
||||
"Occasional playful spray at a nearby calf",
|
||||
"Matriarch pausing to mark a new scent"
|
||||
],
|
||||
"camera": "Wide cinematic crane revealing landscape and herd choreography",
|
||||
"accents": [
|
||||
"glinting water micro-highlights",
|
||||
"warm sunrise rim on ear membranes"
|
||||
],
|
||||
"mood": "communal harmony",
|
||||
"lighting": "warm sunrise with reflective water highlights",
|
||||
"style": "serene natural epic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Veteran bull sparring with rivals under a copper-red sunset",
|
||||
"sceneVariants": [
|
||||
"Veteran bull sparring with rivals under a copper-red sunset",
|
||||
"Clouds dusted with last light",
|
||||
"Heavy footfalls and flaring dust",
|
||||
"Mane-like ear flaps and locked tusks",
|
||||
"Silhouetted on a low rise"
|
||||
],
|
||||
"actions": [
|
||||
"Brute shoves and tusk clashes",
|
||||
"Gravel grinding underfoot and flaring dust",
|
||||
"Short furious trumpets punctuating contact",
|
||||
"One bull finally backing away, wounded but standing"
|
||||
],
|
||||
"camera": "Dynamic handheld medium shots with close impact inserts",
|
||||
"accents": [
|
||||
"fiery rim light on edges of tusks",
|
||||
"textured dust motes lit dramatically"
|
||||
],
|
||||
"mood": "violent confrontation",
|
||||
"lighting": "intense golden-copper sunset",
|
||||
"style": "raw wildlife conflict sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Elders performing a shallow dust-bathing ritual at dusk",
|
||||
"sceneVariants": [
|
||||
"Elders performing a shallow dust-bathing ritual at dusk",
|
||||
"Soft clouds of ochre dust rising",
|
||||
"Slow coordinated shuffles and trunk scoops",
|
||||
"Close calm faces and half-closed eyes",
|
||||
"Warm evening sky behind"
|
||||
],
|
||||
"actions": [
|
||||
"Trunks flinging fine dust across backs",
|
||||
"Adults rubbing against rocks to remove pests",
|
||||
"Gentle trunk exchanges in rest",
|
||||
"Long low rumbles of social cohesion"
|
||||
],
|
||||
"camera": "Intimate wide mid-shot capturing ritual movement",
|
||||
"accents": [
|
||||
"warm dust-edge rim lighting",
|
||||
"soft tactile detail on dusted skin"
|
||||
],
|
||||
"mood": "ritualized comfort",
|
||||
"lighting": "warm dusk with soft fill",
|
||||
"style": "reflective cultural-natural scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Elephants",
|
||||
"scene": "Herd navigating a narrow canyon with echoing rumbles at night",
|
||||
"sceneVariants": [
|
||||
"Herd navigating a narrow canyon with echoing rumbles at night",
|
||||
"Sheer rock walls confining movement",
|
||||
"Flashlight-like moonbeams piercing narrow gaps",
|
||||
"Trunks brushing stone walls",
|
||||
"Periodic echoing calls"
|
||||
],
|
||||
"actions": [
|
||||
"Careful single-file movement",
|
||||
"Trunks testing rock stability",
|
||||
"Low rumbles amplifying in the canyon",
|
||||
"A calf pressing close to a parent"
|
||||
],
|
||||
"camera": "Tight tracking with occasional wide reveal as canyon opens",
|
||||
"accents": [
|
||||
"cold rock-reflected rim light",
|
||||
"specular highlights on wet stone where trunks touch"
|
||||
],
|
||||
"mood": "cautious passage",
|
||||
"lighting": "pale moonlight with high contrast canyon shadows",
|
||||
"style": "tense nocturnal traversal"
|
||||
}
|
||||
]
|
||||
402
src/data/animals_and_wildlife_foxes.json
Normal file
402
src/data/animals_and_wildlife_foxes.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Red fox family at dawn playing near a hedgerow",
|
||||
"sceneVariants": [
|
||||
"Red fox family at dawn playing near a hedgerow",
|
||||
"Soft mist curling over a dew-laden field",
|
||||
"Kits tumbling among brambles",
|
||||
"Adult pushing a curious kit gently",
|
||||
"A distant farmhouse silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Kits pouncing and mock-stalking",
|
||||
"Adult grooming and nudging to teach",
|
||||
"Quick darts after insects in the grass",
|
||||
"Tail-flagging to communicate"
|
||||
],
|
||||
"camera": "Low handheld with close playful inserts and shallow depth",
|
||||
"accents": [
|
||||
"warm rim light on fur tips",
|
||||
"sparkling dew micro-highlights on whiskers"
|
||||
],
|
||||
"mood": "tender playfulness",
|
||||
"lighting": "soft dawn fill with warm backlight",
|
||||
"style": "intimate wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Urban alley at night where a fox scavenges under neon signs",
|
||||
"sceneVariants": [
|
||||
"Urban alley at night where a fox scavenges under neon signs",
|
||||
"Wet cobbles reflecting colored lights",
|
||||
"Cardboard boxes and stray bins scattered",
|
||||
"A fox silhouette moving quick and silent",
|
||||
"A distant car sliding by"
|
||||
],
|
||||
"actions": [
|
||||
"Sniffing through refuse and quick grabs",
|
||||
"Frozen alert at distant noise then resume foraging",
|
||||
"Slipping into shadow between bins",
|
||||
"A sudden cautious retreat"
|
||||
],
|
||||
"camera": "Stabilized low-light POV with quick cutaways on paws",
|
||||
"accents": [
|
||||
"cool neon rim on fur edges",
|
||||
"wet ground specular micro-highlights"
|
||||
],
|
||||
"mood": "sly survival",
|
||||
"lighting": "mixed artificial night light with deep shadows",
|
||||
"style": "noir urban wildlife clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Arctic fox stalking across a windswept snowfield in pale winter light",
|
||||
"sceneVariants": [
|
||||
"Arctic fox stalking across a windswept snowfield in pale winter light",
|
||||
"Low-contrast white landscape and distant ridges",
|
||||
"Pale blue shadows across snow ripples",
|
||||
"A small prey silhouette in the distance",
|
||||
"Breath vapor rising with each step"
|
||||
],
|
||||
"actions": [
|
||||
"Low belly-crawl stalking then explosive pounce",
|
||||
"Shake-off snow flurries after impact",
|
||||
"Quick burying of scent after feed",
|
||||
"Scanning horizon for threats"
|
||||
],
|
||||
"camera": "Telephoto low-angle with slow push-in at pounce",
|
||||
"accents": [
|
||||
"cool rim on snow-dusted fur",
|
||||
"crisp micro-highlights on powder flakes"
|
||||
],
|
||||
"mood": "survival grace",
|
||||
"lighting": "soft cold winter daylight",
|
||||
"style": "epic tundra portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Red fox on a moonlit ridge with stars and distant owl calls",
|
||||
"sceneVariants": [
|
||||
"Red fox on a moonlit ridge with stars and distant owl calls",
|
||||
"Silhouette against a pale moon",
|
||||
"Long shadow stretching down the slope",
|
||||
"Silent grasses moving in night breeze",
|
||||
"A faint village glow far away"
|
||||
],
|
||||
"actions": [
|
||||
"Cautious slow stalk with periodic listening pauses",
|
||||
"Sudden dart to capture small mammal",
|
||||
"Quick shake and head-scan after catch",
|
||||
"Soft grooming before moving on"
|
||||
],
|
||||
"camera": "Low-noise long lens with soft moonlit close-ups",
|
||||
"accents": [
|
||||
"cool moon rim on ear edges",
|
||||
"subtle reflective micro-highlights in eye"
|
||||
],
|
||||
"mood": "nocturnal alertness",
|
||||
"lighting": "soft moonlit night",
|
||||
"style": "poetic night vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Vulpes vulpes trotting along a hedgerow in golden autumn light",
|
||||
"sceneVariants": [
|
||||
"Vulpes vulpes trotting along a hedgerow in golden autumn light",
|
||||
"Fallen leaves in russet and gold",
|
||||
"Heather and bramble textures",
|
||||
"Crisp air and visible breath",
|
||||
"A distant woodpigeon taking flight"
|
||||
],
|
||||
"actions": [
|
||||
"Steady trot with intermittent standing-to-listen",
|
||||
"Pouncing on a rustling leaf revealing prey",
|
||||
"Pausing to mark territory",
|
||||
"Casual padding into cover"
|
||||
],
|
||||
"camera": "Medium tracking with warm color grade and leaf texture inserts",
|
||||
"accents": [
|
||||
"golden rim on coat",
|
||||
"detailed fur micro-highlights"
|
||||
],
|
||||
"mood": "autumnal solitude",
|
||||
"lighting": "warm golden-hour light",
|
||||
"style": "classic pastoral wildlife"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Fox family den entrance with kits peering out from under a root ball",
|
||||
"sceneVariants": [
|
||||
"Fox family den entrance with kits peering out from under a root ball",
|
||||
"Loose soil and leaf litter around a dark cavity",
|
||||
"Moments of cautious eye contact",
|
||||
"Tiny paws scrabbling",
|
||||
"Soft muffled chirps from within"
|
||||
],
|
||||
"actions": [
|
||||
"Kits peeking then retreating",
|
||||
"Adult returning with small prey",
|
||||
"Brief feeding and rapid clean-up",
|
||||
"Kits tumbling while learning to exit"
|
||||
],
|
||||
"camera": "Macro low-angle with intimate depth and focus pulls",
|
||||
"accents": [
|
||||
"soft warm rim from early sun",
|
||||
"detailed dirt micro-highlights"
|
||||
],
|
||||
"mood": "cozy home life",
|
||||
"lighting": "soft sheltered morning light",
|
||||
"style": "intimate den portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Desert kit fox navigating moon-baked dunes under starlight",
|
||||
"sceneVariants": [
|
||||
"Desert kit fox navigating moon-baked dunes under starlight",
|
||||
"Cool blue tones and rippled sand",
|
||||
"Sparse scrub and distant rocky outcrops",
|
||||
"A slow-moving sky",
|
||||
"Occasional scorpions and small lizards"
|
||||
],
|
||||
"actions": [
|
||||
"Light-footed hop-and-listen hunting technique",
|
||||
"Quick grab and burying of a small catch",
|
||||
"Resting in a cool shadow",
|
||||
"Careful grooming to keep sand out of fur"
|
||||
],
|
||||
"camera": "Night-vision low-angle with soft starfield backgrounds",
|
||||
"accents": [
|
||||
"moon-dusted micro-highlights on whiskers",
|
||||
"textured sand speculars"
|
||||
],
|
||||
"mood": "desert stealth",
|
||||
"lighting": "cool nocturnal moonlight",
|
||||
"style": "ethereal desert study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Red fox slipping through a suburban garden at twilight",
|
||||
"sceneVariants": [
|
||||
"Red fox slipping through a suburban garden at twilight",
|
||||
"Fence lines and trimmed hedges",
|
||||
"Garden lights slowly turning on",
|
||||
"A compost heap and bird feeder silhouettes",
|
||||
"Distant human voices fading"
|
||||
],
|
||||
"actions": [
|
||||
"Careful tiptoe steps along fence base",
|
||||
"Quick raid on fallen fruit or scraps",
|
||||
"Pause to listen and then dash across lawn",
|
||||
"Slink into hedgerow cover"
|
||||
],
|
||||
"camera": "Steady handheld with domestic close-ins",
|
||||
"accents": [
|
||||
"warm porch light rim",
|
||||
"soft reflective micro-highlights on wet leaves"
|
||||
],
|
||||
"mood": "urban-adapted cunning",
|
||||
"lighting": "twilight mixed artificial and ambient",
|
||||
"style": "suburban wildlife piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Fox under heavy rain sheltering in a copse with dripping leaves",
|
||||
"sceneVariants": [
|
||||
"Fox under heavy rain sheltering in a copse with dripping leaves",
|
||||
"Wet fur and puddles reflecting canopy",
|
||||
"Low smoky sky and saturated colors",
|
||||
"Rain streaks in foreground blur",
|
||||
"Occasional thunder low-rumble"
|
||||
],
|
||||
"actions": [
|
||||
"Shaking off water and flattening against shelter",
|
||||
"Short cautious probes into rain for exposed prey",
|
||||
"Turning back to dens to check kits",
|
||||
"Shivering then tucking into a dry nook"
|
||||
],
|
||||
"camera": "Handheld weathered look with high shutter droplets frozen",
|
||||
"accents": [
|
||||
"wet-fur specular micro-highlights",
|
||||
"raindrop sparkles on leaves"
|
||||
],
|
||||
"mood": "weather-hardened resilience",
|
||||
"lighting": "diffuse rainy daylight",
|
||||
"style": "moody natural portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Arctic fox in summer pelage among tundra flowers",
|
||||
"sceneVariants": [
|
||||
"Arctic fox in summer pelage among tundra flowers",
|
||||
"Low alpine blooms in pastel shades",
|
||||
"Rocky hummocks and lichen patches",
|
||||
"A small creek trickling",
|
||||
"Hovering butterflies and flies"
|
||||
],
|
||||
"actions": [
|
||||
"Foraging for insects and small rodents",
|
||||
"Playful chasing of flies and moths",
|
||||
"Rolling in fragrant herbs",
|
||||
"Quick seasonal coat grooming"
|
||||
],
|
||||
"camera": "Macro tracking with colorful wide-grade",
|
||||
"accents": [
|
||||
"soft floral rim on fur",
|
||||
"detailed micro-highlights on floral petals"
|
||||
],
|
||||
"mood": "seasonal joy",
|
||||
"lighting": "soft summer tundra daylight",
|
||||
"style": "vibrant nature portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Fox vixen on a frost-lined morning marking a boundary",
|
||||
"sceneVariants": [
|
||||
"Fox vixen on a frost-lined morning marking a boundary",
|
||||
"Thin frost on grass and fence posts",
|
||||
"Low sun creating long cool shadows",
|
||||
"A cautious stance and focused gaze",
|
||||
"A far-off wood with movement"
|
||||
],
|
||||
"actions": [
|
||||
"Cheek rubbing on a low stump",
|
||||
"Brief urine-marking then stepping away",
|
||||
"Head-cocking to listen for intruders",
|
||||
"Short trot away to patrol further"
|
||||
],
|
||||
"camera": "Medium steady with close scent-mark inserts",
|
||||
"accents": [
|
||||
"cold rim on fur edges",
|
||||
"crisp micro-highlights on frosted grass"
|
||||
],
|
||||
"mood": "territorial resolve",
|
||||
"lighting": "crisp low-morning light",
|
||||
"style": "behavioral natural study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Red fox hunting mice in a meadow at golden sunrise",
|
||||
"sceneVariants": [
|
||||
"Red fox hunting mice in a meadow at golden sunrise",
|
||||
"Long grass waving in warm glow",
|
||||
"Small tunnels and peep-holes in earth",
|
||||
"A gentle chorus of morning birds",
|
||||
"A dew-sparkled web nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Hovering listening pose then pinpoint pounce",
|
||||
"Quick bury-and-consume sequence",
|
||||
"Short grooming after feed",
|
||||
"Returning to a vantage point to scan again"
|
||||
],
|
||||
"camera": "High-frame-rate close on pounce with warm grade",
|
||||
"accents": [
|
||||
"golden rim on movement edges",
|
||||
"detailed micro-highlights on kicked earth"
|
||||
],
|
||||
"mood": "focused hunter energy",
|
||||
"lighting": "warm sunrise directional light",
|
||||
"style": "tight nature action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Fox crossing a quiet stream using stepping stones at midday",
|
||||
"sceneVariants": [
|
||||
"Fox crossing a quiet stream using stepping stones at midday",
|
||||
"Clear water reflecting blue sky",
|
||||
"Mossy stones and sun dapple",
|
||||
"Tiny fish visible beneath surface",
|
||||
"Dragonfly shadows skimming water"
|
||||
],
|
||||
"actions": [
|
||||
"Cautious stone-to-stone stepping",
|
||||
"Quick balance adjustments with tail",
|
||||
"Small shake upon reaching bank",
|
||||
"Brief sniff and onward trot"
|
||||
],
|
||||
"camera": "Low-angle bank tracking with water-splash micro-inserts",
|
||||
"accents": [
|
||||
"sparkling creek micro-highlights",
|
||||
"detailed wet-fur edge highlights"
|
||||
],
|
||||
"mood": "careful grace",
|
||||
"lighting": "bright clear midday",
|
||||
"style": "calm passage vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Fox spooked by a sudden drone overhead, scattering into cover at dusk",
|
||||
"sceneVariants": [
|
||||
"Fox spooked by a sudden drone overhead, scattering into cover at dusk",
|
||||
"Distant mechanical hum and red drone LEDs",
|
||||
"Quick burst of movement into thick hedgerow",
|
||||
"Leaves and dust in sudden motion",
|
||||
"A stunned pause then disappearing"
|
||||
],
|
||||
"actions": [
|
||||
"Instant freeze then explosive leap into brush",
|
||||
"Rapid zig-zagging between trees",
|
||||
"Short regroup in deep cover",
|
||||
"Tentative peek before resuming"
|
||||
],
|
||||
"camera": "Dynamic handheld reaction shot with drone POV inserts",
|
||||
"accents": [
|
||||
"harsh artificial specular from drone LEDs",
|
||||
"dust micro-highlights suspended mid-air"
|
||||
],
|
||||
"mood": "startled urgency",
|
||||
"lighting": "dusk with artificial LED puncta",
|
||||
"style": "urban-wild interaction clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Snow fox returning to den under aurora-lit polar sky",
|
||||
"sceneVariants": [
|
||||
"Snow fox returning to den under aurora-lit polar sky",
|
||||
"Curtains of green and purple overhead",
|
||||
"Snow-drifted tunnels leading to an entrance",
|
||||
"Breath steaming in cold air",
|
||||
"Silent crystalline landscape"
|
||||
],
|
||||
"actions": [
|
||||
"Gliding bound across snow with minimal prints",
|
||||
"Quick burrow to entrance and sheltering",
|
||||
"Slow settling into den with soft padding",
|
||||
"Periodic ear twitches listening to the aurora hush"
|
||||
],
|
||||
"camera": "Aerial aurora panorama transitioning to intimate den entry",
|
||||
"accents": [
|
||||
"auroral micro-highlights on white fur",
|
||||
"crisp snow crystal speculars"
|
||||
],
|
||||
"mood": "arctic serenity",
|
||||
"lighting": "cold aurora night light",
|
||||
"style": "magical natural portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Foxes",
|
||||
"scene": "Final vignette: fox silhouette on a hill at sunset as farmland lights start to glow",
|
||||
"sceneVariants": [
|
||||
"Final vignette: fox silhouette on a hill at sunset as farmland lights start to glow",
|
||||
"Long pastel gradients behind silhouette",
|
||||
"A single windmill turning far away",
|
||||
"Gentle breeze moving tall grasses",
|
||||
"A chorus of evening crickets begins"
|
||||
],
|
||||
"actions": [
|
||||
"One last attentive scan across the valley",
|
||||
"Soft trot down the ridge toward shelter",
|
||||
"A slight flick of the tail as it disappears",
|
||||
"Calm settling into the landscape"
|
||||
],
|
||||
"camera": "Wide establishing with gentle push-in for silhouette detail",
|
||||
"accents": [
|
||||
"clean sunset backlight",
|
||||
"feathered rim on tail and ears"
|
||||
],
|
||||
"mood": "peaceful closure",
|
||||
"lighting": "soft sunset backlight",
|
||||
"style": "poetic landscape coda"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_giraffes.json
Normal file
427
src/data/animals_and_wildlife_giraffes.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Towering herd browsing acacia crowns at golden hour",
|
||||
"sceneVariants": [
|
||||
"Towering herd browsing acacia crowns at golden hour",
|
||||
"Long necks silhouetted against an amber sky",
|
||||
"Leaves rustling as heads sweep branches",
|
||||
"Spotted patterns catching warm light",
|
||||
"Distant termite mounds on the plain"
|
||||
],
|
||||
"actions": [
|
||||
"Slow precision plucks of thorny branches",
|
||||
"Deliberate chewing with loose lips",
|
||||
"Occasional flick of tongue retrieving leaves",
|
||||
"A juvenile reaching awkwardly for a high sprig"
|
||||
],
|
||||
"camera": "Wide gentle crane with low-angle inserts to emphasize height",
|
||||
"accents": [
|
||||
"warm rim light outlining necks",
|
||||
"high-detail skin pattern micro-texture"
|
||||
],
|
||||
"mood": "graceful serenity",
|
||||
"lighting": "golden hour warmth with soft long shadows",
|
||||
"style": "elegant wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A lone bull pacing beneath storm clouds at dusk",
|
||||
"sceneVariants": [
|
||||
"A lone bull pacing beneath storm clouds at dusk",
|
||||
"Quickening wind across tall grass",
|
||||
"Low thunderheads on the horizon",
|
||||
"Tense stance and flaring nostrils",
|
||||
"Scattered small herds in background"
|
||||
],
|
||||
"actions": [
|
||||
"Pacing with measured, long strides",
|
||||
"Neck-swing displays of dominance",
|
||||
"Short bursts of irritated snorts",
|
||||
"Shaking off rain as drops begin"
|
||||
],
|
||||
"camera": "Telephoto medium shot with occasional slow push-ins",
|
||||
"accents": [
|
||||
"cold edge light from storm",
|
||||
"spray and water micro-highlights on coat"
|
||||
],
|
||||
"mood": "tense anticipation",
|
||||
"lighting": "moody dusk with cool storm undertones",
|
||||
"style": "dramatic wildlife moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Calf awkwardly sprinting alongside adults on a bright midday plain",
|
||||
"sceneVariants": [
|
||||
"Calf awkwardly sprinting alongside adults on a bright midday plain",
|
||||
"Short quick steps and floppy gait",
|
||||
"Bright clear sky overhead",
|
||||
"Distant grazing ungulates",
|
||||
"Heat shimmer near the ground"
|
||||
],
|
||||
"actions": [
|
||||
"Flurried running and wobbling stops",
|
||||
"Playful head-butting at a sibling",
|
||||
"Adults keeping a steady pace nearby",
|
||||
"Quick lunges to nibble low leaves"
|
||||
],
|
||||
"camera": "Handheld low-tracking with playful intermittent slow-mo",
|
||||
"accents": [
|
||||
"strong speculars on glossy eyes",
|
||||
"sharp micro-contrast on coat patterns"
|
||||
],
|
||||
"mood": "youthful exuberance",
|
||||
"lighting": "bright high-noon sunlight",
|
||||
"style": "energetic nature short"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Night silhouettes crossing a river under a silver moon",
|
||||
"sceneVariants": [
|
||||
"Night silhouettes crossing a river under a silver moon",
|
||||
"Reflections of tall legs in slow water",
|
||||
"Moon casting clean silver lines",
|
||||
"Misty banks and soft reed movement",
|
||||
"Stars visible in a clear sky"
|
||||
],
|
||||
"actions": [
|
||||
"Measured careful stepping into shallow water",
|
||||
"Trunks of reeds brushing flanks",
|
||||
"Soft inhalations and low creaks",
|
||||
"A nervous calf hesitating then following"
|
||||
],
|
||||
"camera": "Slow stabilized lateral tracking with reflective close inserts",
|
||||
"accents": [
|
||||
"cool rim light on muzzle and ossicones",
|
||||
"tiny specular highlights in reflected water"
|
||||
],
|
||||
"mood": "quiet passage",
|
||||
"lighting": "cool moonlit night",
|
||||
"style": "nocturnal nature tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Two bulls engaging in ritual necking at sunrise",
|
||||
"sceneVariants": [
|
||||
"Two bulls engaging in ritual necking at sunrise",
|
||||
"Powerful slow swings and heavy impacts",
|
||||
"Crowd of onlookers at respectful distance",
|
||||
"Dust kicking at impact points",
|
||||
"Sunrise rim lighting figures"
|
||||
],
|
||||
"actions": [
|
||||
"Long neck strikes and tested balance",
|
||||
"Thudding collisions with reverberating dust",
|
||||
"Short rests between bouts",
|
||||
"Occasional triumphant posture from winner"
|
||||
],
|
||||
"camera": "Dynamic medium handheld to capture impacts and dust",
|
||||
"accents": [
|
||||
"fiery rim on impact edges",
|
||||
"dust micro-highlights caught in backlight"
|
||||
],
|
||||
"mood": "ritual combat",
|
||||
"lighting": "warm sunrise contrast",
|
||||
"style": "cinematic natural conflict"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Foraging under a gentle rain with pearl-like droplets",
|
||||
"sceneVariants": [
|
||||
"Foraging under a gentle rain with pearl-like droplets",
|
||||
"Leaves beaded and dripping",
|
||||
"Soft mist rising from the ground",
|
||||
"Muted color palette with saturated greens",
|
||||
"Glassy wet skin textures"
|
||||
],
|
||||
"actions": [
|
||||
"Tricky nibbles picking the freshest leaves",
|
||||
"Shaking water from ossicones",
|
||||
"Slow contented chewing",
|
||||
"Browsed branches falling in small showers"
|
||||
],
|
||||
"camera": "Intimate close-ups with slow dolly pull to reveal herd",
|
||||
"accents": [
|
||||
"sparkling rain micro-highlights",
|
||||
"saturated wet-leaf bokeh"
|
||||
],
|
||||
"mood": "refreshing calm",
|
||||
"lighting": "diffuse overcast with soft highlights",
|
||||
"style": "moody pastoral vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A mother bending awkwardly to drink at a dusty waterhole at noon",
|
||||
"sceneVariants": [
|
||||
"A mother bending awkwardly to drink at a dusty waterhole at noon",
|
||||
"Long splayed forelegs and lowered neck",
|
||||
"Dust whorls from cattle nearby",
|
||||
"Reflections disrupted by drinking motion",
|
||||
"Brown parched earth surrounding water"
|
||||
],
|
||||
"actions": [
|
||||
"Deliberate lowering and careful sipping",
|
||||
"Quick head lift to scan the horizon",
|
||||
"A calf mimicking the awkward pose",
|
||||
"A startled flap of nearby birds"
|
||||
],
|
||||
"camera": "Low-angle timed reefing to capture the bending silhouette",
|
||||
"accents": [
|
||||
"strong midday speculars on water",
|
||||
"warm dust-edge rim lighting"
|
||||
],
|
||||
"mood": "vigilant repose",
|
||||
"lighting": "harsh noon sun with stark shadows",
|
||||
"style": "documentary natural action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Calves nursing beneath dappled canopy at dusk",
|
||||
"sceneVariants": [
|
||||
"Calves nursing beneath dappled canopy at dusk",
|
||||
"Soft leaf shadow patterns on flanks",
|
||||
"Gentle maternal protection",
|
||||
"Twilight colors seeping through leaves",
|
||||
"Small insects orbiting tender areas"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet suckling and mother shifting weight",
|
||||
"Protective glances towards darkness",
|
||||
"Subtle tail flicks to shoo flies",
|
||||
"A calf curling close as evening chills"
|
||||
],
|
||||
"camera": "Close tender handheld shots with shallow DOF",
|
||||
"accents": [
|
||||
"soft dapple rim light through canopy",
|
||||
"micro-detail on calf lashes and whiskers"
|
||||
],
|
||||
"mood": "tender intimacy",
|
||||
"lighting": "soft dusk with warm cool mix",
|
||||
"style": "intimate wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A small group pacing along a firebreak under smoky sunset",
|
||||
"sceneVariants": [
|
||||
"A small group pacing along a firebreak under smoky sunset",
|
||||
"Hazy orange sky with low visibility",
|
||||
"Charred grass contrasts with green edges",
|
||||
"Mild coughing from birds in background",
|
||||
"Wind-driven ember embers drifting"
|
||||
],
|
||||
"actions": [
|
||||
"Slow purposeful walking along cleared path",
|
||||
"Occasional pausing to nose-scent unusual scents",
|
||||
"A calf stumbling on uneven ground",
|
||||
"Heads lifted in alert at distant noises"
|
||||
],
|
||||
"camera": "Medium tracking lateral shots with tight insert on expressive eyes",
|
||||
"accents": [
|
||||
"smoky warm rim light",
|
||||
"ash particle micro-highlights"
|
||||
],
|
||||
"mood": "uneasy resilience",
|
||||
"lighting": "smoky sunset with diffused warmth",
|
||||
"style": "atmospheric documentary clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Under starlight they browse silently in a moonlit clearing",
|
||||
"sceneVariants": [
|
||||
"Under starlight they browse silently in a moonlit clearing",
|
||||
"Stars pinpricking the deep blue sky",
|
||||
"Pale moon casting soft silver glazing",
|
||||
"Tall silhouettes moving like slow dancers",
|
||||
"Faint constellations reflected on glossy eyes"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet careful browsing",
|
||||
"Occasional slow glances skyward",
|
||||
"Soft rustle of leaves",
|
||||
"Trunks tasting dew-dropped leaves"
|
||||
],
|
||||
"camera": "Wide static with slow push-in on reflective eye close-ups",
|
||||
"accents": [
|
||||
"cool moon rim on ossicones",
|
||||
"tiny sparkling highlights on dew-laden foliage"
|
||||
],
|
||||
"mood": "calm nocturnal grace",
|
||||
"lighting": "soft moonlight with cool palette",
|
||||
"style": "ethereal wildlife scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A curious juvenile inspecting a camera left near a trail at morning",
|
||||
"sceneVariants": [
|
||||
"A curious juvenile inspecting a camera left near a trail at morning",
|
||||
"Sniffing and tentative tongue touch",
|
||||
"Small head tilts and puzzled expressions",
|
||||
"Dewy grass and soft morning haze",
|
||||
"Nearby adults grazing unconcerned"
|
||||
],
|
||||
"actions": [
|
||||
"Approach with measured curiosity",
|
||||
"Tongue flick to explore smooth glass",
|
||||
"A startled recoil before cautious return",
|
||||
"Nudging from a sibling to investigate together"
|
||||
],
|
||||
"camera": "Close documentary POV swapped for metacommentary",
|
||||
"accents": [
|
||||
"gentle warm rim on muzzle",
|
||||
"specular highlights on the camera glass mirrored in eye"
|
||||
],
|
||||
"mood": "curious playfulness",
|
||||
"lighting": "soft morning fill",
|
||||
"style": "meta nature moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A small herd browsing seaside acacias with ocean spray in background",
|
||||
"sceneVariants": [
|
||||
"A small herd browsing seaside acacias with ocean spray in background",
|
||||
"Blue ocean line and crashing waves",
|
||||
"Salt burn on nearest leaves",
|
||||
"Seabirds wheeling overhead",
|
||||
"Wind-tousled grasses meeting sand"
|
||||
],
|
||||
"actions": [
|
||||
"Selecting salt-tolerant leaves carefully",
|
||||
"Occasional glance toward crashing surf",
|
||||
"Trunk lifts to reach highest tender shoots",
|
||||
"Synchronous chewing rhythm"
|
||||
],
|
||||
"camera": "Wide coastal establishing with telephoto inserts",
|
||||
"accents": [
|
||||
"cool ocean rim highlights",
|
||||
"salt-crystal micro-accents on leaves"
|
||||
],
|
||||
"mood": "serene juxtaposition",
|
||||
"lighting": "bright coastal sunlight",
|
||||
"style": "unique habitat contrast vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A desolate night: a single giraffe illuminated by a distant jeep's spotlight",
|
||||
"sceneVariants": [
|
||||
"A desolate night: a single giraffe illuminated by a distant jeep's spotlight",
|
||||
"Long shadow cast behind, background swallowed by black",
|
||||
"Breathing steam visible in cold air",
|
||||
"Spotlight wash creating hard contrast",
|
||||
"Nearby insects spiraling in the beam"
|
||||
],
|
||||
"actions": [
|
||||
"Startled freeze then cautious retreat",
|
||||
"Slow careful step away from the light",
|
||||
"Head cocking to assess threat source",
|
||||
"Eventual confident return to browse once light passes"
|
||||
],
|
||||
"camera": "Stark cinematic single-shot with high-contrast lighting",
|
||||
"accents": [
|
||||
"hard specular from spotlight",
|
||||
"detailed eye reflections and wet nostril glint"
|
||||
],
|
||||
"mood": "tense curiosity",
|
||||
"lighting": "harsh artificial spotlight in deep night",
|
||||
"style": "noir wildlife snippet"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Morning congregation where elders lead the group to fresh shoots",
|
||||
"sceneVariants": [
|
||||
"Morning congregation where elders lead the group to fresh shoots",
|
||||
"Ordered movement with calm direction",
|
||||
"Younger individuals learning routes",
|
||||
"Bright dew on newly sprouted foliage",
|
||||
"Soft chorus of bird calls adding atmosphere"
|
||||
],
|
||||
"actions": [
|
||||
"Elders pausing to scent-mark feeding locations",
|
||||
"Calves watching protocol and copying",
|
||||
"Trunks reaching in a practiced rhythm",
|
||||
"Adults gently redirecting younger browsers"
|
||||
],
|
||||
"camera": "Wide cinematic mover with mid-shot leader close-ups",
|
||||
"accents": [
|
||||
"soft golden rim on leader's profile",
|
||||
"rich detail on new leaf textures"
|
||||
],
|
||||
"mood": "ordered community care",
|
||||
"lighting": "soft early morning gold",
|
||||
"style": "educational natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "Dusty evening as a herd moves along an old migration route",
|
||||
"sceneVariants": [
|
||||
"Dusty evening as a herd moves along an old migration route",
|
||||
"Low sun cutting through haze",
|
||||
"Familiar landmarks in silhouette",
|
||||
"Slow persistent column of animals",
|
||||
"Insects and small mammals scurrying at their feet"
|
||||
],
|
||||
"actions": [
|
||||
"Steady pacing with occasional breaks",
|
||||
"Scenting the air for familiar signposts",
|
||||
"Subtle social nudges to maintain formation",
|
||||
"A brief spurt when startled by a passing vehicle"
|
||||
],
|
||||
"camera": "Tracking lateral long shot with gentle cross-cuts",
|
||||
"accents": [
|
||||
"backlit dust motes creating golden halos",
|
||||
"high texture contrast on dusty hides"
|
||||
],
|
||||
"mood": "steady migration rhythm",
|
||||
"lighting": "golden dusty sunset",
|
||||
"style": "traveling nature sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A calf sheltered in the lee of an adult during a cold clear night",
|
||||
"sceneVariants": [
|
||||
"A calf sheltered in the lee of an adult during a cold clear night",
|
||||
"Visible breath in cold air",
|
||||
"Stars bright above and a faint milky way",
|
||||
"Quiet hush over the plain",
|
||||
"Soft fur ruffled against chill"
|
||||
],
|
||||
"actions": [
|
||||
"Close nuzzling for warmth",
|
||||
"Small rhythmic breathing and soft rumbles",
|
||||
"An adult shifting slightly to shield from wind",
|
||||
"Calf dozing then stirring briefly"
|
||||
],
|
||||
"camera": "Tight intimate slow push-in to emotional close",
|
||||
"accents": [
|
||||
"cool moon rim on silhouettes",
|
||||
"gentle sparkle on frosty grass"
|
||||
],
|
||||
"mood": "protective warmth",
|
||||
"lighting": "pale moonlight with crisp cool tones",
|
||||
"style": "emotive nocturnal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Giraffes",
|
||||
"scene": "A juvenile practicing high browsing under bright midday sun",
|
||||
"sceneVariants": [
|
||||
"A juvenile practicing high browsing under bright midday sun",
|
||||
"Stretching awkwardly to reach uppermost leaves",
|
||||
"Bright blue sky with sparse clouds",
|
||||
"Shiny healthy foliage at reach",
|
||||
"Nearby insects hovering"
|
||||
],
|
||||
"actions": [
|
||||
"Repeated stretches and successful plucks",
|
||||
"Brief slips then steady recovery",
|
||||
"Satisfied chewing and small triumphant sounds",
|
||||
"An adult observing with approving posture"
|
||||
],
|
||||
"camera": "Low-angle time-lapse style insert with playful pacing",
|
||||
"accents": [
|
||||
"strong midday specular on leaves",
|
||||
"high micro-detail on tongue motion"
|
||||
],
|
||||
"mood": "determined learning",
|
||||
"lighting": "clear bright midday light",
|
||||
"style": "lighthearted nature vignette"
|
||||
}
|
||||
]
|
||||
402
src/data/animals_and_wildlife_horses.json
Normal file
402
src/data/animals_and_wildlife_horses.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Wild mustang herd running across a sunlit plateau",
|
||||
"sceneVariants": [
|
||||
"Wild mustang herd running across a sunlit plateau",
|
||||
"Dust trail curling behind hooves",
|
||||
"Wide open sky with distant mesa",
|
||||
"Sparse sagebrush and golden grass",
|
||||
"A lead stallion rearing briefly"
|
||||
],
|
||||
"actions": [
|
||||
"Thundering gallop in unison",
|
||||
"Stallion rears to assert position",
|
||||
"Mares nudging foals to keep pace",
|
||||
"Dust clouds forming dramatic plumes"
|
||||
],
|
||||
"camera": "Wide tracking shot from flank with occasional low-angle pushes",
|
||||
"accents": [
|
||||
"warm rim light on manes",
|
||||
"high micro-detail on kicked dust particles"
|
||||
],
|
||||
"mood": "untamed freedom",
|
||||
"lighting": "warm late-afternoon sun",
|
||||
"style": "epic natural ride"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Dapple grey mare and foal in a misty morning meadow",
|
||||
"sceneVariants": [
|
||||
"Dapple grey mare and foal in a misty morning meadow",
|
||||
"Soft vapor rising from dewy grass",
|
||||
"Close mutual nuzzling",
|
||||
"A wooden fence in soft focus",
|
||||
"Low song of waking birds"
|
||||
],
|
||||
"actions": [
|
||||
"Foal skittering and learning to balance",
|
||||
"Mare gently nudging and guiding",
|
||||
"Quiet grooming of foal's head",
|
||||
"Slow exploratory walks through dew"
|
||||
],
|
||||
"camera": "Intimate handheld with shallow depth and gentle dolly",
|
||||
"accents": [
|
||||
"volumetric shafts through mist",
|
||||
"dewy micro-highlights on whiskers"
|
||||
],
|
||||
"mood": "tender beginnings",
|
||||
"lighting": "soft dawn with cool-warm balance",
|
||||
"style": "intimate pastoral vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Stormy beach gallop with dark clouds and spray",
|
||||
"sceneVariants": [
|
||||
"Stormy beach gallop with dark clouds and spray",
|
||||
"Black surf pounding on the sand",
|
||||
"Silhouetted riders and horses",
|
||||
"Wind-driven spray and flapping manes",
|
||||
"A distant lighthouse flash"
|
||||
],
|
||||
"actions": [
|
||||
"Powerful gallops slashing through surf",
|
||||
"Riders leaning into the wind",
|
||||
"Hoof-prints filling and being erased",
|
||||
"Splashing arcs of seawater"
|
||||
],
|
||||
"camera": "Handheld dynamic lateral tracking with high shutter to freeze spray",
|
||||
"accents": [
|
||||
"cold rim from storm backlight",
|
||||
"sparkling spray micro-highlights"
|
||||
],
|
||||
"mood": "wild exhilaration",
|
||||
"lighting": "high-contrast storm light",
|
||||
"style": "cinematic action ride"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Stable interior at midday: thoroughbreds being groomed and tacked",
|
||||
"sceneVariants": [
|
||||
"Stable interior at midday: thoroughbreds being groomed and tacked",
|
||||
"Warm beams of light through dust",
|
||||
"Leather tack laid out neatly",
|
||||
"Hands moving with practiced care",
|
||||
"Distant hooves and soft nickers"
|
||||
],
|
||||
"actions": [
|
||||
"Brush strokes and mane braiding",
|
||||
"Checking girth and cinch adjustments",
|
||||
"Calm feeding of treats and quiet talk",
|
||||
"Final rub-down before saddling"
|
||||
],
|
||||
"camera": "Close steady with texture inserts on leather and hair",
|
||||
"accents": [
|
||||
"warm volumetric light on polished tack",
|
||||
"detailed hair micro-highlights"
|
||||
],
|
||||
"mood": "ritual preparation",
|
||||
"lighting": "warm interior midday shafts",
|
||||
"style": "documentary equestrian slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Night pasture under a silver moon where a single black stallion patrols",
|
||||
"sceneVariants": [
|
||||
"Night pasture under a silver moon where a single black stallion patrols",
|
||||
"Long silver shadows across grass",
|
||||
"Ear-tips and breath catching moonlight",
|
||||
"Distant farm lights faintly glowing",
|
||||
"A clear starfield overhead"
|
||||
],
|
||||
"actions": [
|
||||
"Slow measured patrol with head-high posture",
|
||||
"Occasional snort to test scent",
|
||||
"Pacing and pawing at a spot",
|
||||
"Short rear to shake off flies"
|
||||
],
|
||||
"camera": "Low-light stabilized with occasional close-up on nostrils",
|
||||
"accents": [
|
||||
"cool moon rim on mane edges",
|
||||
"glossy breath micro-highlights"
|
||||
],
|
||||
"mood": "nocturnal vigilance",
|
||||
"lighting": "cool moonlit night",
|
||||
"style": "moody equine portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Dressage arena at golden hour with a white horse and rider performing piaffe",
|
||||
"sceneVariants": [
|
||||
"Dressage arena at golden hour with a white horse and rider performing piaffe",
|
||||
"Perfect arena footing and crisp letter markers",
|
||||
"Audience silhouettes in the stand",
|
||||
"Flag flutter at the arena entrance",
|
||||
"Warm dust motes in the light"
|
||||
],
|
||||
"actions": [
|
||||
"Precise elevated trot in place (piaffe)",
|
||||
"Sharply collected passages and transitions",
|
||||
"Rider's subtle reins and leg cues",
|
||||
"Polished salute at completion"
|
||||
],
|
||||
"camera": "Medium steady with close detail on hoof cadence and rider posture",
|
||||
"accents": [
|
||||
"warm rim on mane and tail",
|
||||
"spot micro-highlights on polished leather"
|
||||
],
|
||||
"mood": "disciplined elegance",
|
||||
"lighting": "golden-hour warm light",
|
||||
"style": "elegant equestrian cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Wild brumbies crossing a dusty outback road at midday",
|
||||
"sceneVariants": [
|
||||
"Wild brumbies crossing a dusty outback road at midday",
|
||||
"Red dust and scrubby eucalyptus",
|
||||
"Heat haze and distant termite mounds",
|
||||
"A single rider watching from afar",
|
||||
"Scrub birds scattering"
|
||||
],
|
||||
"actions": [
|
||||
"Hasty crossing with hooves stirring red dust",
|
||||
"Head-turns and scanning as they pass",
|
||||
"A foal struggling then finding rhythm",
|
||||
"Leader urging the column onward"
|
||||
],
|
||||
"camera": "Wide tracking from roadside with occasional telephoto compression",
|
||||
"accents": [
|
||||
"long warm dust rim",
|
||||
"textured micro-highlights on red dust"
|
||||
],
|
||||
"mood": "rugged movement",
|
||||
"lighting": "harsh high-noon outback sun",
|
||||
"style": "gritty nature travel"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Night of the lanterns: horses led through a village procession by torchlight",
|
||||
"sceneVariants": [
|
||||
"Night of the lanterns: horses led through a village procession by torchlight",
|
||||
"Warm flame pools casting dancing shadows",
|
||||
"Villagers in traditional dress lining the route",
|
||||
"Horses decorated with ribbons and cloth",
|
||||
"A bell clanging occasionally"
|
||||
],
|
||||
"actions": [
|
||||
"Slow ceremonial walking in single file",
|
||||
"Occasional tossing of heads to the rhythm",
|
||||
"Soft interactions with handlers",
|
||||
"Lanterns reflected in eyes and harness"
|
||||
],
|
||||
"camera": "Moody handheld low-light with warm flame close-ins",
|
||||
"accents": [
|
||||
"warm torch rim on harness metal",
|
||||
"tiny reflective micro-highlights on leather"
|
||||
],
|
||||
"mood": "ceremonial reverence",
|
||||
"lighting": "warm torchlight in deep night",
|
||||
"style": "ritual equestrian pageant"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Foal birth in a secluded paddock at pre-dawn beneath pastel sky",
|
||||
"sceneVariants": [
|
||||
"Foal birth in a secluded paddock at pre-dawn beneath pastel sky",
|
||||
"Mother exhausted and tender over newborn",
|
||||
"Fresh amniotic fluids and straw bedding",
|
||||
"Early birdsong and distant farm silhouette",
|
||||
"Warm breath steaming in cool air"
|
||||
],
|
||||
"actions": [
|
||||
"Struggling first stands and tentative wobble",
|
||||
"Mother licking and guiding steps",
|
||||
"Tender nuzzle exchanges",
|
||||
"First shaky attempts at nursing"
|
||||
],
|
||||
"camera": "Intimate macro-close with soft pastel grading",
|
||||
"accents": [
|
||||
"soft volumetric dawn rim",
|
||||
"dewy micro-highlights on new coat"
|
||||
],
|
||||
"mood": "fragile miracle",
|
||||
"lighting": "soft pre-dawn pastel light",
|
||||
"style": "emotive birth vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Clydesdale team pulling a historic wagon during a rainy parade",
|
||||
"sceneVariants": [
|
||||
"Clydesdale team pulling a historic wagon during a rainy parade",
|
||||
"Shiny wet coats and heavy harness",
|
||||
"Crowd under umbrellas along the route",
|
||||
"Brick streets slick with rain",
|
||||
"Period costumes on passengers"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized heavy pulling with measured steps",
|
||||
"Flankers adjusting with leather chatter",
|
||||
"Coachman guiding with precise rein work",
|
||||
"Spectators cheering through the rain"
|
||||
],
|
||||
"camera": "Medium handheld capturing scale and detail",
|
||||
"accents": [
|
||||
"wet speculars on harness fittings",
|
||||
"sparkling rain micro-highlights"
|
||||
],
|
||||
"mood": "stately endurance",
|
||||
"lighting": "diffuse rainy daylight",
|
||||
"style": "historic processional scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Sunset mustang silhouette on a ridge with migrating cranes in background",
|
||||
"sceneVariants": [
|
||||
"Sunset mustang silhouette on a ridge with migrating cranes in background",
|
||||
"Long orange horizon and distant bird V-formation",
|
||||
"Single horse standing regal on a knoll",
|
||||
"Faint scrub and blown grasses",
|
||||
"Calm wind and soft chirps"
|
||||
],
|
||||
"actions": [
|
||||
"Horse standing contemplative silhouette",
|
||||
"Slow head turn to watch cranes pass",
|
||||
"A gentle neigh carried on the sunset wind",
|
||||
"Final walk down the ridge into the lowlands"
|
||||
],
|
||||
"camera": "Wide panoramic with gentle push-in for silhouette detail",
|
||||
"accents": [
|
||||
"clean sunset backlight",
|
||||
"feathered light on mane edges"
|
||||
],
|
||||
"mood": "meditative grace",
|
||||
"lighting": "clean sunset backlight",
|
||||
"style": "poetic landscape portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Arena cross-country challenge through woods at midday with horses jumping logs",
|
||||
"sceneVariants": [
|
||||
"Arena cross-country challenge through woods at midday with horses jumping logs",
|
||||
"Packed earth trails and rustic obstacles",
|
||||
"Riders focused and horses in mid-air",
|
||||
"Support crew and spectators lining the course",
|
||||
"Flags marking the route"
|
||||
],
|
||||
"actions": [
|
||||
"Powerful leaps and tight landings",
|
||||
"Rider balance adjustments mid-air",
|
||||
"Quick gallop between fences",
|
||||
"Victory raise of hand after clean rounds"
|
||||
],
|
||||
"camera": "Dynamic handheld with slow-mo jump inserts and rider POVs",
|
||||
"accents": [
|
||||
"hard sun rim on airborne dust",
|
||||
"detailed micro-highlights on tack and muscle flex"
|
||||
],
|
||||
"mood": "athletic intensity",
|
||||
"lighting": "bright midday forest light",
|
||||
"style": "sporting action sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Foggy moor early morning where a solitary gray horse leaves soft hoofprints",
|
||||
"sceneVariants": [
|
||||
"Foggy moor early morning where a solitary gray horse leaves soft hoofprints",
|
||||
"Pale mist and only near shapes visible",
|
||||
"Low scrub and scattered standing stones",
|
||||
"Quiet breath and distant bird calls",
|
||||
"A thin ribbon of path cutting through"
|
||||
],
|
||||
"actions": [
|
||||
"Slow walking with measured steps",
|
||||
"Occasional head drop to graze",
|
||||
"Soft pawing at the ground to shift stance",
|
||||
"A gentle flick of tail at insects"
|
||||
],
|
||||
"camera": "Soft-focus dolly with intimate close hoof and breath inserts",
|
||||
"accents": [
|
||||
"soft volumetric mist rim",
|
||||
"dewy micro-highlights on lashes"
|
||||
],
|
||||
"mood": "solitary calm",
|
||||
"lighting": "muted fog-diffused dawn",
|
||||
"style": "lyrical solitude vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Nighttime mounted patrol in historical armor clinking under lanterns",
|
||||
"sceneVariants": [
|
||||
"Nighttime mounted patrol in historical armor clinking under lanterns",
|
||||
"Clanky metal and horse breath steaming",
|
||||
"Cobblestone streets and shadowy alleys",
|
||||
"Lantern-bearers leading the way",
|
||||
"A sense of ceremonial duty"
|
||||
],
|
||||
"actions": [
|
||||
"Slow ceremonial march with measured hoof beats",
|
||||
"Armor flashing in lantern light",
|
||||
"Mounted signals passed along the line",
|
||||
"Final halt outside a guarded gate"
|
||||
],
|
||||
"camera": "Low cinematic with lantern-lit close-ins",
|
||||
"accents": [
|
||||
"warm lantern specular on metal",
|
||||
"tiny reflective micro-highlights on leather"
|
||||
],
|
||||
"mood": "solemn ritual",
|
||||
"lighting": "warm lantern night light",
|
||||
"style": "historic nocturnal tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Children learning to ride in a sunny paddock with patient ponies",
|
||||
"sceneVariants": [
|
||||
"Children learning to ride in a sunny paddock with patient ponies",
|
||||
"Colorful helmets and tiny saddles",
|
||||
"Smiling instructors guiding hands",
|
||||
"Bright farm fence and hay bales",
|
||||
"A small picnic in the shade"
|
||||
],
|
||||
"actions": [
|
||||
"Slow confident walking around the ring",
|
||||
"Gentle direction cues from instructors",
|
||||
"High-fives after a successful trot",
|
||||
"Mini grooming sessions after riding"
|
||||
],
|
||||
"camera": "Warm low-angle handheld with joyful close-ups",
|
||||
"accents": [
|
||||
"bright friendly rim on faces and ponies",
|
||||
"soft micro-highlights on cheerful tack"
|
||||
],
|
||||
"mood": "playful learning",
|
||||
"lighting": "warm sunny midday",
|
||||
"style": "heartwarming tutorial vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horses",
|
||||
"scene": "Final scene: herd resting at dusk with lantern-lit barns in background",
|
||||
"sceneVariants": [
|
||||
"Final scene: herd resting at dusk with lantern-lit barns in background",
|
||||
"Soft pastel sky and low hum of farm life",
|
||||
"Horses in small clusters chewing cud",
|
||||
"Lanterns beginning to glow across the yard",
|
||||
"A caretaker closing a gate"
|
||||
],
|
||||
"actions": [
|
||||
"Slow grazing then settling into restful positions",
|
||||
"Mutual nuzzling between close herd members",
|
||||
"A caretaker patting a favorite before walking away",
|
||||
"Calm tails flicking at evening insects"
|
||||
],
|
||||
"camera": "Wide tranquil establishing followed by tender close portrait",
|
||||
"accents": [
|
||||
"soft warm lantern rim on profiles",
|
||||
"gentle micro-highlights on dew and hair"
|
||||
],
|
||||
"mood": "contented closure",
|
||||
"lighting": "soft dusk with warm barn accents",
|
||||
"style": "gentle pastoral coda"
|
||||
}
|
||||
]
|
||||
502
src/data/animals_and_wildlife_lions.json
Normal file
502
src/data/animals_and_wildlife_lions.json
Normal file
@ -0,0 +1,502 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Pride lounging on sun-warmed termite mound",
|
||||
"sceneVariants": [
|
||||
"Pride lounging on sun-warmed termite mound",
|
||||
"Lions stretched atop a low red mound under wide sky",
|
||||
"Several adults dozing with cubs tucked between paws",
|
||||
"Yawning male surveys the golden plains",
|
||||
"Scattered acacia silhouettes on the horizon"
|
||||
],
|
||||
"actions": [
|
||||
"A cub pounces clumsily on a tail",
|
||||
"An adult cleans another with slow tongue strokes",
|
||||
"Heat-hazed insects rising above the grass",
|
||||
"A distant wildebeest herd moving as background motion"
|
||||
],
|
||||
"camera": "Wide static shot from low angle, occasional slow rack focus to cub",
|
||||
"accents": [
|
||||
"golden rim light highlighting whiskers and mane edges",
|
||||
"high micro-detail in sunlit fur textures"
|
||||
],
|
||||
"mood": "tranquil dominance",
|
||||
"lighting": "warm late-afternoon sunlight with long soft shadows",
|
||||
"style": "epic wildlife cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Male lion roaring from a cliff at dusk",
|
||||
"sceneVariants": [
|
||||
"Male lion roaring from a cliff at dusk",
|
||||
"Silhouette against an orange-purple horizon",
|
||||
"Mane flaring in the backlight",
|
||||
"Clouds streaking as the sun falls",
|
||||
"Sparse scrub framing the foreground"
|
||||
],
|
||||
"actions": [
|
||||
"Powerful full-throated roar shaking nearby grasses",
|
||||
"Wind ruffling the mane dramatically",
|
||||
"Echo traveling across the valley",
|
||||
"A listening pride hidden in shadow"
|
||||
],
|
||||
"camera": "Slow crane up from cliff base to close-up on mouth during roar",
|
||||
"accents": [
|
||||
"rim of warm sunlight on mane edges",
|
||||
"subtle dust particles illuminated by backlight"
|
||||
],
|
||||
"mood": "majestic warning",
|
||||
"lighting": "dusk backlight with deepening shadows",
|
||||
"style": "heroic cinematic portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Mother teaching cubs to stalk near tall grass",
|
||||
"sceneVariants": [
|
||||
"Mother teaching cubs to stalk near tall grass",
|
||||
"Cubs crouched with intent expressions",
|
||||
"Grass blades brushing noses",
|
||||
"A hidden gazelle foreshortened in background",
|
||||
"Low sun glancing off eyes"
|
||||
],
|
||||
"actions": [
|
||||
"Cubs practicing silent steps and pounces",
|
||||
"Mother nudging a cub into proper posture",
|
||||
"Occasional failed pounce followed by playful tumble",
|
||||
"A parental hiss to emphasize seriousness"
|
||||
],
|
||||
"camera": "Low dolly tracking sideways with the stalking line, intermittent push-ins",
|
||||
"accents": [
|
||||
"soft sun flares through grass tips",
|
||||
"high-detail focus on eye reflections"
|
||||
],
|
||||
"mood": "teaching, tender intensity",
|
||||
"lighting": "soft morning light with cool under-shade tones",
|
||||
"style": "intimate natural history vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Pride crossing a shallow river at midday",
|
||||
"sceneVariants": [
|
||||
"Pride crossing a shallow river at midday",
|
||||
"Reflections rippling under broad daylight",
|
||||
"Wet fur shining where water clings",
|
||||
"Stepping stones and scattered reeds",
|
||||
"Birds startled into flight as they pass"
|
||||
],
|
||||
"actions": [
|
||||
"Paws splashing and careful stepping between rocks",
|
||||
"Cubs hesitating then following bravely",
|
||||
"A sentinel scanning banks for danger",
|
||||
"A trailing adult shaking water from whiskers"
|
||||
],
|
||||
"camera": "Medium tracking shot from riverbank, periodic over-the-shoulder cuts",
|
||||
"accents": [
|
||||
"sparkling specular highlights on wet fur",
|
||||
"crisp micro-contrast in water ripples"
|
||||
],
|
||||
"mood": "purposeful migration",
|
||||
"lighting": "bright noon sun with high contrast",
|
||||
"style": "documentary travel-through scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Solitary male lounging under an isolated thorn tree",
|
||||
"sceneVariants": [
|
||||
"Solitary male lounging under an isolated thorn tree",
|
||||
"Sparse landscape emphasizing solitude",
|
||||
"Patches of shade cooling the earth",
|
||||
"A single vulture perched nearby",
|
||||
"Dusty wind lifting fine particles"
|
||||
],
|
||||
"actions": [
|
||||
"Slow blink and ear flicks in idle watchfulness",
|
||||
"Tail swishing to dismiss flies",
|
||||
"Occasional deep exhale and relaxation",
|
||||
"A distant movement causing a quick attentive lift"
|
||||
],
|
||||
"camera": "Slow stationary mid-shot with gradual push-in to portrait",
|
||||
"accents": [
|
||||
"soft side light carving facial planes",
|
||||
"high-detail on mane texture to convey age"
|
||||
],
|
||||
"mood": "quiet authority",
|
||||
"lighting": "mild afternoon light with warm tonal range",
|
||||
"style": "character study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Nighttime patrol along the scrub edge under a full moon",
|
||||
"sceneVariants": [
|
||||
"Nighttime patrol along the scrub edge under a full moon",
|
||||
"Pale moonlight casting silver shadows",
|
||||
"Eyes reflecting like distant lanterns",
|
||||
"Heavy silhouettes moving between bush lines",
|
||||
"A faint milky way above"
|
||||
],
|
||||
"actions": [
|
||||
"Silent crossing with pawpads barely audible",
|
||||
"Occasional scent-marking on low branches",
|
||||
"Low rumble communication between adults",
|
||||
"Scanning pauses with ears twitching"
|
||||
],
|
||||
"camera": "Handheld-style tracking with occasional stabilized push-ins on eyes",
|
||||
"accents": [
|
||||
"cold silver rim light from moon",
|
||||
"glossy eye reflections and wet nose highlights"
|
||||
],
|
||||
"mood": "stealthy vigilance",
|
||||
"lighting": "cool moonlit night with deep blues and muted blacks",
|
||||
"style": "noir wildlife scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Ambush at twilight as the pride surrounds prey",
|
||||
"sceneVariants": [
|
||||
"Ambush at twilight as the pride surrounds prey",
|
||||
"Low silhouettes moving into position",
|
||||
"Twilight gradient across the sky",
|
||||
"Tall grasses providing cover",
|
||||
"Anxious prey herd on the horizon"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated flank movement to cut escape routes",
|
||||
"A sudden burst of speed and a chaotic chase",
|
||||
"Dust and kicked-up grass during the sprint",
|
||||
"A triumphant pounce and group feeding"
|
||||
],
|
||||
"camera": "Dynamic handheld with whip-pans during the chase, close impact cuts",
|
||||
"accents": [
|
||||
"warm rim light from setting sun",
|
||||
"high-detail dirt spray and motion blur accents"
|
||||
],
|
||||
"mood": "tense, primal energy",
|
||||
"lighting": "twilight mixed warm/cool tones",
|
||||
"style": "intense natural-action sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Cubs playing in a shaded den while adults hunt",
|
||||
"sceneVariants": [
|
||||
"Cubs playing in a shaded den while adults hunt",
|
||||
"Leaf-filtered light falling in patches",
|
||||
"Tangled cubs tumbling over roots",
|
||||
"An adult tail disappearing into the distance",
|
||||
"Soft moss and packed earth floor"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic wrestling and mock-attack play",
|
||||
"Mother returning briefly to check on them",
|
||||
"Playful vocalizations and squeals",
|
||||
"A cub discovering a small insect and batting at it"
|
||||
],
|
||||
"camera": "Close intimate handheld with frequent cutaways to paws and faces",
|
||||
"accents": [
|
||||
"sun-splinter shafts through leaves",
|
||||
"micro-detail on cub fur and whisker movement"
|
||||
],
|
||||
"mood": "playful warmth",
|
||||
"lighting": "dappled shade with warm highlights",
|
||||
"style": "gentle observational documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Night fight between rival males beneath a blood-tinged moon",
|
||||
"sceneVariants": [
|
||||
"Night fight between rival males beneath a blood-tinged moon",
|
||||
"Sparks of flying dust in harsh moonlight",
|
||||
"Mane interlocking and teeth bared",
|
||||
"Echoes of snarls across the plain",
|
||||
"Nearby pride hidden in anxious shadows"
|
||||
],
|
||||
"actions": [
|
||||
"Intense grappling and thunderous slaps",
|
||||
"Roars punctuating the night air",
|
||||
"One male making a desperate retreat",
|
||||
"Aftermath panting and blood-streaked fur"
|
||||
],
|
||||
"camera": "Close handheld with staccato cuts, heavy focus on teeth and eyes",
|
||||
"accents": [
|
||||
"harsh cold moon rim light with red-tinted hue",
|
||||
"dramatic specular on wet fur and blood"
|
||||
],
|
||||
"mood": "violent contest, survival stakes",
|
||||
"lighting": "high-contrast moonlit noir with red undertones",
|
||||
"style": "gritty nature drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Morning mist breaking over a pride awakening on the savannah",
|
||||
"sceneVariants": [
|
||||
"Morning mist breaking over a pride awakening on the savannah",
|
||||
"Soft vapor curling between legs",
|
||||
"Sun rising warm and low",
|
||||
"Cubs stretching and shaking dew",
|
||||
"Distant silhouettes of termitaria"
|
||||
],
|
||||
"actions": [
|
||||
"Slow collective rising and yawns",
|
||||
"Sniffing the air and tentative first steps",
|
||||
"Adults scanning for fresh tracks",
|
||||
"A cub chasing its own breath-cloud in the cold air"
|
||||
],
|
||||
"camera": "Wide morning establishing shot with gentle slow zoom",
|
||||
"accents": [
|
||||
"soft volumetric light through mist",
|
||||
"dewy micro-highlights on whiskers"
|
||||
],
|
||||
"mood": "awakening hopefulness",
|
||||
"lighting": "cool pre-dawn to warm sunrise transition",
|
||||
"style": "lyrical nature sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Old king surveying his reduced territory under storm clouds",
|
||||
"sceneVariants": [
|
||||
"Old king surveying his reduced territory under storm clouds",
|
||||
"Dark thunderheads rolling in",
|
||||
"Ragged mane and scarred face",
|
||||
"Sparse animals grazing nervously",
|
||||
"A sudden wind picking up dust"
|
||||
],
|
||||
"actions": [
|
||||
"Slow, deliberate pacing along a ridge",
|
||||
"Growl directed at intruding scavengers",
|
||||
"Sidelong glances at younger males approaching",
|
||||
"Momentary crown of lightning illuminating whiskers"
|
||||
],
|
||||
"camera": "Long lens compression from downhill, occasional dramatic close-ups",
|
||||
"accents": [
|
||||
"cold edge light from storm",
|
||||
"high micro-detail on scars and weathered mane"
|
||||
],
|
||||
"mood": "world-weary resilience",
|
||||
"lighting": "ominous storm-light with deep contrasts",
|
||||
"style": "character-driven scenic portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Mother and cub curled together under hot midday sun on bare earth",
|
||||
"sceneVariants": [
|
||||
"Mother and cub curled together under hot midday sun on bare earth",
|
||||
"Heat shimmer rising from ground",
|
||||
"Tiny paws twined with larger ones",
|
||||
"Sparse shade from a low bush",
|
||||
"A fly bobbing in the bright air"
|
||||
],
|
||||
"actions": [
|
||||
"Nuzzling and gentle grooming",
|
||||
"Cubs sleep-twitching with dreams of play",
|
||||
"Slow tail wraps as reassurance",
|
||||
"An adult ear flicking at distant noise"
|
||||
],
|
||||
"camera": "Tight intimate shot with shallow depth of field",
|
||||
"accents": [
|
||||
"bright speculars on wet noses",
|
||||
"warm tactile detail on fur fibers"
|
||||
],
|
||||
"mood": "contented intimacy",
|
||||
"lighting": "harsh midday light softened by slight haze",
|
||||
"style": "micro-nature portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Pride silhouetted on a ridge at sunrise with birds taking flight",
|
||||
"sceneVariants": [
|
||||
"Pride silhouetted on a ridge at sunrise with birds taking flight",
|
||||
"Vivid gradient from purple to orange behind them",
|
||||
"Sharp ridge line and clean silhouettes",
|
||||
"Faint dew on lower grasses",
|
||||
"Flocks scattering as the day begins"
|
||||
],
|
||||
"actions": [
|
||||
"Slow-lifted heads following a distant noise",
|
||||
"Cubs tumbling into playful positions",
|
||||
"A stretching adult announcing the new day",
|
||||
"Wingbeats of startled birds punctuating the frame"
|
||||
],
|
||||
"camera": "Wide panoramic sweep with gentle push-in for dramatic reveal",
|
||||
"accents": [
|
||||
"backlit rim highlighting mane edges",
|
||||
"feathered light scattering through bird wings"
|
||||
],
|
||||
"mood": "graceful renewal",
|
||||
"lighting": "clean sunrise backlight",
|
||||
"style": "majestic establishing shot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Lone female leading her cubs across cracked dry plains at sunset",
|
||||
"sceneVariants": [
|
||||
"Lone female leading her cubs across cracked dry plains at sunset",
|
||||
"Heat-scorched earth with sparse herb growth",
|
||||
"Stiff silhouettes of acacias",
|
||||
"A rescue-like sense of movement toward water",
|
||||
"Sun sinking behind distant hills"
|
||||
],
|
||||
"actions": [
|
||||
"Determined stride with cubs keeping close",
|
||||
"Occasional lowered body to shield young from wind",
|
||||
"Alert head-turns to distant calls",
|
||||
"Small pauses to encourage lagging cubs"
|
||||
],
|
||||
"camera": "Tracking shot from behind with gradual close-up on leader",
|
||||
"accents": [
|
||||
"long warm rim light and dust halos",
|
||||
"high texture detail on cracked earth"
|
||||
],
|
||||
"mood": "protective perseverance",
|
||||
"lighting": "golden hour warmth",
|
||||
"style": "cinematic journey moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Subadult males sparring at night near a watering hole",
|
||||
"sceneVariants": [
|
||||
"Subadult males sparring at night near a watering hole",
|
||||
"Moonlight glinting on ripples",
|
||||
"Brief flashes of teeth and claws",
|
||||
"Reflected silhouettes on the water",
|
||||
"Nearby reeds whispering in breeze"
|
||||
],
|
||||
"actions": [
|
||||
"Playful but testing pushes and light strikes",
|
||||
"Water splashing from sudden skids",
|
||||
"Short hard panting as energy spikes",
|
||||
"One yielding and then re-engaging"
|
||||
],
|
||||
"camera": "Medium handheld with occasional slow-mo on impact moments",
|
||||
"accents": [
|
||||
"cool moonlit sheen on wet fur",
|
||||
"sparkling water micro-highlights"
|
||||
],
|
||||
"mood": "rambunctious trial",
|
||||
"lighting": "neutral moonlit night with subtle cool tones",
|
||||
"style": "energetic behavioral study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "A pride feeding at dusk while vultures circle above",
|
||||
"sceneVariants": [
|
||||
"A pride feeding at dusk while vultures circle above",
|
||||
"Gored carcass and torn grasses",
|
||||
"Grease-streaked fur and crimson accents",
|
||||
"Vultures landing on distant bones",
|
||||
"Darkening sky lending urgency"
|
||||
],
|
||||
"actions": [
|
||||
"Torn meat being shared with assertive tugs",
|
||||
"Pushing and shoving to maintain position",
|
||||
"Low soft growls establishing hierarchy",
|
||||
"Vultures swooping in when the lions are distracted"
|
||||
],
|
||||
"camera": "Close handheld, gritty texture and selective focus on feeding action",
|
||||
"accents": [
|
||||
"wet speculars on meat and fur",
|
||||
"warm dusk rim light catching blood highlights"
|
||||
],
|
||||
"mood": "raw survival",
|
||||
"lighting": "muted dusk with warm highlights on wet surfaces",
|
||||
"style": "visceral documentary sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Cubs learning to climb a low termite mound under gentle morning light",
|
||||
"sceneVariants": [
|
||||
"Cubs learning to climb a low termite mound under gentle morning light",
|
||||
"Small awkward climbs and slips",
|
||||
"Close-up on tiny claws gripping mud",
|
||||
"Distant adults dozing under trees",
|
||||
"Fresh morning dew on surrounding grass"
|
||||
],
|
||||
"actions": [
|
||||
"Repeated attempts and triumphant little leaps",
|
||||
"Mother encouraging with soft nuzzles",
|
||||
"A sibling acting as mock prey",
|
||||
"Triumphant chirrup upon success"
|
||||
],
|
||||
"camera": "Low angle close-up dolly with playful pacing",
|
||||
"accents": [
|
||||
"sparkly dew micro-highlights",
|
||||
"gentle warm fill light on tiny faces"
|
||||
],
|
||||
"mood": "hopeful playfulness",
|
||||
"lighting": "soft cool morning to warm fill",
|
||||
"style": "adorable educational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Pride retreating into the shelter of trees as a thunderstorm approaches",
|
||||
"sceneVariants": [
|
||||
"Pride retreating into the shelter of trees as a thunderstorm approaches",
|
||||
"Dark clouds rolling with sudden gusts",
|
||||
"Fine rains starting to bead on fur",
|
||||
"Wind bending grasses and branches",
|
||||
"Flash of lightning on distant hills"
|
||||
],
|
||||
"actions": [
|
||||
"Hasty but orderly movement to shelter",
|
||||
"Cubs huddling closer to adults",
|
||||
"Anxious scanning of the sky",
|
||||
"A sudden run as rain intensity increases"
|
||||
],
|
||||
"camera": "Tracking lateral crane with occasional tight cuts during the run",
|
||||
"accents": [
|
||||
"wet skin sheen and rain bead highlights",
|
||||
"dramatic high-contrast cloud silhouettes"
|
||||
],
|
||||
"mood": "urgent concealment",
|
||||
"lighting": "incoming storm light with strong contrasts",
|
||||
"style": "dynamic weather-driven sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Old lioness resting on a landmark rock at dawn, reminiscing the pride's former range",
|
||||
"sceneVariants": [
|
||||
"Old lioness resting on a landmark rock at dawn, reminiscing the pride's former range",
|
||||
"Soft dawn pastels and distant smoky lowlands",
|
||||
"Deep-set eyes and gentle breathing",
|
||||
"Slight tremor in paws",
|
||||
"A wind carrying distant herd calls"
|
||||
],
|
||||
"actions": [
|
||||
"Slow grooming of a faded flank",
|
||||
"A long measured exhale and head lowering",
|
||||
"Watching cubs frolic in the mid-distance",
|
||||
"A small approving purr as they succeed"
|
||||
],
|
||||
"camera": "Slow, reverent dolly in to close portrait with shallow depth",
|
||||
"accents": [
|
||||
"warm rim highlight on ear tips",
|
||||
"fine detail on whisker stubble"
|
||||
],
|
||||
"mood": "nostalgic serenity",
|
||||
"lighting": "soft dawn with pastel palette",
|
||||
"style": "poetic character study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Lions",
|
||||
"scene": "Pride basking in moonlit calm after a successful hunt",
|
||||
"sceneVariants": [
|
||||
"Pride basking in moonlit calm after a successful hunt",
|
||||
"Settled bodies digesting under a pale moon",
|
||||
"Stars sharp in clear sky",
|
||||
"Soft ripples on nearby water reflecting moon",
|
||||
"Gentle breathing and distant insect chorus"
|
||||
],
|
||||
"actions": [
|
||||
"Slow licking at tidy edges of torn meat",
|
||||
"Cubs dozing against adults",
|
||||
"An adult cleaning a cub's face",
|
||||
"Occasional low contented rumble"
|
||||
],
|
||||
"camera": "Wide static night composition with gentle low push-ins",
|
||||
"accents": [
|
||||
"cool moonlit edge highlights",
|
||||
"soft speculars on wet fur from prey juices"
|
||||
],
|
||||
"mood": "satisfied calm",
|
||||
"lighting": "quiet moonlit night with cool-blue palette",
|
||||
"style": "calm nocturnal tableau"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_owls.json
Normal file
427
src/data/animals_and_wildlife_owls.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Barn owl gliding silently over moonlit farmland",
|
||||
"sceneVariants": [
|
||||
"Barn owl gliding silently over moonlit farmland",
|
||||
"Pale moon casting silver strips on hedgerows",
|
||||
"Crop rows blurred beneath soft light",
|
||||
"Scattered farm lights far below",
|
||||
"A faint mist hugging low ground"
|
||||
],
|
||||
"actions": [
|
||||
"Silent wing-beat glide scanning for movement",
|
||||
"Sudden vertical stoop to strike unseen prey",
|
||||
"Hovering briefly then resuming glide",
|
||||
"Soft talon clutch lifting a small rodent"
|
||||
],
|
||||
"camera": "Low-angle stabilized tracking with occasional close eye catches",
|
||||
"accents": [
|
||||
"cool moon rim on facial disc",
|
||||
"tiny specular highlights on wet feathers"
|
||||
],
|
||||
"mood": "nocturnal hush",
|
||||
"lighting": "cool moonlit night with slight mist diffusion",
|
||||
"style": "noir wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Great horned pair nesting in a gnarled oak at dusk",
|
||||
"sceneVariants": [
|
||||
"Great horned pair nesting in a gnarled oak at dusk",
|
||||
"Thick twisted branches forming a cathedral-like nest",
|
||||
"Chick peeking between parental feathers",
|
||||
"Warm dusk palette behind bare branches",
|
||||
"Falling leaves stirred by a gentle breeze"
|
||||
],
|
||||
"actions": [
|
||||
"Parent arriving with prey and bill-feeding the chick",
|
||||
"Mutual preening between adults",
|
||||
"Chick stretching wings and calling softly",
|
||||
"Protective guard posture scanning the perimeter"
|
||||
],
|
||||
"camera": "Tight mid-shot from a neighboring branch with shallow DOF",
|
||||
"accents": [
|
||||
"warm rim from setting sun on ear tufts",
|
||||
"high micro-detail on feather barbs"
|
||||
],
|
||||
"mood": "domestic solemnity",
|
||||
"lighting": "warm dusk backlight with soft fill",
|
||||
"style": "intimate nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Snowy owl perched on a wind-swept tundra post at pale dawn",
|
||||
"sceneVariants": [
|
||||
"Snowy owl perched on a wind-swept tundra post at pale dawn",
|
||||
"Wide frozen plain and faint pink sky",
|
||||
"Snow scoured ridges and distant lichen patches",
|
||||
"Low sun reflecting off ice crystals",
|
||||
"Single set of tracks trailing away"
|
||||
],
|
||||
"actions": [
|
||||
"Slow scanning with head swivel",
|
||||
"Subtle tuck and puff to conserve heat",
|
||||
"Sudden plunge to snatch a lemming under snow",
|
||||
"Return to post to feed quietly"
|
||||
],
|
||||
"camera": "Telephoto long lens emphasizing isolation with tight portraits",
|
||||
"accents": [
|
||||
"cold crystalline rim light",
|
||||
"crisp micro-highlights on frozen lashes"
|
||||
],
|
||||
"mood": "stoic isolation",
|
||||
"lighting": "cool dawn with gentle pastel tones",
|
||||
"style": "poetic polar portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Tawny owl slipping through suburban backyards on a warm summer night",
|
||||
"sceneVariants": [
|
||||
"Tawny owl slipping through suburban backyards on a warm summer night",
|
||||
"Fences and garden lights casting pools of glow",
|
||||
"Scent of cut grass lingering",
|
||||
"Cats stretching on doorsteps unaware",
|
||||
"Soft hum of distant traffic"
|
||||
],
|
||||
"actions": [
|
||||
"Low silent flight between hedges",
|
||||
"Perch-drop to snatch a vole near a shed",
|
||||
"Brief scanning pause on a lamppost",
|
||||
"Wing-shake and return to deeper shadow"
|
||||
],
|
||||
"camera": "Handheld low-light tracking with quick close-in strikes",
|
||||
"accents": [
|
||||
"warm lamplight rim on feathers",
|
||||
"moist speculars on beak and talons"
|
||||
],
|
||||
"mood": "urban nocturnal intrigue",
|
||||
"lighting": "mixed artificial warm pools and cool night sky",
|
||||
"style": "nocturnal urban slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Barn interior at midday: owl roosting in a sunbeam through a loft crack",
|
||||
"sceneVariants": [
|
||||
"Barn interior at midday: owl roosting in a sunbeam through a loft crack",
|
||||
"Dust motes glittering in the shaft of light",
|
||||
"Weathered wooden beams and hay bales",
|
||||
"Quiet warmth in the sheltered interior",
|
||||
"Small spiderwebs catching sun"
|
||||
],
|
||||
"actions": [
|
||||
"Slow blink and slight preen in a sun patch",
|
||||
"Stretching folded wings and settling back",
|
||||
"Occasional head cocks as a barn sound echoes",
|
||||
"Dropping tiny pellets quietly"
|
||||
],
|
||||
"camera": "Intimate close with shallow DOF and textured wood inserts",
|
||||
"accents": [
|
||||
"warm volumetric light on plumage edges",
|
||||
"fine dust micro-highlights"
|
||||
],
|
||||
"mood": "tranquil repose",
|
||||
"lighting": "strong warm midday shaft of light in dark interior",
|
||||
"style": "soft portrait study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Rain-lashed marsh where short-eared owls hunt at stormy twilight",
|
||||
"sceneVariants": [
|
||||
"Rain-lashed marsh where short-eared owls hunt at stormy twilight",
|
||||
"Wet reedlines bowing under rain",
|
||||
"Low contrast light and rolling clouds",
|
||||
"Puddles reflecting moving shadow",
|
||||
"Distant reed-roots clinging to mud"
|
||||
],
|
||||
"actions": [
|
||||
"Low quartering flight close to water surface",
|
||||
"Abrupt stoops into reed-clumps",
|
||||
"Feathers beaded with rain after strikes",
|
||||
"Brief, rasping calls audible against rain"
|
||||
],
|
||||
"camera": "Handheld with motion blur accents for wind and rain",
|
||||
"accents": [
|
||||
"wet specular beads on feathers",
|
||||
"splatter micro-highlights frozen in frame"
|
||||
],
|
||||
"mood": "driven persistence",
|
||||
"lighting": "muted stormy twilight with cool tones",
|
||||
"style": "tense weather-driven vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Forest cathedral at blue hour where a barred owl calls from ancient trunk",
|
||||
"sceneVariants": [
|
||||
"Forest cathedral at blue hour where a barred owl calls from ancient trunk",
|
||||
"Tall straight trunks forming a vaulted canopy",
|
||||
"Blue ambient light filtering through leaves",
|
||||
"Soft moss carpet and damp humus",
|
||||
"Distant echoing owl reciprocations"
|
||||
],
|
||||
"actions": [
|
||||
"Long plaintive hoot resonating through trunks",
|
||||
"Head-tilt and repeated call exchange",
|
||||
"Subtle wing readjust as a breeze passes",
|
||||
"Perch-shift to a higher vantage"
|
||||
],
|
||||
"camera": "Static wide with occasional tight audio-synced closeups",
|
||||
"accents": [
|
||||
"cool blue rim on facial discs",
|
||||
"moody micro-highlights on moss textures"
|
||||
],
|
||||
"mood": "ancient echo",
|
||||
"lighting": "soft blue-hour dusk with deep indigo shadows",
|
||||
"style": "lyrical forest sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Barn owl chick huddled as storm rages outside at night",
|
||||
"sceneVariants": [
|
||||
"Barn owl chick huddled as storm rages outside at night",
|
||||
"Interior nest hollow warmed by down",
|
||||
"Raindrum on tin roof and wind whistles",
|
||||
"Small peeps and soft comfort rustles",
|
||||
"A parent checking at intervals"
|
||||
],
|
||||
"actions": [
|
||||
"Chick shivering then nestling closer to sibling",
|
||||
"Parent feeding small regurgitated morsel",
|
||||
"Murmured preening and quiet reassurance",
|
||||
"A lullaby-like rhythm of sheltering body warmth"
|
||||
],
|
||||
"camera": "Tight warm handheld with macro texture inserts",
|
||||
"accents": [
|
||||
"soft warm interior fill against cold exterior",
|
||||
"tiny wet-down micro-highlights"
|
||||
],
|
||||
"mood": "protected vulnerability",
|
||||
"lighting": "low warm interior light in a stormy night",
|
||||
"style": "tender nocturnal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Urban park at dawn where owlets practice short flights between lamp posts",
|
||||
"sceneVariants": [
|
||||
"Urban park at dawn where owlets practice short flights between lamp posts",
|
||||
"Dewed grass and empty jogging paths",
|
||||
"Soft city glow on horizon",
|
||||
"Bark chips near play area",
|
||||
"Benches and wet leaves"
|
||||
],
|
||||
"actions": [
|
||||
"Short wing-flaps and clumsy hops",
|
||||
"Adult guidance calls and gentle nudges",
|
||||
"Landing into mild clumsy brushes against bark",
|
||||
"Tiring and immediate plump nap"
|
||||
],
|
||||
"camera": "Low-angle park POV with playful pacing",
|
||||
"accents": [
|
||||
"warm dawn specular on down",
|
||||
"soft bokeh from distant streetlights"
|
||||
],
|
||||
"mood": "playful learning",
|
||||
"lighting": "soft cool dawn with warm urban hints",
|
||||
"style": "gentle urban nature slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Vast moorland night where a ghostly barn owl glows under phosphorescent insects",
|
||||
"sceneVariants": [
|
||||
"Vast moorland night where a ghostly barn owl glows under phosphorescent insects",
|
||||
"Sparse heather and low stone walls",
|
||||
"A sky full of slow-moving stars",
|
||||
"Phosphorescent micro-lights drifting in air",
|
||||
"A distant lighthouse beam sweeping"
|
||||
],
|
||||
"actions": [
|
||||
"Ethereal floating flight with insect halos",
|
||||
"Delicate stoops that send a small glow trail",
|
||||
"Silent return to a hidden crevice",
|
||||
"Momentary perched silhouette watching sky"
|
||||
],
|
||||
"camera": "Stabilized low-light tracking blending soft-glow bokeh",
|
||||
"accents": [
|
||||
"cool firefly-like point highlights around wings",
|
||||
"soft luminous edges on down"
|
||||
],
|
||||
"mood": "dreamlike mystery",
|
||||
"lighting": "very low with tiny warm point accents",
|
||||
"style": "ethereal nocturnal art piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Edge of woodland at mid-morning where an owl inspects a freshly ploughed field",
|
||||
"sceneVariants": [
|
||||
"Edge of woodland at mid-morning where an owl inspects a freshly ploughed field",
|
||||
"Fresh turned soil and tractor furrows",
|
||||
"Small mammals exposed along ridges",
|
||||
"Warm insect hum and skylark song",
|
||||
"A distant hedgerow shifting"
|
||||
],
|
||||
"actions": [
|
||||
"Perch-watch rhythm then sudden drop to ground",
|
||||
"Quick ground-run pounce to capture a mole",
|
||||
"Return to perch to handle prey",
|
||||
"Short preen before resuming watch"
|
||||
],
|
||||
"camera": "Medium telephoto from hedgerow with close impact inserts",
|
||||
"accents": [
|
||||
"warm sun rim on facial disc",
|
||||
"rich micro-texture on soil and feathers"
|
||||
],
|
||||
"mood": "productive midday hunt",
|
||||
"lighting": "bright morning sun with warm tonal range",
|
||||
"style": "documentary field snapshot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Ancient ruins at twilight where owls roost in crumbling archways",
|
||||
"sceneVariants": [
|
||||
"Ancient ruins at twilight where owls roost in crumbling archways",
|
||||
"Moss-covered stones and ivy drape",
|
||||
"Soft lavender sky behind ruins",
|
||||
"A solitary owl peeking from a hollow",
|
||||
"Bats occasionally flitting by"
|
||||
],
|
||||
"actions": [
|
||||
"Silent perching and occasional head swivels",
|
||||
"Short flights between arch nooks",
|
||||
"Group settling into roost as dusk falls",
|
||||
"Soft communications between roosting individuals"
|
||||
],
|
||||
"camera": "Moody static with texture closeups and gentle push-ins",
|
||||
"accents": [
|
||||
"soft twilight rim on stone and feathers",
|
||||
"detailed moss micro-highlights"
|
||||
],
|
||||
"mood": "timeless stillness",
|
||||
"lighting": "gentle twilight with cool-warm balance",
|
||||
"style": "poetic ruin tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Desert night: short-eared owl hunting over arid flats beneath a bright starfield",
|
||||
"sceneVariants": [
|
||||
"Desert night: short-eared owl hunting over arid flats beneath a bright starfield",
|
||||
"Scattered scrub and baked earth",
|
||||
"Coyote calls occasionally puncturing silence",
|
||||
"Heat-sunken horizon and a brilliant milky way",
|
||||
"Wind-shaped sand ripples"
|
||||
],
|
||||
"actions": [
|
||||
"Low search-flight hugging contours",
|
||||
"Knife-like stoops into cracked soil",
|
||||
"A brief role in collaborative nocturnal ecology",
|
||||
"Retreat to a dune-top perch"
|
||||
],
|
||||
"camera": "Wide low-light with starfield and close hunt inserts",
|
||||
"accents": [
|
||||
"cool star-lit rim on crown feathers",
|
||||
"tiny specular on insects disturbed"
|
||||
],
|
||||
"mood": "subtle desert vigilance",
|
||||
"lighting": "clear moonless starry night",
|
||||
"style": "silent nocturnal portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Ancient willow bank at sunrise where owls exchange subtle morning rituals",
|
||||
"sceneVariants": [
|
||||
"Ancient willow bank at sunrise where owls exchange subtle morning rituals",
|
||||
"Soft willow curtains and glistening dew",
|
||||
"Low mist rolling off the river",
|
||||
"Warm pastel sky illuminating branches",
|
||||
"Small fish flicking in shallow water"
|
||||
],
|
||||
"actions": [
|
||||
"Mutual nuzzle and bill-tuck greeting",
|
||||
"Coordinated departure into morning hunt",
|
||||
"Subtle preen exchanges between pair",
|
||||
"Short communal scan before dispersal"
|
||||
],
|
||||
"camera": "Tender close handheld with gentle dolly outs",
|
||||
"accents": [
|
||||
"warm early sun volumetric rim",
|
||||
"dewy micro-highlights on fine feathers"
|
||||
],
|
||||
"mood": "quiet morning intimacy",
|
||||
"lighting": "soft warm sunrise with mist diffusion",
|
||||
"style": "gentle natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Pole-top at night where a barn owl perches above a quiet country lane",
|
||||
"sceneVariants": [
|
||||
"Pole-top at night where a barn owl perches above a quiet country lane",
|
||||
"Single lamplight creating an island of warmth",
|
||||
"Silhouetted hedgerows and sleeping cottages",
|
||||
"Occasional passing car like a slow comet",
|
||||
"Hazy starfield above"
|
||||
],
|
||||
"actions": [
|
||||
"Patient stillness scanning the road verges",
|
||||
"Sudden stoop to snatch road-side prey",
|
||||
"Return to pole to swallow and preen",
|
||||
"Occasional watchful head-turn at passing traffic"
|
||||
],
|
||||
"camera": "Street-level telephoto with urban-rural light mixing",
|
||||
"accents": [
|
||||
"warm lamplight rim on downy chest",
|
||||
"tiny reflective micro-highlights from passing car"
|
||||
],
|
||||
"mood": "lonely sentinel",
|
||||
"lighting": "mixed warm lamplight and cool night sky",
|
||||
"style": "urban-rural nocturne"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Old-growth rainforest canopy where a mottled owl unwraps dawn with soft calls",
|
||||
"sceneVariants": [
|
||||
"Old-growth rainforest canopy where a mottled owl unwraps dawn with soft calls",
|
||||
"Thick vines and dripping epiphytes",
|
||||
"Tongue of early light filtering through leaves",
|
||||
"Humidity curling in slow ribbons",
|
||||
"A chorus of waking forest life"
|
||||
],
|
||||
"actions": [
|
||||
"Soft hoots initiating an audible dawn chorus",
|
||||
"Slow preen of damp plumage",
|
||||
"A deliberate glide to a lower branch as prey wakes",
|
||||
"Short, efficient strikes into understory"
|
||||
],
|
||||
"camera": "Sub-canopy stabilized with close humid texture inserts",
|
||||
"accents": [
|
||||
"soft green volumetric rim",
|
||||
"moist micro-highlights on feather edges"
|
||||
],
|
||||
"mood": "humid renewal",
|
||||
"lighting": "soft filtered dawn through dense canopy",
|
||||
"style": "exotic forest slice"
|
||||
},
|
||||
{
|
||||
"subGenre": "Owls",
|
||||
"scene": "Abandoned stone mill at twilight with owls using the rafters as a social post",
|
||||
"sceneVariants": [
|
||||
"Abandoned stone mill at twilight with owls using the rafters as a social post",
|
||||
"Mossed stone, sagging roof timbers and fluttering bats",
|
||||
"Warmed interior glow from a single lantern left",
|
||||
"Owls lined like sentinels on beams",
|
||||
"Creaking wood and falling leaf confetti"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet settling into roost positions",
|
||||
"A soft exchange of beak-to-beak touches",
|
||||
"Collective preening in sequence",
|
||||
"An occasional alarm flutter and quick reposition"
|
||||
],
|
||||
"camera": "Moody interior static with texture closeups and deep shadows",
|
||||
"accents": [
|
||||
"warm lantern rim inside contrasting cool twilight",
|
||||
"detailed feather micro-highlights in low light"
|
||||
],
|
||||
"mood": "cozy communal dusk",
|
||||
"lighting": "soft twilight with warm interior accents",
|
||||
"style": "nocturnal architectural tableau"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_pandas.json
Normal file
427
src/data/animals_and_wildlife_pandas.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Giant panda mother nursing a tiny cub in a misty bamboo thicket at dawn",
|
||||
"sceneVariants": [
|
||||
"Giant panda mother nursing a tiny cub in a misty bamboo thicket at dawn",
|
||||
"Soft vapor curling between dense bamboo stalks",
|
||||
"Close maternal nuzzle beside a nest of leaves",
|
||||
"Pale dawn light filtering through green",
|
||||
"A handful of dew-dotted leaves nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Tender nursing and gentle licking of the cub",
|
||||
"Mother shifting to let the cub latch comfortably",
|
||||
"Cub weakly squirming and seeking warmth",
|
||||
"Occasional soft panda vocalization"
|
||||
],
|
||||
"camera": "Intimate stationary close with shallow depth and gentle push-ins",
|
||||
"accents": [
|
||||
"soft volumetric dawn shafts through bamboo",
|
||||
"dewy micro-highlights on fur and whiskers"
|
||||
],
|
||||
"mood": "protective tenderness",
|
||||
"lighting": "soft pre-dawn warm-cool balance",
|
||||
"style": "emotive wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Pandas foraging and munching bamboo in a sunlit clearing",
|
||||
"sceneVariants": [
|
||||
"Pandas foraging and munching bamboo in a sunlit clearing",
|
||||
"Scattered bamboo leaves and broken stems on the ground",
|
||||
"Two adults sitting back-to-back chewing",
|
||||
"A juvenile awkwardly holding a thick stalk",
|
||||
"Birdsong faint in the canopy"
|
||||
],
|
||||
"actions": [
|
||||
"Slow deliberate chomping and peeling of bamboo",
|
||||
"Occasional playful swat between juveniles",
|
||||
"Gentle scratching against a trunk",
|
||||
"Lazily rolling to change posture"
|
||||
],
|
||||
"camera": "Medium handheld with close cutaways on chewing hands",
|
||||
"accents": [
|
||||
"warm rim on leaf edges",
|
||||
"high micro-detail on bamboo fiber and tooth marks"
|
||||
],
|
||||
"mood": "contented routine",
|
||||
"lighting": "bright morning sun through canopy breaks",
|
||||
"style": "tender documentary clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Snowfall on a mountain panda reserve with a black-and-white body silhouette",
|
||||
"sceneVariants": [
|
||||
"Snowfall on a mountain panda reserve with a black-and-white body silhouette",
|
||||
"Soft white snow piling on fur and bamboo",
|
||||
"Footprints trailing across a shallow drifts",
|
||||
"Granite outcrops dusted in powder",
|
||||
"Cloud bank rolling over ridgeline"
|
||||
],
|
||||
"actions": [
|
||||
"Slow deliberate walking through fresh snow",
|
||||
"Shaking snow off shoulders and leaves",
|
||||
"Occasional playful flopping into the powder",
|
||||
"Sniffing at frozen bamboo tips"
|
||||
],
|
||||
"camera": "Wide panoramic with slow dolly-ins to capture texture contrast",
|
||||
"accents": [
|
||||
"cold rim-light on fur edges",
|
||||
"crisp micro-highlights on snow crystals"
|
||||
],
|
||||
"mood": "quiet resilience",
|
||||
"lighting": "soft diffuse snowy daylight",
|
||||
"style": "poetic nature portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Young panda cub tumbling in an enclosure at a conservation center under warm afternoon light",
|
||||
"sceneVariants": [
|
||||
"Young panda cub tumbling in an enclosure at a conservation center under warm afternoon light",
|
||||
"Soft play structures and climbing platforms",
|
||||
"Handlers observing at a respectful distance",
|
||||
"Foam mats and scattered toys",
|
||||
"A small crowd behind glass"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic bumbling tumbles and mock-chase",
|
||||
"Clumsy climbs and quick slides down ramps",
|
||||
"Short rests punctuated with playful squeaks",
|
||||
"Curious inspection of a bright ball"
|
||||
],
|
||||
"camera": "Handheld playful POV with low-angle inserts on small paws",
|
||||
"accents": [
|
||||
"warm softbox fill on fur",
|
||||
"bright micro-highlights on toy surfaces"
|
||||
],
|
||||
"mood": "joyful curiosity",
|
||||
"lighting": "warm controlled afternoon",
|
||||
"style": "heartwarming captive-care vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Misty ridge-line where a lone panda surveys the valley before descending",
|
||||
"sceneVariants": [
|
||||
"Misty ridge-line where a lone panda surveys the valley before descending",
|
||||
"Layers of green fading to blue in distance",
|
||||
"Thin trail winding into bamboo stands below",
|
||||
"A single silhouette framed against low clouds",
|
||||
"Wind stirring loose leaves"
|
||||
],
|
||||
"actions": [
|
||||
"Slow contemplative head-turns surveying below",
|
||||
"Measured descent along a faint path",
|
||||
"Occasional pause to feed on tender shoots",
|
||||
"Scratching a flank against a mossy rock"
|
||||
],
|
||||
"camera": "Aerial to ground transition revealing scale then tracking descent",
|
||||
"accents": [
|
||||
"soft rim mist light on profile",
|
||||
"textured micro-highlights on moss and fur"
|
||||
],
|
||||
"mood": "solitary contemplation",
|
||||
"lighting": "muted ridge diffused light",
|
||||
"style": "cinematic solitary study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Nighttime bamboo grove where a panda moves through silver moonlight",
|
||||
"sceneVariants": [
|
||||
"Nighttime bamboo grove where a panda moves through silver moonlight",
|
||||
"Moonlight glancing off tall stalks",
|
||||
"Soft rustle and insect chorus",
|
||||
"Panda silhouette moving between trunks",
|
||||
"Star-sprinkled sky visible through gaps"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet foraging using tactile senses",
|
||||
"Pausing to listen and sniff the air",
|
||||
"Slow pawing at a bamboo clump to free a shoot",
|
||||
"Settling down for brief rest under moon"
|
||||
],
|
||||
"camera": "Low-light stabilized tracking with gentle moonlit close-ups",
|
||||
"accents": [
|
||||
"cool moon rim on fur edges",
|
||||
"subtle speculars on bamboo sheens"
|
||||
],
|
||||
"mood": "nocturnal calm",
|
||||
"lighting": "soft silver moonlight",
|
||||
"style": "mystical nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Panda social play—siblings wrestling and rolling in a sun-dappled glade",
|
||||
"sceneVariants": [
|
||||
"Panda social play—siblings wrestling and rolling in a sun-dappled glade",
|
||||
"Entangled paws and playful nips",
|
||||
"Sun dapple patterned on black-and-white coats",
|
||||
"Leaves flying from their tussles",
|
||||
"Occasional peals of high-pitched play-calls"
|
||||
],
|
||||
"actions": [
|
||||
"Grappling and gentle swatting",
|
||||
"Sudden switch to tumbling and rolling",
|
||||
"Short rests breathing heavily then returning to play",
|
||||
"Mock charging and retreat"
|
||||
],
|
||||
"camera": "Kinetic handheld with close slow-motion on impact points",
|
||||
"accents": [
|
||||
"warm dapple rim on contours",
|
||||
"detailed micro-highlights on fur texture"
|
||||
],
|
||||
"mood": "playful exuberance",
|
||||
"lighting": "bright dappled forest light",
|
||||
"style": "energetic character piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Research station morning routine with keepers checking health and tagging microchips",
|
||||
"sceneVariants": [
|
||||
"Research station morning routine with keepers checking health and tagging microchips",
|
||||
"Clean clinical tents and careful instrumentation",
|
||||
"Panda being gently restrained on soft padding",
|
||||
"Subtle beeps from monitoring equipment",
|
||||
"Keepers in protective gloves and calm voices"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle medical checks and heart-rate listening",
|
||||
"Microchip scanning and weight logging",
|
||||
"Administering supplements or vitamins",
|
||||
"Calm soothing contact to keep animal relaxed"
|
||||
],
|
||||
"camera": "Documentary mid-shots with close detail inserts on hands and tools",
|
||||
"accents": [
|
||||
"soft clinical speculars",
|
||||
"detailed micro-highlights on instrumentation"
|
||||
],
|
||||
"mood": "professional care",
|
||||
"lighting": "soft controlled daylight",
|
||||
"style": "informative conservation vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Spring bamboo shoot emergence with hungry pandas lining a fresh sprout patch",
|
||||
"sceneVariants": [
|
||||
"Spring bamboo shoot emergence with hungry pandas lining a fresh sprout patch",
|
||||
"Tender bright-green shoot tips poking through leaf litter",
|
||||
"Pandas carefully selecting the youngest stalks",
|
||||
"A chorus of munching noises",
|
||||
"Bees and butterflies drawn to nearby flowers"
|
||||
],
|
||||
"actions": [
|
||||
"Selective plucking of tender shoots",
|
||||
"Peeling outer layers to reach soft core",
|
||||
"Short shared feeding spaces with subtle negotiation",
|
||||
"Brief sniffing to detect the freshest growth"
|
||||
],
|
||||
"camera": "Low naturalistic tracking with close macro on shoot and bite",
|
||||
"accents": [
|
||||
"fresh green rim on shoots",
|
||||
"detailed sap micro-highlights"
|
||||
],
|
||||
"mood": "single-minded appetite",
|
||||
"lighting": "fresh morning spring light",
|
||||
"style": "sensory feeding study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Autumn hillside where pandas roam among fall-colored understory",
|
||||
"sceneVariants": [
|
||||
"Autumn hillside where pandas roam among fall-colored understory",
|
||||
"Red and gold leaves contrasting black-and-white fur",
|
||||
"Crisp leaf carpet underfoot",
|
||||
"A cool breeze carrying leaf scent",
|
||||
"Clouds slanting a cool light across the slope"
|
||||
],
|
||||
"actions": [
|
||||
"Foraging stops punctuated by long chews",
|
||||
"Occasional slow climbs to better vantage",
|
||||
"Resting on a leaf-strewn log",
|
||||
"Rubbing their backs on rough bark"
|
||||
],
|
||||
"camera": "Wide color-rich grading with close texture inserts",
|
||||
"accents": [
|
||||
"warm autumn rim on fur",
|
||||
"leaf-sheen micro-highlights"
|
||||
],
|
||||
"mood": "seasonal warmth",
|
||||
"lighting": "soft autumn sunlight",
|
||||
"style": "color-driven nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Steep bamboo cliff where a sure-footed panda bridges narrow terraces",
|
||||
"sceneVariants": [
|
||||
"Steep bamboo cliff where a sure-footed panda bridges narrow terraces",
|
||||
"Vertical green walls and narrow ledges",
|
||||
"Tiny trickling streams between terraces",
|
||||
"Wind-blown leaves clinging to cliff face",
|
||||
"A precarious but practiced traverse"
|
||||
],
|
||||
"actions": [
|
||||
"Careful balancing along a narrow ledge",
|
||||
"Climbing with deliberate paw placements",
|
||||
"Snatching a shoot from an awkward angle",
|
||||
"Brief pause to look back over the route"
|
||||
],
|
||||
"camera": "Tight tracking with telephoto compression to emphasize scale",
|
||||
"accents": [
|
||||
"hard rim on edges showing scale",
|
||||
"detailed micro-highlights on rock and root contact"
|
||||
],
|
||||
"mood": "focused agility",
|
||||
"lighting": "clear crisp mountain daylight",
|
||||
"style": "adventurous nature segment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Close-up portrait: wet-furred panda shaking off rain droplets in a drizzle",
|
||||
"sceneVariants": [
|
||||
"Close-up portrait: wet-furred panda shaking off rain droplets in a drizzle",
|
||||
"Water beads caught mid-air from a headshake",
|
||||
"Droplets clinging to long lashes",
|
||||
"Glossy wet fur texture emphasis",
|
||||
"Soft blurred bamboo behind"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid head-shake sending droplets flying",
|
||||
"Closed-eye reflex blink as water clears",
|
||||
"Small shakes of front paws",
|
||||
"Settling back into grooming"
|
||||
],
|
||||
"camera": "Extreme close with high shutter speed and droplet freezes",
|
||||
"accents": [
|
||||
"sparkling water micro-highlights",
|
||||
"wet-fur specular detail"
|
||||
],
|
||||
"mood": "refreshing immediacy",
|
||||
"lighting": "soft overcast drizzle light",
|
||||
"style": "textural portrait study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Panda crossing a shallow creek stepping on stones in a spring melt",
|
||||
"sceneVariants": [
|
||||
"Panda crossing a shallow creek stepping on stones in a spring melt",
|
||||
"Clear chilly water and glints from the sun",
|
||||
"Mossy stepping-stones and small rapids",
|
||||
"A cautious measured traverse",
|
||||
"Ripples echoing each careful step"
|
||||
],
|
||||
"actions": [
|
||||
"Measured stone-to-stone stepping",
|
||||
"Testing balance with a brief pause",
|
||||
"Quick shake after leaving water",
|
||||
"A satisfied munch once across"
|
||||
],
|
||||
"camera": "Low-angle tracking from bank with close water-splash inserts",
|
||||
"accents": [
|
||||
"sparkling creek micro-highlights",
|
||||
"detailed wet-fur edge highlights"
|
||||
],
|
||||
"mood": "careful determination",
|
||||
"lighting": "bright crisp spring sun",
|
||||
"style": "refreshing passage vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Reintroduction day where a panda is opened from transport crate into a reserve pen",
|
||||
"sceneVariants": [
|
||||
"Reintroduction day where a panda is opened from transport crate into a reserve pen",
|
||||
"Handlers working calmly with ribbons and signage",
|
||||
"Veterinary checks and camera crews at respectful distance",
|
||||
"Temporary fencing and release ramp",
|
||||
"A flurry of controlled activity"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle crate door opening and initial sniffing out",
|
||||
"Handlers guiding with calm assurances and treats",
|
||||
"Slow first steps into unfamiliar ground",
|
||||
"Monitoring vitals during acclimation"
|
||||
],
|
||||
"camera": "Documentary mid-shot with reassuring close cutaways and vet inserts",
|
||||
"accents": [
|
||||
"soft public-space speculars",
|
||||
"detailed micro-highlights on harness/tags"
|
||||
],
|
||||
"mood": "hopeful transition",
|
||||
"lighting": "neutral daylight for clarity",
|
||||
"style": "conservation milestone piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Mating season quiet display where a male marks territory at dusk",
|
||||
"sceneVariants": [
|
||||
"Mating season quiet display where a male marks territory at dusk",
|
||||
"Subtle scent-marking trees and scraped leaf ground",
|
||||
"Low calls in the bamboo corridors",
|
||||
"A lone figure patrolling narrow tracks",
|
||||
"Scent-bearing twigs scattered"
|
||||
],
|
||||
"actions": [
|
||||
"Scent marking with cheek rubbing and tree scratches",
|
||||
"Subtle low-calling that echoes in the glade",
|
||||
"Short patrol circuits and pauses to listen",
|
||||
"Occasional scent-following toward a faint reply"
|
||||
],
|
||||
"camera": "Stealthy close with intimate audio emphasis",
|
||||
"accents": [
|
||||
"twilight rim on whisker contours",
|
||||
"detailed bark micro-highlights"
|
||||
],
|
||||
"mood": "tentative expectation",
|
||||
"lighting": "soft twilight mixed tones",
|
||||
"style": "subtle behavioral study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Pandas visiting a human festival where bamboo decorations are paraded in a cultural exchange",
|
||||
"sceneVariants": [
|
||||
"Pandas visiting a human festival where bamboo decorations are paraded in a cultural exchange",
|
||||
"Colorful banners and playful craft displays",
|
||||
"Children in masks watching from a respectful distance",
|
||||
"Handlers presenting bamboo treats",
|
||||
"A fusion of cultural ceremony and animal presence"
|
||||
],
|
||||
"actions": [
|
||||
"Pandas sampling decorated bamboo pieces",
|
||||
"Handlers guiding safe interactions and education",
|
||||
"Audience offering polite applause",
|
||||
"Short demonstration of trained behaviors"
|
||||
],
|
||||
"camera": "Festive wide with close human-animal interaction inserts",
|
||||
"accents": [
|
||||
"warm cultural rim on faces",
|
||||
"textured micro-highlights on woven bamboo"
|
||||
],
|
||||
"mood": "celebratory education",
|
||||
"lighting": "bright festival daylight",
|
||||
"style": "cultural conservation outreach clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pandas",
|
||||
"scene": "Final calm: single panda resting atop a log at dusk while fireflies float",
|
||||
"sceneVariants": [
|
||||
"Final calm: single panda resting atop a log at dusk while fireflies float",
|
||||
"Soft purple-blue dusk gradient overhead",
|
||||
"Tiny points of bioluminescent insect light",
|
||||
"Slow breathing and settling posture",
|
||||
"Reeds and bamboo framing the tranquil scene"
|
||||
],
|
||||
"actions": [
|
||||
"Slow exhale and eyelid droop into rest",
|
||||
"Dreamy small paw twitches",
|
||||
"A final quiet chew then sleep",
|
||||
"Fireflies drifting in a slow orbit"
|
||||
],
|
||||
"camera": "Wide tranquil establishing then gentle close portrait",
|
||||
"accents": [
|
||||
"muted dusk rim on silhouette",
|
||||
"tiny firefly micro-highlights"
|
||||
],
|
||||
"mood": "contented closure",
|
||||
"lighting": "soft dusk with cool accents",
|
||||
"style": "gentle closing portrait"
|
||||
}
|
||||
]
|
||||
377
src/data/animals_and_wildlife_penguins.json
Normal file
377
src/data/animals_and_wildlife_penguins.json
Normal file
@ -0,0 +1,377 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Gentoo colony streaming across black pebble beach under bright Antarctic sun",
|
||||
"sceneVariants": [
|
||||
"Gentoo colony streaming across black pebble beach under bright Antarctic sun",
|
||||
"Hundreds shuffling between surf and nesting flats",
|
||||
"Shimmering blue sea behind a dark pebble foreground",
|
||||
"Scattered guano patches marking nest territories",
|
||||
"Distant ice floes drifting slowly"
|
||||
],
|
||||
"actions": [
|
||||
"Waddling in neat little processions toward water",
|
||||
"Hopping clumsily over small stones",
|
||||
"Head-bobbing communication between mates",
|
||||
"Rapid synchronized slides into the surf"
|
||||
],
|
||||
"camera": "Low beach-level tracking with gentle lateral pans to reveal colony scale",
|
||||
"accents": [
|
||||
"high midday specular on wet feathers",
|
||||
"crisp micro-detail on pebble textures"
|
||||
],
|
||||
"mood": "busy communal purpose",
|
||||
"lighting": "bright high-contrast Antarctic sun",
|
||||
"style": "documentary colony sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Adelie penguins under aurora-lit sky at midnight near a salt-shelf",
|
||||
"sceneVariants": [
|
||||
"Adelie penguins under aurora-lit sky at midnight near a salt-shelf",
|
||||
"Green and violet curtains overhead",
|
||||
"Black silhouettes on snowy rim",
|
||||
"Thin sea mist curling up from cracks",
|
||||
"A few stars peeking through the aurora"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet clustered huddling to conserve heat",
|
||||
"Occasional soft vocal exchange",
|
||||
"A sentinel stepping up to scan the horizon",
|
||||
"Slow deliberate flipper-warm adjustments"
|
||||
],
|
||||
"camera": "Wide stabilized shot with slow push-in to the nearest individuals",
|
||||
"accents": [
|
||||
"cold aurora rim light on beaks and flippers",
|
||||
"soft luminous micro-highlights on snow crystals"
|
||||
],
|
||||
"mood": "awe-filled stillness",
|
||||
"lighting": "cool night with auroral color accents",
|
||||
"style": "ethereal polar tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Chicks clamoring at a rock pool as adults dive and deliver krill at dawn",
|
||||
"sceneVariants": [
|
||||
"Chicks clamoring at a rock pool as adults dive and deliver krill at dawn",
|
||||
"Gentle smoky sunrise and glistening wet stones",
|
||||
"Tiny fluttering down and open beaks",
|
||||
"Adults bopping back and forth from sea",
|
||||
"A chorus of peeps filling the air"
|
||||
],
|
||||
"actions": [
|
||||
"Adults surfacing with krill-rich beaks",
|
||||
"Rapid regurgitation feeding into tiny mouths",
|
||||
"Chicks shoving gently for position",
|
||||
"Parental preen after feeding"
|
||||
],
|
||||
"camera": "Close handheld with macro inserts on beak-to-beak feeding",
|
||||
"accents": [
|
||||
"warm volumeric shafts glancing off wet plumage",
|
||||
"dewy micro-highlights on down"
|
||||
],
|
||||
"mood": "tender nourishment",
|
||||
"lighting": "soft dawn fill",
|
||||
"style": "intimate caregiving vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Emperor penguin huddle at the heart of a blizzard under near-whiteout conditions",
|
||||
"sceneVariants": [
|
||||
"Emperor penguin huddle at the heart of a blizzard under near-whiteout conditions",
|
||||
"Spinning snow and sharply reduced visibility",
|
||||
"Spiked ice cliffs half-obscured",
|
||||
"Huddled black-and-white blobs moving as one",
|
||||
"Howling wind audible in the scene"
|
||||
],
|
||||
"actions": [
|
||||
"Tightly rotated huddle maintaining warmth",
|
||||
"Collective shifting rhythm to share wind exposure",
|
||||
"Occasional stern vocal coordination",
|
||||
"Young tucked in safe crevices inside the group"
|
||||
],
|
||||
"camera": "Handheld stabilized with close textural shots and wide blizzard context",
|
||||
"accents": [
|
||||
"frost micro-highlights on beak tips",
|
||||
"soft rim from drifting snow backlight"
|
||||
],
|
||||
"mood": "stoic endurance",
|
||||
"lighting": "diffuse whiteout with cold color balance",
|
||||
"style": "gritty survival tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Rocky tide platform at midday where chinstraps preen and sun themselves",
|
||||
"sceneVariants": [
|
||||
"Rocky tide platform at midday where chinstraps preen and sun themselves",
|
||||
"Warm sun on black basalt and glittering pools",
|
||||
"Flapping and stretching individuals",
|
||||
"Tide hiss and distant calls",
|
||||
"Sparse seaweed and crab scuttling"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic preening and feather alignment",
|
||||
"Surfacing baths and rapid wing shakes",
|
||||
"Bickering head-tosses establishing peck-order",
|
||||
"Short naps with bill tucked"
|
||||
],
|
||||
"camera": "Medium telephoto with quick cutaways for action detail",
|
||||
"accents": [
|
||||
"hard sun rim on wet feathers",
|
||||
"water-spray micro-highlights"
|
||||
],
|
||||
"mood": "contented bustle",
|
||||
"lighting": "bright crisp midday",
|
||||
"style": "textured natural snapshot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Juvenile preening school on a sheltered inlet at sunset with pink sky",
|
||||
"sceneVariants": [
|
||||
"Juvenile preening school on a sheltered inlet at sunset with pink sky",
|
||||
"Soft pastel reflections on calm water",
|
||||
"Fledgling fluff falling as they preen",
|
||||
"Parents calling softly in the distance",
|
||||
"Small rock stacks providing perches"
|
||||
],
|
||||
"actions": [
|
||||
"Intense feather-maintenance sequences",
|
||||
"Playful nudges and mock-fights",
|
||||
"Slow coordinated stretches after feeding",
|
||||
"Settling in rows for dusk rest"
|
||||
],
|
||||
"camera": "Gentle dolly with macro preen inserts and warm grading",
|
||||
"accents": [
|
||||
"warm sunset rim on downy feathers",
|
||||
"gentle water micro-highlights"
|
||||
],
|
||||
"mood": "calm growth",
|
||||
"lighting": "golden hour with soft tones",
|
||||
"style": "warm nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Nighttime pack-ice edge with penguins porpoising under starlit sky",
|
||||
"sceneVariants": [
|
||||
"Nighttime pack-ice edge with penguins porpoising under starlit sky",
|
||||
"Sharp ice silhouettes and dark reflective water",
|
||||
"Stars bright above and a cold wind",
|
||||
"Small ripples glowing faintly",
|
||||
"Occasional flicker of headlight from a distant research ship"
|
||||
],
|
||||
"actions": [
|
||||
"Energetic porpoising in near-silent arcs",
|
||||
"Quick dives tracking krill patches",
|
||||
"Synchronous rolling movements near ice floes",
|
||||
"Brief inspected pops to check surroundings"
|
||||
],
|
||||
"camera": "Stabilized low-light tracking with reflective water inserts",
|
||||
"accents": [
|
||||
"cool star rim on wet backs",
|
||||
"tiny glints on water droplets"
|
||||
],
|
||||
"mood": "nocturnal momentum",
|
||||
"lighting": "very low moon and star-lit night",
|
||||
"style": "noir marine sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Rock-shelf competition as several penguins jockey for the best nest boulder",
|
||||
"sceneVariants": [
|
||||
"Rock-shelf competition as several penguins jockey for the best nest boulder",
|
||||
"Crowded ledges and close proximity",
|
||||
"Mutual staring down rituals",
|
||||
"Squawking background chorus",
|
||||
"Occasional elbow nudges"
|
||||
],
|
||||
"actions": [
|
||||
"Assertive peck-and-nudge disputes",
|
||||
"Leaping vaults to claim a spot",
|
||||
"Victory displays with head thrown back",
|
||||
"Lesser individuals conceding and moving away"
|
||||
],
|
||||
"camera": "Close handheld with fast reaction cuts to emphasize rivalry",
|
||||
"accents": [
|
||||
"sun-highlight on raised chests",
|
||||
"detailed pebble micro-highlights"
|
||||
],
|
||||
"mood": "competitive urgency",
|
||||
"lighting": "bright daylight with strong contrast",
|
||||
"style": "dramatic behavioral clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Ice-floe playground at midday where small groups toboggan down smooth ice",
|
||||
"sceneVariants": [
|
||||
"Ice-floe playground at midday where small groups toboggan down smooth ice",
|
||||
"Polished ice slabs glistening under sun",
|
||||
"Playful penguins launching into slide runs",
|
||||
"Distant cracking sounds of shifting floes",
|
||||
"Clear blue horizon"
|
||||
],
|
||||
"actions": [
|
||||
"Belly slides across ice with joyful posture",
|
||||
"Quick recoveries and repeat runs",
|
||||
"Group cheering vocalizations",
|
||||
"Occasional accidental tumbles and recoveries"
|
||||
],
|
||||
"camera": "Low wide tracking emphasizing motion and repeated patterns",
|
||||
"accents": [
|
||||
"sparkling ice micro-highlights",
|
||||
"bright rim on sliding bodies"
|
||||
],
|
||||
"mood": "playful exuberance",
|
||||
"lighting": "high, clear midday sun",
|
||||
"style": "joyful nature short"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Storm-swept beach where a lone penguin returns from sea carrying a full belly",
|
||||
"sceneVariants": [
|
||||
"Storm-swept beach where a lone penguin returns from sea carrying a full belly",
|
||||
"Dark clouds and whipping surf",
|
||||
"Scattered drift and seaweed",
|
||||
"Solitary figure trudging toward nesting ground",
|
||||
"A brief pocket of calmer water"
|
||||
],
|
||||
"actions": [
|
||||
"Heavy purposeful waddle against wind",
|
||||
"Shaking out water and small feeding pauses",
|
||||
"Checking the nest area for intruders",
|
||||
"A final rapid sprint to deliver food"
|
||||
],
|
||||
"camera": "Medium handheld with atmospheric storm inserts",
|
||||
"accents": [
|
||||
"wet-spray speculars on feathers",
|
||||
"dramatic contrast from storm-light"
|
||||
],
|
||||
"mood": "solemn determination",
|
||||
"lighting": "stormy mixed light with punctuated highlights",
|
||||
"style": "emotive survival clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Sunset silhouette line: penguins returning in a long black chain along the coast",
|
||||
"sceneVariants": [
|
||||
"Sunset silhouette line: penguins returning in a long black chain along the coast",
|
||||
"Muted orange horizon and glassy sea",
|
||||
"Perfect silhouette shapes in a row",
|
||||
"Gull shadows flying overhead",
|
||||
"Calm, reflective shallow pools"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized steady walking in single-file lines",
|
||||
"Occasional pause to preen or observe",
|
||||
"Gentle waddle resumes toward nesting ground",
|
||||
"A collective settling into small clusters at dusk"
|
||||
],
|
||||
"camera": "Wide panoramic reveal with gentle crane down to silhouette detail",
|
||||
"accents": [
|
||||
"clean backlight rim on profiles",
|
||||
"feather silhouette micro-edges"
|
||||
],
|
||||
"mood": "quiet procession",
|
||||
"lighting": "clean sunset backlight",
|
||||
"style": "poetic establishing shot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Lab research cam: penguin group interacting with a deployed floating buoy (scientific vignette)",
|
||||
"sceneVariants": [
|
||||
"Lab research cam: penguin group interacting with a deployed floating buoy (scientific vignette)",
|
||||
"Bright painted buoy and tether line",
|
||||
"Researchers on a distant platform observing",
|
||||
"Penguins circling and investigating device",
|
||||
"Calm observational context"
|
||||
],
|
||||
"actions": [
|
||||
"Curious pecks and cautious nudges",
|
||||
"Occasional slap as they test buoyancy",
|
||||
"Group stepping back when a sensor chirps",
|
||||
"Final acceptance with a casual ignoring posture"
|
||||
],
|
||||
"camera": "Documentary fixed-research cam with medium close cuts",
|
||||
"accents": [
|
||||
"clinical specular on painted surfaces",
|
||||
"moist feathers micro-highlights"
|
||||
],
|
||||
"mood": "curious scientific moment",
|
||||
"lighting": "neutral daylight",
|
||||
"style": "informative observational clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Aurora storm: penguins silhouetted by shifting curtains of color and sudden solar flares",
|
||||
"sceneVariants": [
|
||||
"Aurora storm: penguins silhouetted by shifting curtains of color and sudden solar flares",
|
||||
"Dramatic neon curtains overhead",
|
||||
"Strong color reflections in wet snow",
|
||||
"A sense of cosmic scale above small creatures",
|
||||
"Long exposure star trails complementing motion"
|
||||
],
|
||||
"actions": [
|
||||
"Brief startled circling as lights pulse",
|
||||
"Collective staring and noted hush",
|
||||
"Slow return to huddle as aurora calms",
|
||||
"Occasional head-tilts tracking movement above"
|
||||
],
|
||||
"camera": "Epic wide low-light with auroral timelapse inserts",
|
||||
"accents": [
|
||||
"vivid aurora rim on snow and beaks",
|
||||
"tiny reflective micro-highlights in snow"
|
||||
],
|
||||
"mood": "cosmic wonder",
|
||||
"lighting": "strong auroral night light",
|
||||
"style": "cinematic natural spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Young penguin exercise drills: fledglings practicing short swims in sheltered cove",
|
||||
"sceneVariants": [
|
||||
"Young penguin exercise drills: fledglings practicing short swims in sheltered cove",
|
||||
"Calm shallow water and pebble shore",
|
||||
"Instructors supervising from the rocks",
|
||||
"Splash patterns and tiny wakes",
|
||||
"Healthy vegetation around the inlet"
|
||||
],
|
||||
"actions": [
|
||||
"Short measured swims with surface recovery",
|
||||
"Encouraging pushes from parents",
|
||||
"Short gliding practiced maneuvers",
|
||||
"Confident climbs onto shore rocks"
|
||||
],
|
||||
"camera": "Low stabilized tracking with playful cutaways",
|
||||
"accents": [
|
||||
"sparkling surface micro-highlights",
|
||||
"wet-down micro-detail on fledgling plumage"
|
||||
],
|
||||
"mood": "hopeful training",
|
||||
"lighting": "soft warm morning",
|
||||
"style": "uplifting nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Penguins",
|
||||
"scene": "Ice-breaker encounter: research ship arriving and penguins approaching curiously",
|
||||
"sceneVariants": [
|
||||
"Ice-breaker encounter: research ship arriving and penguins approaching curiously",
|
||||
"Large metallic hull contrasted with natural shapes",
|
||||
"Penguins investigating hull shadows",
|
||||
"Hazy polar light with steam from engines",
|
||||
"Scientists on deck with notebooks"
|
||||
],
|
||||
"actions": [
|
||||
"Cautious approach to new object in the environment",
|
||||
"Tentative nips and head checks",
|
||||
"Quick retreat when a loud noise occurs",
|
||||
"Gradual curiosity returning with distant observation"
|
||||
],
|
||||
"camera": "Documentary mid-shot with human context and reaction cutaways",
|
||||
"accents": [
|
||||
"cold speculars on metal",
|
||||
"reflective wet feather micro-highlights"
|
||||
],
|
||||
"mood": "cautious curiosity",
|
||||
"lighting": "diffuse polar daylight",
|
||||
"style": "human-natural encounter piece"
|
||||
}
|
||||
]
|
||||
477
src/data/animals_and_wildlife_seals.json
Normal file
477
src/data/animals_and_wildlife_seals.json
Normal file
@ -0,0 +1,477 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Harbour seal pup sheltered in a rocky cove at dawn",
|
||||
"sceneVariants": [
|
||||
"Harbour seal pup sheltered in a rocky cove at dawn",
|
||||
"Wet kelp fringes clinging to the rocks",
|
||||
"Soft dawn mist over incoming tide",
|
||||
"Mother visible offshore keeping watch",
|
||||
"Tiny paw prints in damp sand"
|
||||
],
|
||||
"actions": [
|
||||
"Pup fumbling toward the water for its first small swim",
|
||||
"Mother calling from a distance with soft bleats",
|
||||
"Crabs and shorebirds probing around the cove",
|
||||
"Occasional head-lifts to listen for danger"
|
||||
],
|
||||
"camera": "Low-angle close with gentle dolly outward to reveal tide line",
|
||||
"accents": [
|
||||
"soft volumetric dawn shafts between rocks",
|
||||
"dewy micro-highlights on whiskers and sand"
|
||||
],
|
||||
"mood": "fragile optimism",
|
||||
"lighting": "soft dawn fill with cool-warm balance",
|
||||
"style": "intimate wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Bull elephant seal fighting for territory on a sun-baked beach",
|
||||
"sceneVariants": [
|
||||
"Bull elephant seal fighting for territory on a sun-baked beach",
|
||||
"Huge sand-scoured bodies crashing together",
|
||||
"Cloud of kicked sand and flashing skin",
|
||||
"Distant colony sprawled across the shore",
|
||||
"Seabirds wheeling above the melee"
|
||||
],
|
||||
"actions": [
|
||||
"Thunderous lateral pushes and head slams",
|
||||
"Reverberating bellows that ripple the air",
|
||||
"Smaller males skittering away from conflict",
|
||||
"Victor rearing and roaring to claim the zone"
|
||||
],
|
||||
"camera": "High-frame-rate mid-shot with slow-mo impact inserts",
|
||||
"accents": [
|
||||
"hard sun rim catching spray and spit",
|
||||
"detailed skin micro-highlights on scars"
|
||||
],
|
||||
"mood": "raw dominance",
|
||||
"lighting": "harsh midday sunlight",
|
||||
"style": "dramatic natural conflict"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Leopard seal hunting near an Antarctic ice floe at pale noon",
|
||||
"sceneVariants": [
|
||||
"Leopard seal hunting near an Antarctic ice floe at pale noon",
|
||||
"Blue-white shards of broken ice",
|
||||
"Penguin silhouettes nervously bobbing",
|
||||
"Inky water channels between floes",
|
||||
"A distant berg calving faintly"
|
||||
],
|
||||
"actions": [
|
||||
"Powerful lateral lunges to intercept surface birds",
|
||||
"Underwater sprints past submerged berg edges",
|
||||
"Silent glide then explosive surface strike",
|
||||
"Rolling to swallow prey then drift"
|
||||
],
|
||||
"camera": "Cold aerial-to-underwater transition with tight strike inserts",
|
||||
"accents": [
|
||||
"cold ice rim on fin edges",
|
||||
"crisp micro-highlights on water spray and teeth"
|
||||
],
|
||||
"mood": "efficient predation",
|
||||
"lighting": "cool high-latitude daylight",
|
||||
"style": "tense arctic thriller"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Grey seal colony at golden hour with hundreds hauled out on a tidal platform",
|
||||
"sceneVariants": [
|
||||
"Grey seal colony at golden hour with hundreds hauled out on a tidal platform",
|
||||
"Warm backlight on rounded bodies",
|
||||
"Whisker details catching the sun",
|
||||
"Foamy surf edging the platform",
|
||||
"Lone pup calling intermittently"
|
||||
],
|
||||
"actions": [
|
||||
"Collective shifting and mutual jostling",
|
||||
"Mothers nursing, pups tumbling between adults",
|
||||
"A sudden chain reaction of head-raises at a sound",
|
||||
"Slow long yawns and settling back down"
|
||||
],
|
||||
"camera": "Panoramic establishing then dozens of intimate cut-ins",
|
||||
"accents": [
|
||||
"golden rim on fur contours",
|
||||
"high micro-detail on wet fur beads"
|
||||
],
|
||||
"mood": "communal warmth",
|
||||
"lighting": "rich golden-hour backlight",
|
||||
"style": "epic colony portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Rockpool harbor seals exploring tide pools at low tide",
|
||||
"sceneVariants": [
|
||||
"Rockpool harbor seals exploring tide pools at low tide",
|
||||
"Pools full of glinting anemones and small fish",
|
||||
"Shimmering algae patterns and barnacle textures",
|
||||
"Small waves lapping on barnacled rocks",
|
||||
"Children pointing from a safe jetty"
|
||||
],
|
||||
"actions": [
|
||||
"Playful nose-pokes into pools to catch small fish",
|
||||
"Gentle rolling to dislodge stuck seaweed",
|
||||
"Brief investigative peeks by pups",
|
||||
"Shy retreats into deeper channels between rocks"
|
||||
],
|
||||
"camera": "Macro low-angle with close micro-pool inserts",
|
||||
"accents": [
|
||||
"sparkling pool speculars",
|
||||
"detailed wet-skin micro-highlights"
|
||||
],
|
||||
"mood": "curious exploration",
|
||||
"lighting": "bright midday with reflective pools",
|
||||
"style": "textural coastal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Harbor scene at dusk with seals popping heads near moored fishing boats",
|
||||
"sceneVariants": [
|
||||
"Harbor scene at dusk with seals popping heads near moored fishing boats",
|
||||
"Old wood and peeling paint on pilings",
|
||||
"Ropes and nets draped along the quay",
|
||||
"Warm lanterns and quick seagull squawks",
|
||||
"Fishermen cleaning nets nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Seals surfacing with wary curiosity near bobbing boats",
|
||||
"Rapid surface circles when bait is available",
|
||||
"Soft vocal exchanges with other seals",
|
||||
"Quick dives when boats move"
|
||||
],
|
||||
"camera": "Handheld low-light with reflective water inserts",
|
||||
"accents": [
|
||||
"warm lamp speculars on wet fur",
|
||||
"soft ripple micro-highlights"
|
||||
],
|
||||
"mood": "wary opportunism",
|
||||
"lighting": "warm harbor dusk",
|
||||
"style": "urban-coastal documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Nighttime bioluminescent surf with seals cutting through glowing waves",
|
||||
"sceneVariants": [
|
||||
"Nighttime bioluminescent surf with seals cutting through glowing waves",
|
||||
"Electric blue wake lines trailing bodies",
|
||||
"Star-splattered sky above",
|
||||
"Ghostly silhouettes in motion",
|
||||
"Soft phosphorescent spray arcs"
|
||||
],
|
||||
"actions": [
|
||||
"Quick arcing swims leaving neon trails",
|
||||
"Surface flips creating glittering halos",
|
||||
"Brief breaching arcs throwing blue spray",
|
||||
"Gentle rolling to investigate bioluminescent patches"
|
||||
],
|
||||
"camera": "Low-light stabilized with long-exposure-like inserts",
|
||||
"accents": [
|
||||
"cold bioluminescent rim on body edges",
|
||||
"sparkling micro-highlights on wake lines"
|
||||
],
|
||||
"mood": "otherworldly wonder",
|
||||
"lighting": "dark night with neon water glow",
|
||||
"style": "dreamlike nocturnal sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Rescue center intake: a rehabilitated seal being checked by vets under clinical lights",
|
||||
"sceneVariants": [
|
||||
"Rescue center intake: a rehabilitated seal being checked by vets under clinical lights",
|
||||
"Sterile white bedding and towels",
|
||||
"Monitors and careful hands",
|
||||
"Humane transport crate in background",
|
||||
"Quiet supportive voices"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle veterinary palpation and wound cleaning",
|
||||
"Quiet administration of fluids and nourishment",
|
||||
"Tagging and logging identification",
|
||||
"Wrap-up and rest under warm lamp"
|
||||
],
|
||||
"camera": "Documentary mid-close with procedural inserts",
|
||||
"accents": [
|
||||
"soft clinical speculars",
|
||||
"detailed micro-highlights on wet fur and stitches"
|
||||
],
|
||||
"mood": "careful recovery",
|
||||
"lighting": "soft controlled daylight and warm lamp",
|
||||
"style": "informative conservation vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Storm-lashed coast: seals riding heavy surf and seeking calmer inlets",
|
||||
"sceneVariants": [
|
||||
"Storm-lashed coast: seals riding heavy surf and seeking calmer inlets",
|
||||
"Dark roiling clouds and spray",
|
||||
"Huge breaking waves and white horses",
|
||||
"Clinging rock outcrops and flying debris",
|
||||
"Urgent calls of seals overshadowed by wind"
|
||||
],
|
||||
"actions": [
|
||||
"Powerful surf-penetrating swims to avoid breakers",
|
||||
"Quick retreats into sheltered bays",
|
||||
"Holding position submerged to let waves pass overhead",
|
||||
"Group clustering in calmer lee waters"
|
||||
],
|
||||
"camera": "Handheld with water-spray lens effects and high-shutter action cuts",
|
||||
"accents": [
|
||||
"storm-spray micro-highlights frozen in frame",
|
||||
"hard speculars on wet musculature"
|
||||
],
|
||||
"mood": "weather-tested resilience",
|
||||
"lighting": "storm-diffused harsh light",
|
||||
"style": "survival action sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Orca predation sequence where a pod corrals a group of seals near a shelf",
|
||||
"sceneVariants": [
|
||||
"Orca predation sequence where a pod corrals a group of seals near a shelf",
|
||||
"Black dorsal fins slicing the sea",
|
||||
"Seals clustering and bobbing as a tight ball",
|
||||
"Violent surface churn as strategy unfolds",
|
||||
"Distant cliff flocks erupting"
|
||||
],
|
||||
"actions": [
|
||||
"Orcas executing coordinated wave-wash or seal-rocking maneuvers",
|
||||
"Seals darting in panic and scattering",
|
||||
"Brief successful strikes and rapid retreats",
|
||||
"Survivors re-grouping in deeper water"
|
||||
],
|
||||
"camera": "Dynamic wide-to-tight reaction shots with underwater inserts",
|
||||
"accents": [
|
||||
"fiery rim on spray during attacks",
|
||||
"dramatic micro-highlights on wet skin and teeth"
|
||||
],
|
||||
"mood": "tense predator-prey drama",
|
||||
"lighting": "variable coastal light with glare",
|
||||
"style": "cinematic natural conflict"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Pupping beach under a blood-orange sunset with tender maternal scenes",
|
||||
"sceneVariants": [
|
||||
"Pupping beach under a blood-orange sunset with tender maternal scenes",
|
||||
"Silhouetted mothers curled around pups",
|
||||
"Long warm shadows and a cooling tide",
|
||||
"Soft calls carried on the breeze",
|
||||
"A caretaker watchtower in distance"
|
||||
],
|
||||
"actions": [
|
||||
"Feeding sessions and pup cuddling",
|
||||
"Short separation swims for mothers to forage",
|
||||
"Protective physical nudges",
|
||||
"Pups dozing and twitching in sleep"
|
||||
],
|
||||
"camera": "Warm low-angle with close maternal inserts",
|
||||
"accents": [
|
||||
"fiery sunset rim on fur edges",
|
||||
"soft micro-highlights on sleepy eyes"
|
||||
],
|
||||
"mood": "tender closure",
|
||||
"lighting": "rich late-sunset warmth",
|
||||
"style": "emotive maternal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Kelp forest glide: seals weaving through tall kelp fronds in clear water",
|
||||
"sceneVariants": [
|
||||
"Kelp forest glide: seals weaving through tall kelp fronds in clear water",
|
||||
"Sunbeams slicing the water column",
|
||||
"Small reef fish darting between fronds",
|
||||
"Swaying blades creating vertical rhythm",
|
||||
"A curious seal nose-pressing a leaf"
|
||||
],
|
||||
"actions": [
|
||||
"Graceful sinuous glides through kelp corridors",
|
||||
"Playful rolls and opportunistic nips at shrimp",
|
||||
"Evasive turns around frond tangles",
|
||||
"Ephemeral bubble trails marking passage"
|
||||
],
|
||||
"camera": "Underwater glide cam with slow telephoto pushes",
|
||||
"accents": [
|
||||
"sparkling underwater shaft micro-highlights",
|
||||
"detailed kelp texture reflections"
|
||||
],
|
||||
"mood": "fluid grace",
|
||||
"lighting": "clear midday underwater shafts",
|
||||
"style": "cinematic marine ballet"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Tidal inlet at dawn where seals use current lines to ambush schooling fish",
|
||||
"sceneVariants": [
|
||||
"Tidal inlet at dawn where seals use current lines to ambush schooling fish",
|
||||
"Converging currents and eddies visible on surface",
|
||||
"Silver schools reflecting low sun",
|
||||
"Seals positioned along the shear line",
|
||||
"Gulls tracking the disturbance"
|
||||
],
|
||||
"actions": [
|
||||
"Seals timing bursts into schools along flow seams",
|
||||
"Coordinated passes to herd fish toward shallow pockets",
|
||||
"Surface flurries and silver flashes",
|
||||
"Short regroup and repositioning"
|
||||
],
|
||||
"camera": "Aerial current-reveal with close underwater intercepts",
|
||||
"accents": [
|
||||
"golden-silver rim on fish-scale flashes",
|
||||
"water-surface micro-highlights"
|
||||
],
|
||||
"mood": "focused teamwork",
|
||||
"lighting": "low dawn with reflective surface",
|
||||
"style": "documentary feeding sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Haul-out on a sun-baked rock platform where scientists tag individuals",
|
||||
"sceneVariants": [
|
||||
"Haul-out on a sun-baked rock platform where scientists tag individuals",
|
||||
"Careful handling tents and tag boxes",
|
||||
"Rubber boots and measured human movement",
|
||||
"Temporary restraint wraps and protective padding",
|
||||
"A clipboard with data tallying"
|
||||
],
|
||||
"actions": [
|
||||
"Gently securing and scanning then applying identification tags",
|
||||
"Quick measurements and weight checks",
|
||||
"Photographic records of scars and markings",
|
||||
"Releasing with observation to ensure swimming ability"
|
||||
],
|
||||
"camera": "Educational close procedural shots with data overlays",
|
||||
"accents": [
|
||||
"soft clinical speculars on instruments",
|
||||
"detailed micro-highlights on tag metal"
|
||||
],
|
||||
"mood": "responsible stewardship",
|
||||
"lighting": "bright natural field light",
|
||||
"style": "practical conservation piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Submerged drift-cam following a playful pair belly-flopping through midwater arches",
|
||||
"sceneVariants": [
|
||||
"Submerged drift-cam following a playful pair belly-flopping through midwater arches",
|
||||
"Loose particulate creating soft bokeh",
|
||||
"Light shafts dancing on moving bodies",
|
||||
"Playful bubble rings being produced",
|
||||
"Occasional small fish joins the game"
|
||||
],
|
||||
"actions": [
|
||||
"Precision spins and rapid darting loops",
|
||||
"Bubble-ring blowing and playful mouth gestures",
|
||||
"Head-tilt interactions and synchronized turns",
|
||||
"Sudden surface breaks for a breath then back in"
|
||||
],
|
||||
"camera": "Drift underwater with 50mm+ telephoto for compression",
|
||||
"accents": [
|
||||
"sparkling micro-highlights on suspended particles",
|
||||
"soft wet-skin speculars"
|
||||
],
|
||||
"mood": "joyful exuberance",
|
||||
"lighting": "filtered midwater shafts",
|
||||
"style": "playful underwater short"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Cold-spring thermal outflow where seals bask near warm upwellings in mist",
|
||||
"sceneVariants": [
|
||||
"Cold-spring thermal outflow where seals bask near warm upwellings in mist",
|
||||
"Steam rising from warm water against cold air",
|
||||
"Icy crust and frost around pool edges",
|
||||
"Seals leaning into the warm column",
|
||||
"A distant snowy shoreline"
|
||||
],
|
||||
"actions": [
|
||||
"Slow rolling and basking with eyes closed",
|
||||
"Occasional surfacing to inhale warm scented air",
|
||||
"Close grouping to soak shared warmth",
|
||||
"Slight shifts to adjust to the warm spot"
|
||||
],
|
||||
"camera": "Low cold-weather lens with steam diffusion inserts",
|
||||
"accents": [
|
||||
"soft steam-micro highlights",
|
||||
"warm rim on fur where mist parts"
|
||||
],
|
||||
"mood": "cozy reprieve",
|
||||
"lighting": "cool ambient with warm steam highlights",
|
||||
"style": "contrasting nature intimate"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Coastal cliff rescue where volunteers lift an entangled seal from rocks",
|
||||
"sceneVariants": [
|
||||
"Coastal cliff rescue where volunteers lift an entangled seal from rocks",
|
||||
"Ropes and harnesses deployed by trained crew",
|
||||
"Tidal timing and urgent coordination",
|
||||
"Plastic signage and safety vests visible",
|
||||
"A patient crowd on a safe ledge"
|
||||
],
|
||||
"actions": [
|
||||
"Careful disentangling of netting and rope",
|
||||
"Sedation or calming measures if needed",
|
||||
"Emergency first-aid wraps and antiseptic cleaning",
|
||||
"Transporting to recovery crate for rehab"
|
||||
],
|
||||
"camera": "Handheld documentary with action close-ups and radio chatter audio",
|
||||
"accents": [
|
||||
"hard rescue speculars on wet gear",
|
||||
"detailed micro-highlights on cut net fibers"
|
||||
],
|
||||
"mood": "urgent compassion",
|
||||
"lighting": "high-contrast rescue daylight",
|
||||
"style": "raw human-wildlife rescue"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Moonlit rocky outcrop where seals silhouette and the tide whispers",
|
||||
"sceneVariants": [
|
||||
"Moonlit rocky outcrop where seals silhouette and the tide whispers",
|
||||
"Silver columns across wet stone",
|
||||
"Distant lighthouse slow sweep",
|
||||
"Sparse cloud drifting across moon",
|
||||
"A hushed, minimal soundscape"
|
||||
],
|
||||
"actions": [
|
||||
"Still silhouetted profiles occasionally turning heads",
|
||||
"Soft nose-touch greetings in the dark",
|
||||
"Slow positioning to ride incoming swell",
|
||||
"Quiet settling for rest"
|
||||
],
|
||||
"camera": "Low-light wide with gentle push-in to silhouettes",
|
||||
"accents": [
|
||||
"cool moon rim on profile edges",
|
||||
"tiny micro-highlights on wet rock beads"
|
||||
],
|
||||
"mood": "nocturnal hush",
|
||||
"lighting": "soft moonlit night",
|
||||
"style": "meditative coastal portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Seals",
|
||||
"scene": "Final scene: single seal sliding into a calm inlet as sunrise warms the horizon",
|
||||
"sceneVariants": [
|
||||
"Final scene: single seal sliding into a calm inlet as sunrise warms the horizon",
|
||||
"Long pastel sky reflected in oil-slicked water",
|
||||
"A thin mist hugging the far reeds",
|
||||
"Quiet bird calls beginning",
|
||||
"Gentle motion of tide easing"
|
||||
],
|
||||
"actions": [
|
||||
"Seamless slip into glassy water",
|
||||
"Slow surface cruise exploring the inlet",
|
||||
"A last glance to the shore then dive",
|
||||
"Soft tail flick sending tiny ripples"
|
||||
],
|
||||
"camera": "Wide tranquil establishing then gentle close portrait",
|
||||
"accents": [
|
||||
"soft sunrise rim on wet fur",
|
||||
"calm mirror micro-highlights"
|
||||
],
|
||||
"mood": "peaceful closure",
|
||||
"lighting": "soft sunrise warmth",
|
||||
"style": "gentle coastal coda"
|
||||
}
|
||||
]
|
||||
402
src/data/animals_and_wildlife_sharks.json
Normal file
402
src/data/animals_and_wildlife_sharks.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Great white breach attack on a seal at sunrise",
|
||||
"sceneVariants": [
|
||||
"Great white breach attack on a seal at sunrise",
|
||||
"Explosion of white water as predator clears the surface",
|
||||
"Orange-pink horizon with hunting silhouette",
|
||||
"Scattered kelp and rocky outcrops",
|
||||
"Flocks of startled seabirds wheeling above"
|
||||
],
|
||||
"actions": [
|
||||
"Full-body vertical breach hitting prey",
|
||||
"Spray and foam thrown into the air",
|
||||
"Brief violent shake to subdue the seal",
|
||||
"Retreating arc back into deeper water"
|
||||
],
|
||||
"camera": "High-speed aerial-follow with slow-motion on breach impact",
|
||||
"accents": [
|
||||
"fiery rim on water spray",
|
||||
"crisp micro-highlights on tooth and jaw detail"
|
||||
],
|
||||
"mood": "raw predatory power",
|
||||
"lighting": "warm sunrise backlight with high specular contrast",
|
||||
"style": "intense nature action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Hammerhead school cruising above a coral canyon in midday clarity",
|
||||
"sceneVariants": [
|
||||
"Hammerhead school cruising above a coral canyon in midday clarity",
|
||||
"Wide blue water with coral fans below",
|
||||
"Long lines of uniquely shaped heads sweeping together",
|
||||
"Sunbeams streaking to the reef",
|
||||
"Small reef fish scattering in schools"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated sweeping formation",
|
||||
"Rhythmic scanning with uniquely shaped heads",
|
||||
"Occasional quick dip to investigate reef pockets",
|
||||
"Graceful serpentine turns while keeping formation"
|
||||
],
|
||||
"camera": "Aerial drone sweep with telephoto reef inserts",
|
||||
"accents": [
|
||||
"sparkling underwater light shafts",
|
||||
"high micro-detail on water column and fin edges"
|
||||
],
|
||||
"mood": "disciplined elegance",
|
||||
"lighting": "clear high-noon tropical sun",
|
||||
"style": "cinematic reef traversal"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Tiger shark hunting near a remote atoll at dusk",
|
||||
"sceneVariants": [
|
||||
"Tiger shark hunting near a remote atoll at dusk",
|
||||
"Rippling lagoon edges and shadowy reef teeth",
|
||||
"Striped flank pattern glimpsed under water",
|
||||
"Low warm horizon and cooling swell",
|
||||
"Occasional palm silhouette from the atoll"
|
||||
],
|
||||
"actions": [
|
||||
"Slow deliberate stalking near reef drop-offs",
|
||||
"Exploratory sniffs and quick test bites",
|
||||
"Powerful tail flick to reposition",
|
||||
"Sudden rapid intercept when prey suspicious"
|
||||
],
|
||||
"camera": "Stabilized underwater tracking with reef-close cutaways",
|
||||
"accents": [
|
||||
"soft dusk rim on fin edges",
|
||||
"textured micro-highlights on patterned hide"
|
||||
],
|
||||
"mood": "methodical predation",
|
||||
"lighting": "warm-cool dusk mix",
|
||||
"style": "tense natural study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Whale shark feeding under a glittering midday sky with plankton blooms",
|
||||
"sceneVariants": [
|
||||
"Whale shark feeding under a glittering midday sky with plankton blooms",
|
||||
"Gigantic gentle mouth sweeping silver clouds",
|
||||
"Shoals of small fish darting around the wide mouth",
|
||||
"Sunlight scattering in plankton-rich water",
|
||||
"Tiny birds riding the surface currents"
|
||||
],
|
||||
"actions": [
|
||||
"Slow graceful filter feeding passes",
|
||||
"Surface rolling to ingest dense patches",
|
||||
"Social spacing between other large filterers",
|
||||
"Occasional close inspection by small pilot fish"
|
||||
],
|
||||
"camera": "Large-scale aerial followed by close gentle underwater inserts",
|
||||
"accents": [
|
||||
"sparkling plankton micro-highlights",
|
||||
"warm reflective streaks on broad back"
|
||||
],
|
||||
"mood": "gentle abundance",
|
||||
"lighting": "bright high-clarity midday light",
|
||||
"style": "epic peaceful portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Lemon shark nursery near a mangrove maze at dawn",
|
||||
"sceneVariants": [
|
||||
"Lemon shark nursery near a mangrove maze at dawn",
|
||||
"Shallow tannin-stained water and tangled roots",
|
||||
"Small juvenile shapes slipping between roots",
|
||||
"Crab and shrimp life bustling under root shade",
|
||||
"Quiet early-morning bird calls"
|
||||
],
|
||||
"actions": [
|
||||
"Juveniles practicing short foraging circuits",
|
||||
"Adult watchful patrols circling outer channels",
|
||||
"Resting under shaded root overhangs",
|
||||
"Occasional quick darting to catch small crustaceans"
|
||||
],
|
||||
"camera": "Low shallow-water tracking with intimate close juvenile inserts",
|
||||
"accents": [
|
||||
"soft warm rim through mangrove canopy",
|
||||
"tannic micro-highlights on skin"
|
||||
],
|
||||
"mood": "protective learning",
|
||||
"lighting": "soft early-morning fill in shallow water",
|
||||
"style": "intimate nursery vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Blacktip reef shark group weaving near a tropical snorkel site at midday",
|
||||
"sceneVariants": [
|
||||
"Blacktip reef shark group weaving near a tropical snorkel site at midday",
|
||||
"Clear turquoise shallow reef and snorkeler silhouettes",
|
||||
"Sharp black dorsal tips slicing surface patterns",
|
||||
"Rippled sand channels and sparse coral heads",
|
||||
"Bright reef fish dashing around"
|
||||
],
|
||||
"actions": [
|
||||
"Fast weaving passes through shallow channels",
|
||||
"Quick investigative passes near snorkelers",
|
||||
"Group splitting and merging maneuvers",
|
||||
"Occasional quick flicks to herd small prey"
|
||||
],
|
||||
"camera": "Snorkel-cam POV with alternating wide reef reveals",
|
||||
"accents": [
|
||||
"sparkling water micro-highlights",
|
||||
"sharp specular on dorsal tip edges"
|
||||
],
|
||||
"mood": "lively reef activity",
|
||||
"lighting": "bright tropical noon light",
|
||||
"style": "energetic reef sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Deepwater lanternfish hunt with a solitary bluntnose sixgill in low light",
|
||||
"sceneVariants": [
|
||||
"Deepwater lanternfish hunt with a solitary bluntnose sixgill in low light",
|
||||
"Inky blue depths with faint bioluminescent specks",
|
||||
"Slow, heavy-bodied shark moving near blackwater",
|
||||
"Tiny lanternfish flashing then scattering",
|
||||
"A ghostly slow-motion quality"
|
||||
],
|
||||
"actions": [
|
||||
"Slow stalking with mouth agape to engulf small lanternfish",
|
||||
"Triggering swarm flashes from disturbed zooplankton",
|
||||
"Deliberate repositioning around midwater features",
|
||||
"Occasional investigative head-turns"
|
||||
],
|
||||
"camera": "Low-light submersible tracking with soft bioluminescent inserts",
|
||||
"accents": [
|
||||
"cold point micro-highlights from bioluminescence",
|
||||
"soft wet-skin speculars under low light"
|
||||
],
|
||||
"mood": "ancient deep hush",
|
||||
"lighting": "very low blue-toned deep-sea light",
|
||||
"style": "mysterious nocturnal deep-sea piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Mako shark high-speed pass alongside a sportfishing boat at golden hour",
|
||||
"sceneVariants": [
|
||||
"Mako shark high-speed pass alongside a sportfishing boat at golden hour",
|
||||
"Long metallic blue body streaking in the surface sheen",
|
||||
"Fishermen pointing while lines still in the water",
|
||||
"Wake line and spray glittering in last sun",
|
||||
"Distant island silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Explosive top-speed passes and sudden direction changes",
|
||||
"Surface rosette splashes during bursts",
|
||||
"Brief close inspections of baited lines",
|
||||
"Quick disappearance into deeper blue"
|
||||
],
|
||||
"camera": "Boat-mounted high shutter tracking with dramatic slow-motion on pass",
|
||||
"accents": [
|
||||
"fiery golden rim on spray",
|
||||
"metallic skin micro-highlights"
|
||||
],
|
||||
"mood": "adrenal thrill",
|
||||
"lighting": "golden-hour directional light",
|
||||
"style": "action marine snippet"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Nurse sharks dozing on a sandy ledge under reef overhang at midday",
|
||||
"sceneVariants": [
|
||||
"Nurse sharks dozing on a sandy ledge under reef overhang at midday",
|
||||
"Muted blue-green water with shadowed ledge",
|
||||
"Several docile sharks resting in a group",
|
||||
"Small shrimp cleaning in and around mouths",
|
||||
"Soft particulate drifting in calm water"
|
||||
],
|
||||
"actions": [
|
||||
"Slow breathing through gill slits while resting",
|
||||
"Cleaner shrimp entering mouths for service",
|
||||
"Occasional lazy shift in position",
|
||||
"Mild wake movement as one stands and glides off"
|
||||
],
|
||||
"camera": "Calm stabilized macro with texture inserts on skin",
|
||||
"accents": [
|
||||
"soft diffused rim from above",
|
||||
"detailed micro-highlights on sand grains"
|
||||
],
|
||||
"mood": "tranquil resignation",
|
||||
"lighting": "diffuse midday soft light under overhang",
|
||||
"style": "calm underwater portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Leopard shark feeding in a shallow estuary at low tide with shimmering mudflats",
|
||||
"sceneVariants": [
|
||||
"Leopard shark feeding in a shallow estuary at low tide with shimmering mudflats",
|
||||
"Shallow brown-green water and exposed channels",
|
||||
"Cloudy sand plumes as sharks graze",
|
||||
"Wading birds picking at stirred prey",
|
||||
"Sun glint on wet mud"
|
||||
],
|
||||
"actions": [
|
||||
"Suction feeding causing small sand clouds",
|
||||
"Sideways slurps along the substrate",
|
||||
"Intermittent tandem grazing patterns",
|
||||
"Slow departure to slightly deeper channels"
|
||||
],
|
||||
"camera": "Low shallow-water chase with macro particle inserts",
|
||||
"accents": [
|
||||
"warm mud glint micro-highlights",
|
||||
"detailed suction micro-effects"
|
||||
],
|
||||
"mood": "productive forage",
|
||||
"lighting": "bright low-tide sun",
|
||||
"style": "documentary feeding vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Wobbegong camouflaged beneath reef overhang in filtered morning light",
|
||||
"sceneVariants": [
|
||||
"Wobbegong camouflaged beneath reef overhang in filtered morning light",
|
||||
"Textured reef floor with algae and sponges",
|
||||
"Lacy fringe blending with rock",
|
||||
"Small fish brushing past unaware",
|
||||
"Shadows creating a mottled pattern"
|
||||
],
|
||||
"actions": [
|
||||
"Still ambush posture waiting for prey",
|
||||
"Lightning-fast suction strike to snag passing fish",
|
||||
"Return to stillness after feeding",
|
||||
"Occasional slow reposition to better camouflage"
|
||||
],
|
||||
"camera": "Macro hidden-angle with close-eye strike slow-mo",
|
||||
"accents": [
|
||||
"soft broken light rim on edges",
|
||||
"textured micro-highlights on skin folds"
|
||||
],
|
||||
"mood": "patient ambush",
|
||||
"lighting": "dappled reef light",
|
||||
"style": "intense macro predator study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Basking whale shark silhouette against a turquoise sea in midday clarity",
|
||||
"sceneVariants": [
|
||||
"Basking whale shark silhouette against a turquoise sea in midday clarity",
|
||||
"Small snorkelers floating like dots nearby",
|
||||
"Broad back and faint spotting pattern visible",
|
||||
"Clear shallow water revealing reef shadows",
|
||||
"Sunlight streaming and columnar shafts"
|
||||
],
|
||||
"actions": [
|
||||
"Slow surface cruise with repeated filter passes",
|
||||
"Occasional slight roll exposing belly patterns",
|
||||
"Tolerant approach to curious divers",
|
||||
"Calm drift after large gulp passes"
|
||||
],
|
||||
"camera": "Aerial to underwater transition revealing scale",
|
||||
"accents": [
|
||||
"strong midday specular on back",
|
||||
"detailed spot micro-highlights"
|
||||
],
|
||||
"mood": "majestic calm",
|
||||
"lighting": "clear bright midday sun",
|
||||
"style": "grand serene portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Oil-rig night scene where bait attracts a pack of small sharks under floodlights",
|
||||
"sceneVariants": [
|
||||
"Oil-rig night scene where bait attracts a pack of small sharks under floodlights",
|
||||
"Harsh artificial lights cutting into black water",
|
||||
"Shadowy silhouettes circling the bright patch",
|
||||
"Slick oil reflections and mechanical structures",
|
||||
"Muted distant machinery hum"
|
||||
],
|
||||
"actions": [
|
||||
"Aggressive circling and quick feeding strikes",
|
||||
"Shadows breaking into eddies under lights",
|
||||
"Occasional collision with bobbing debris",
|
||||
"Rapid retreats into dark water after disturbances"
|
||||
],
|
||||
"camera": "Stark low-light handheld with high-contrast artificial punch-ins",
|
||||
"accents": [
|
||||
"hard artificial specular highlights",
|
||||
"oily reflective micro-highlights"
|
||||
],
|
||||
"mood": "tense attractant drama",
|
||||
"lighting": "harsh artificial night lighting",
|
||||
"style": "noir industrial-natural clip"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Coral atoll night patrol with reef sharks cruising silently under moon",
|
||||
"sceneVariants": [
|
||||
"Coral atoll night patrol with reef sharks cruising silently under moon",
|
||||
"Soft shimmer across coral silhouettes",
|
||||
"Small nocturnal fish peeking from crevices",
|
||||
"Low tide shadows and slow current",
|
||||
"A faint distant wave noise"
|
||||
],
|
||||
"actions": [
|
||||
"Measured slow patrol passing reef edges",
|
||||
"Occasional low-speed passes into crevices",
|
||||
"Brief inspection of sleeping fish",
|
||||
"Subtle body orientation adjustments in current"
|
||||
],
|
||||
"camera": "Stabilized low-light with gentle stealth tracking",
|
||||
"accents": [
|
||||
"cool moon rim on dorsal edges",
|
||||
"soft coral micro-highlights"
|
||||
],
|
||||
"mood": "calm nocturnal watch",
|
||||
"lighting": "soft moonlit night",
|
||||
"style": "nocturnal reef study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Juvenile shark schooling near estuary outflow at golden sunset",
|
||||
"sceneVariants": [
|
||||
"Juvenile shark schooling near estuary outflow at golden sunset",
|
||||
"Warm river plume influencing water color",
|
||||
"Small shadows weaving near the mixing line",
|
||||
"Wading birds probing shallows",
|
||||
"Distant mangrove fringe"
|
||||
],
|
||||
"actions": [
|
||||
"Tight schooling formation following current",
|
||||
"Occasional synchronized swerve to catch bait",
|
||||
"Short surface glimpses then submerge",
|
||||
"Temporary resting in slightly sheltered eddies"
|
||||
],
|
||||
"camera": "Low aerial followed by near-surface tracking",
|
||||
"accents": [
|
||||
"golden plume rim highlights",
|
||||
"detailed surface micro-highlights"
|
||||
],
|
||||
"mood": "young-group learning",
|
||||
"lighting": "warm sunset glow",
|
||||
"style": "gentle group vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sharks",
|
||||
"scene": "Sandbar ambush: nurse shark and angel shark lying in wait at shallow sand channel",
|
||||
"sceneVariants": [
|
||||
"Sandbar ambush: nurse shark and angel shark lying in wait at shallow sand channel",
|
||||
"Fine sand ripples and subtle water distortion",
|
||||
"Camouflaged bodies flattened near the bottom",
|
||||
"Tiny fish passing unaware",
|
||||
"Occasional shell and crustacean motion"
|
||||
],
|
||||
"actions": [
|
||||
"Explosive upward lunge to capture bottom-dwelling prey",
|
||||
"Quick sand cascade and concealment again",
|
||||
"Slow repositioning to a new ambush spot",
|
||||
"Brief inactivity after feeding"
|
||||
],
|
||||
"camera": "Macro low-angle with sudden high-frame capture on strike",
|
||||
"accents": [
|
||||
"sand micro-highlights thrown on strike",
|
||||
"soft diffused rim on skin folds"
|
||||
],
|
||||
"mood": "stealthy ambush",
|
||||
"lighting": "diffuse midday with soft shadows",
|
||||
"style": "tight predator study"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_tigers.json
Normal file
427
src/data/animals_and_wildlife_tigers.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Solitary tiger moving silently through tall sunlit grass at golden hour",
|
||||
"sceneVariants": [
|
||||
"Solitary tiger moving silently through tall sunlit grass at golden hour",
|
||||
"Striped flank slicing through amber blades",
|
||||
"Heat haze blurring distant acacias",
|
||||
"Pale dust trailing at each paw",
|
||||
"A distant herd of deer frozen in the background"
|
||||
],
|
||||
"actions": [
|
||||
"Low, measured stalking steps",
|
||||
"Occasional head flick to lock on scent",
|
||||
"Slow blink and ear rotation to listen",
|
||||
"Sudden lightning-fast pounce when striking"
|
||||
],
|
||||
"camera": "Low dolly lateral tracking with intermittent slow push-ins on eye",
|
||||
"accents": [
|
||||
"golden rim light along whisker planes",
|
||||
"sparkling micro-dust highlights in air"
|
||||
],
|
||||
"mood": "predatory focus",
|
||||
"lighting": "warm golden-hour backlight with long soft shadows",
|
||||
"style": "cinematic wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Mother teaching cubs to stalk among mangrove roots at midday",
|
||||
"sceneVariants": [
|
||||
"Mother teaching cubs to stalk among mangrove roots at midday",
|
||||
"Tangled roots and shallow black water pools",
|
||||
"Sun reflecting in scattered puddles",
|
||||
"Cubs crouched and wide-eyed",
|
||||
"Cracked mud dotted with tiny crabs"
|
||||
],
|
||||
"actions": [
|
||||
"Demonstrative silent prowls",
|
||||
"Cubs mimicking clumsy paw placements",
|
||||
"Mother correcting posture with a nudge",
|
||||
"Soft growled encouragement"
|
||||
],
|
||||
"camera": "Handheld low-angle circling the group with mid close-ups",
|
||||
"accents": [
|
||||
"dappled speculars on wet fur",
|
||||
"high-detail reflections in shallow pools"
|
||||
],
|
||||
"mood": "teaching patience",
|
||||
"lighting": "bright high-noon with cool shaded pockets",
|
||||
"style": "intimate natural lesson"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Nighttime roar on a rocky outcrop under a blood-orange moon",
|
||||
"sceneVariants": [
|
||||
"Nighttime roar on a rocky outcrop under a blood-orange moon",
|
||||
"Silhouette punctuated by a low moon",
|
||||
"Clouds moving fast across a bruised sky",
|
||||
"Eyes reflecting like embers",
|
||||
"Wind-swept grasses at the rock base"
|
||||
],
|
||||
"actions": [
|
||||
"Thunderous prolonged roar",
|
||||
"Mane-like fur flaring in wind (neck ruff motion)",
|
||||
"Head lifted high to communicate territory",
|
||||
"Echoing reverberations across the valley"
|
||||
],
|
||||
"camera": "Slow crane up to close dramatic profile during roar",
|
||||
"accents": [
|
||||
"cold rim from lunar backlight",
|
||||
"glossy eye speculars and wet-nose highlights"
|
||||
],
|
||||
"mood": "dominant proclamation",
|
||||
"lighting": "high-contrast moonlit night with a warm red hue",
|
||||
"style": "epic nocturnal portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Tiger slinking at the edge of a village at dawn, rice smoke drifting",
|
||||
"sceneVariants": [
|
||||
"Tiger slinking at the edge of a village at dawn, rice smoke drifting",
|
||||
"Thatch roofs and thin morning haze",
|
||||
"Scattered chickens and startled dogs",
|
||||
"Footprints in soft mud",
|
||||
"Worn pathways leading into paddy fields"
|
||||
],
|
||||
"actions": [
|
||||
"Cautious approach and quick retreats",
|
||||
"Sniffing at human scent markers",
|
||||
"Ears pricked for sudden disturbance",
|
||||
"A swift dash to cover when spotted"
|
||||
],
|
||||
"camera": "Telephoto compressed shots from hidden vantage",
|
||||
"accents": [
|
||||
"warm rim from dawn smoke",
|
||||
"moist micro-highlights on whiskers"
|
||||
],
|
||||
"mood": "tense boundary crossing",
|
||||
"lighting": "soft pastel dawn with diffused warm smoke light",
|
||||
"style": "human-wildlife edge documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Monsoon riverbank where a tiger bathed and shakes off heavy rain",
|
||||
"sceneVariants": [
|
||||
"Monsoon riverbank where a tiger bathed and shakes off heavy rain",
|
||||
"Saturated greens and thick wet mud",
|
||||
"Roaring river current and dark swollen clouds",
|
||||
"Water streaming from fur in long beads",
|
||||
"Leaves flicking as droplets fly"
|
||||
],
|
||||
"actions": [
|
||||
"Exuberant deep shakes to fling water",
|
||||
"Rolling in slick mud and grooming",
|
||||
"Low satisfied bellows",
|
||||
"A triumphant nap after bathing"
|
||||
],
|
||||
"camera": "Dynamic handheld with splatter close-ups and slow-mo on shakes",
|
||||
"accents": [
|
||||
"sparkling raindrop micro-highlights",
|
||||
"saturated wet-fur texture accents"
|
||||
],
|
||||
"mood": "refreshing release",
|
||||
"lighting": "diffuse overcast high-saturation light",
|
||||
"style": "textured cinematic nature moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Bengal tiger stalking through sun-dappled bamboo forest midday",
|
||||
"sceneVariants": [
|
||||
"Bengal tiger stalking through sun-dappled bamboo forest midday",
|
||||
"Thin shafts of light through tall bamboo",
|
||||
"Dense vertical lines echoing the tiger's stripe",
|
||||
"Soft leaf litter underfoot",
|
||||
"Birds scattering as it moves"
|
||||
],
|
||||
"actions": [
|
||||
"Fluid slow steps between bamboo stems",
|
||||
"Periodic pauses to scan for prey",
|
||||
"Tongue flick to taste the air",
|
||||
"Quick lunge through a sudden canopy gap"
|
||||
],
|
||||
"camera": "Low tracking between stems with shallow DOF",
|
||||
"accents": [
|
||||
"vertical light streak rim highlights",
|
||||
"high micro-detail on whisker shadows"
|
||||
],
|
||||
"mood": "stealthy elegance",
|
||||
"lighting": "contrasty dappled daylight",
|
||||
"style": "artful natural vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "White tiger crossing snow-drifts in high Himalayan dusk",
|
||||
"sceneVariants": [
|
||||
"White tiger crossing snow-drifts in high Himalayan dusk",
|
||||
"Crystalline snow and wind-sculpted ridges",
|
||||
"Breath vapor trailing behind",
|
||||
"Pale blue twilight sky",
|
||||
"Jagged distant peaks in silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Deliberate cold-step tread",
|
||||
"Periodic paw lifts to test depth",
|
||||
"Low vocal rumble to call cubs",
|
||||
"Nudging a hesitant cub forward"
|
||||
],
|
||||
"camera": "Telephoto long lens emphasizing isolation and compression",
|
||||
"accents": [
|
||||
"icy specular highlights on fur",
|
||||
"soft blue rim on contours"
|
||||
],
|
||||
"mood": "stoic endurance",
|
||||
"lighting": "cool dusk with bluish undertones",
|
||||
"style": "lonely Arctic-like portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Nocturnal ambush by a river as moonlight sparkles on fish leaps",
|
||||
"sceneVariants": [
|
||||
"Nocturnal ambush by a river as moonlight sparkles on fish leaps",
|
||||
"Rippling water catching small flashes",
|
||||
"Dark banks shrouding the predator",
|
||||
"Leaping fish arcs in bright highlights",
|
||||
"Vast starfield overhead"
|
||||
],
|
||||
"actions": [
|
||||
"Still wait in shadow then a sudden explosive lunge",
|
||||
"Water columns erupting in motion",
|
||||
"Quick bite and head-shake feeding",
|
||||
"Silent slink away into cover"
|
||||
],
|
||||
"camera": "Fast handheld impact shots with slow-mo on water eruptions",
|
||||
"accents": [
|
||||
"cold moon rim on splashing droplets",
|
||||
"sparkling fish-scale highlights"
|
||||
],
|
||||
"mood": "sudden violence, efficiency",
|
||||
"lighting": "cool moonlit night with high specular accents",
|
||||
"style": "noir predation sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Pair scent-rubbing on a rocky cliff at sunset as courtship begins",
|
||||
"sceneVariants": [
|
||||
"Pair scent-rubbing on a rocky cliff at sunset as courtship begins",
|
||||
"Two striped profiles close and tentative",
|
||||
"Sun casting long orange arcs",
|
||||
"Delicate exchange of postures",
|
||||
"Nearby scrub and distant sea of grass"
|
||||
],
|
||||
"actions": [
|
||||
"Mutual scent rubbing and nuzzle checks",
|
||||
"Soft vocal exchanges and head presses",
|
||||
"Playful swipes at whiskers",
|
||||
"Joint slow walk along edge"
|
||||
],
|
||||
"camera": "Medium two-shot with intimate close-ins on noses and eyes",
|
||||
"accents": [
|
||||
"warm sunset rim on cheekbones",
|
||||
"soft lens flares in background"
|
||||
],
|
||||
"mood": "affectionate ritual",
|
||||
"lighting": "golden sunset with warm glow",
|
||||
"style": "romantic wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Cub playfight in a shaded den while adults patrol nearby at dusk",
|
||||
"sceneVariants": [
|
||||
"Cub playfight in a shaded den while adults patrol nearby at dusk",
|
||||
"Tangled fur and playful tumbles",
|
||||
"Sun-splinter shafts through den mouth",
|
||||
"Scattered bones and dry leaves",
|
||||
"Soft padded floor of packed earth"
|
||||
],
|
||||
"actions": [
|
||||
"Bounding rolls and mock bites",
|
||||
"Short squeaks and chirps",
|
||||
"Adult alert glances from den entrance",
|
||||
"Cubs tumbling into a sleeping heap"
|
||||
],
|
||||
"camera": "Close handheld micro-shots with playful pacing",
|
||||
"accents": [
|
||||
"soft volumetric shafts through den mouth",
|
||||
"micro-detail on whisker twitches"
|
||||
],
|
||||
"mood": "playful safety",
|
||||
"lighting": "dappled dusk with warm fill",
|
||||
"style": "adorable behavioral vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Ambush in tall reedbed at twilight as boar approaches",
|
||||
"sceneVariants": [
|
||||
"Ambush in tall reedbed at twilight as boar approaches",
|
||||
"Reed crowns trembling in passing wind",
|
||||
"Low, cramped channel giving a hunting corridor",
|
||||
"A boar sniffing uncertainly at scent",
|
||||
"Sunset orange on far-off horizon"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated low strikes and pin-down",
|
||||
"Rapid mud and reed explosion during impact",
|
||||
"Fast dispatching with powerful bites",
|
||||
"Quick retreat to cover after feeding"
|
||||
],
|
||||
"camera": "Dynamic handheld with whip-pans and close bite inserts",
|
||||
"accents": [
|
||||
"warm rim on reed tips",
|
||||
"wet mud micro-splatters highlighted"
|
||||
],
|
||||
"mood": "efficient brutality",
|
||||
"lighting": "twilight mixed warm/cool tones",
|
||||
"style": "action natural sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Sunrise silhouette crossing a ridgeline with birds erupting",
|
||||
"sceneVariants": [
|
||||
"Sunrise silhouette crossing a ridgeline with birds erupting",
|
||||
"Sharp profile against a violet-orange sky",
|
||||
"Feathered flocks lifting as it passes",
|
||||
"Clean ridge line and sparse scrub",
|
||||
"Morning mist clinging low"
|
||||
],
|
||||
"actions": [
|
||||
"Measured walking with emphasis on silhouette",
|
||||
"Head lift to take in scene",
|
||||
"A stretch and yawn once on flat ground",
|
||||
"Slow grooming to start the day"
|
||||
],
|
||||
"camera": "Wide panoramic sweep with gentle push-in",
|
||||
"accents": [
|
||||
"clean backlight rim on stripes",
|
||||
"feathered light scattering through flying birds"
|
||||
],
|
||||
"mood": "quiet majesty",
|
||||
"lighting": "clean sunrise backlight",
|
||||
"style": "majestic establishing shot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Urban-edge nocturne: a tiger caught in a headlamp beam near a highway",
|
||||
"sceneVariants": [
|
||||
"Urban-edge nocturne: a tiger caught in a headlamp beam near a highway",
|
||||
"Halogen wash cutting darkness",
|
||||
"Reflective eyes and roadside litter",
|
||||
"Distant traffic hum",
|
||||
"Faint neon from far-off signs"
|
||||
],
|
||||
"actions": [
|
||||
"Freeze and cautious retreat",
|
||||
"Rapid lateral dash to roadside scrub",
|
||||
"Scenting discarded food remnants",
|
||||
"A tense wait in shadow until safe"
|
||||
],
|
||||
"camera": "Stark POV with high-contrast single-beam focus",
|
||||
"accents": [
|
||||
"hard spotlight specular",
|
||||
"wet fur micro-highlights in beam"
|
||||
],
|
||||
"mood": "tense survival at human margins",
|
||||
"lighting": "harsh artificial night lighting",
|
||||
"style": "noir human-wildlife edge scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Tiger crossing a scent-marked territory ridge at midday, confident stride",
|
||||
"sceneVariants": [
|
||||
"Tiger crossing a scent-marked territory ridge at midday, confident stride",
|
||||
"Fresh scrape marks and urine rubbed trees",
|
||||
"Clear vista of claimed land",
|
||||
"Well-worn trails and flattened grass",
|
||||
"Small sentinel birds perched above"
|
||||
],
|
||||
"actions": [
|
||||
"Deliberate pausing to scratch and scent",
|
||||
"Slow purposeful stride onward",
|
||||
"Head-held-high posture signaling claim",
|
||||
"Brief marking rub and walk-off"
|
||||
],
|
||||
"camera": "Medium steady with push-in on marking gestures",
|
||||
"accents": [
|
||||
"sunlit rim on cheek and shoulder",
|
||||
"detailed scent-mark texture highlights"
|
||||
],
|
||||
"mood": "assured dominance",
|
||||
"lighting": "bright midday with high clarity",
|
||||
"style": "behavioral portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Wounded tiger limping through undergrowth at dusk, wary and isolated",
|
||||
"sceneVariants": [
|
||||
"Wounded tiger limping through undergrowth at dusk, wary and isolated",
|
||||
"Stiff gait and visible blood on forepaw",
|
||||
"Broken branches and trampled underbrush",
|
||||
"Breath coming ragged in the cool air",
|
||||
"Shadows lengthening as night approaches"
|
||||
],
|
||||
"actions": [
|
||||
"Careful placing of wounded paw",
|
||||
"Periodic rest and watching the surroundings",
|
||||
"Low muffled snarls at perceived threats",
|
||||
"Slow, determined hobble toward remoter shelter"
|
||||
],
|
||||
"camera": "Tight handheld close to convey pain and strain",
|
||||
"accents": [
|
||||
"cold rim on wet blood highlights",
|
||||
"textured micro-detail on torn fur"
|
||||
],
|
||||
"mood": "vulnerable grit",
|
||||
"lighting": "muted dusk with cool fill",
|
||||
"style": "gritty survival vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Snow-laden bamboo grove where a tiger stalks in soft white silence",
|
||||
"sceneVariants": [
|
||||
"Snow-laden bamboo grove where a tiger stalks in soft white silence",
|
||||
"Thin vertical stems bowed by snow",
|
||||
"Soft muffled footfalls",
|
||||
"Pale winter sun through lattice",
|
||||
"Small mammal tracks crossing the path"
|
||||
],
|
||||
"actions": [
|
||||
"Deliberate silent stalking with low body",
|
||||
"Tiny nose sniffs and whisker sweeps",
|
||||
"Explosive pounce through powder",
|
||||
"Triumphant capture and quick consumption"
|
||||
],
|
||||
"camera": "Low tracking with crisp white balance and slow motion on pounce",
|
||||
"accents": [
|
||||
"crisp snow micro-highlights on lashes",
|
||||
"cool blue rim on fur edges"
|
||||
],
|
||||
"mood": "silent precision",
|
||||
"lighting": "cool winter daylight with high contrast",
|
||||
"style": "elegant arctic hunting"
|
||||
},
|
||||
{
|
||||
"subGenre": "Tigers",
|
||||
"scene": "Late-night river crossing under a canopy of fireflies and soft moon",
|
||||
"sceneVariants": [
|
||||
"Late-night river crossing under a canopy of fireflies and soft moon",
|
||||
"Tiny glowing points floating above water",
|
||||
"Trunk-length reflections on slow current",
|
||||
"Silence punctuated by soft insect chirps",
|
||||
"Shimmering head and shoulder reflections"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet measured stepping into the current",
|
||||
"Temporary pause to scent and listen",
|
||||
"A small splash then steady crossing",
|
||||
"A silent shake-and-step on the far bank"
|
||||
],
|
||||
"camera": "Stabilized lateral tracking with close reflective inserts",
|
||||
"accents": [
|
||||
"cool moon rim coupled with warm-firefly bokeh",
|
||||
"specular highlights on wet fur"
|
||||
],
|
||||
"mood": "ethereal caution",
|
||||
"lighting": "mix of cool moonlight and tiny warm point-lights",
|
||||
"style": "dreamlike nocturnal vignette"
|
||||
}
|
||||
]
|
||||
402
src/data/animals_and_wildlife_whales.json
Normal file
402
src/data/animals_and_wildlife_whales.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Humpback breach line under a clear golden sunrise",
|
||||
"sceneVariants": [
|
||||
"Humpback breach line under a clear golden sunrise",
|
||||
"Silhouetted backs arcing from the warm sea",
|
||||
"Long spray halos in the morning light",
|
||||
"Wide horizon with faint ship silhouette",
|
||||
"Gulls spiraling above the breach path"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized high breaches in a rhythmic series",
|
||||
"Water plumes exploding and falling in glittering arcs",
|
||||
"Tail slaps punctuating the sequence",
|
||||
"Soft vocalizations carried on the morning breeze"
|
||||
],
|
||||
"camera": "Low boat-mounted tracking with slow crane lifts to capture full arcs",
|
||||
"accents": [
|
||||
"golden rim highlights on spouts and ridges",
|
||||
"sparkling water micro-highlights on droplets"
|
||||
],
|
||||
"mood": "joyous spectacle",
|
||||
"lighting": "warm sunrise backlight with high specular contrast",
|
||||
"style": "majestic marine cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Grey whale migration corridor with long columns under high noon",
|
||||
"sceneVariants": [
|
||||
"Grey whale migration corridor with long columns under high noon",
|
||||
"Endless blue ocean with repeating dorsal lines",
|
||||
"Small boats crossing their path",
|
||||
"Sunbird flocks riding the thermals",
|
||||
"Surface patches of foamy turbulence"
|
||||
],
|
||||
"actions": [
|
||||
"Steady slow porpoising and visible blow intervals",
|
||||
"Long slow dives and surfacing patterns",
|
||||
"Group course corrections led by older whales",
|
||||
"Minor rolling to scratch backs on the surface"
|
||||
],
|
||||
"camera": "High-altitude drone sweep with occasional telephoto compression",
|
||||
"accents": [
|
||||
"deep ocean specular bands",
|
||||
"high micro-contrast on ridged callosities"
|
||||
],
|
||||
"mood": "epic migration calm",
|
||||
"lighting": "bright midday with deep-blue contrast",
|
||||
"style": "grand natural travel sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Orca family hunting in a glassy bay at dusk",
|
||||
"sceneVariants": [
|
||||
"Orca family hunting in a glassy bay at dusk",
|
||||
"Black dorsal fins cutting mirrored water",
|
||||
"Sea birds circling franticly above surface activity",
|
||||
"Shallow sandbanks glinting silver",
|
||||
"Darkening sky reflected in the bay"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated wave-washing to strand prey",
|
||||
"Sudden bursts of speed and encirclements",
|
||||
"Precise collaborative strikes and regrouping",
|
||||
"Tail flicks sending spray and signal cues"
|
||||
],
|
||||
"camera": "Boat-mounted medium with quick impact close-ins and wide reveal",
|
||||
"accents": [
|
||||
"cold dusk rim on fin edges",
|
||||
"sharp speculars on black-white skin contrast"
|
||||
],
|
||||
"mood": "precision teamwork",
|
||||
"lighting": "muted dusk with cool backlight",
|
||||
"style": "tense behavioral documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Sperm whale family sleeping cluster under a starry night",
|
||||
"sceneVariants": [
|
||||
"Sperm whale family sleeping cluster under a starry night",
|
||||
"Dark velvet ocean with faint bioluminescent specks",
|
||||
"Slow breathing silhouettes and soft spouts",
|
||||
"Moon glint on faint ridgelines",
|
||||
"Distant ROV light blinking softly"
|
||||
],
|
||||
"actions": [
|
||||
"Slow depth bobbing and restful drift",
|
||||
"Occasional wake ripple when shifting",
|
||||
"Quiet micro-vocal exchanges among the cluster",
|
||||
"Tiny luminous wake trails from small organisms"
|
||||
],
|
||||
"camera": "Stabilized low-light tracking with wide composition and intimate inserts",
|
||||
"accents": [
|
||||
"cool moon rim on wet skin",
|
||||
"subtle bioluminescent micro-highlights"
|
||||
],
|
||||
"mood": "calm nocturnal repose",
|
||||
"lighting": "very low moonlit night with cool blue accents",
|
||||
"style": "ethereal nocturnal nature"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Calf learning to breach beside its mother in soft morning haze",
|
||||
"sceneVariants": [
|
||||
"Calf learning to breach beside its mother in soft morning haze",
|
||||
"Small but energetic arcs near the adult",
|
||||
"Silvery spray diffused by haze",
|
||||
"Close protective presence of a large fluke",
|
||||
"Gentle rolling swell"
|
||||
],
|
||||
"actions": [
|
||||
"Repeated small breaches with increasing height",
|
||||
"Mother guiding with gentle nudges",
|
||||
"Playful tail flick encouragement",
|
||||
"Short social vocal chirps audible above the water"
|
||||
],
|
||||
"camera": "Gentle tracking from a safe distance with tender close-ups",
|
||||
"accents": [
|
||||
"soft volumetric rim light through haze",
|
||||
"warm speculars on maternal skin folds"
|
||||
],
|
||||
"mood": "tender learning",
|
||||
"lighting": "soft morning haze with warm fill",
|
||||
"style": "intimate educational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Beluga conversations in a frosty arctic inlet at low pale sun",
|
||||
"sceneVariants": [
|
||||
"Beluga conversations in a frosty arctic inlet at low pale sun",
|
||||
"Ice floes drifting and turquoise melt channels",
|
||||
"Clusters of white bodies in shallow water",
|
||||
"Tidal rips and blown spray",
|
||||
"Creaking ice in the distance"
|
||||
],
|
||||
"actions": [
|
||||
"High-pitched vocal exchanges forming social patterns",
|
||||
"Playful bubble exhalation and body rubs",
|
||||
"Coordinated movement to safe polynyas",
|
||||
"Curious approaches to floating ice forms"
|
||||
],
|
||||
"camera": "Cold close-composition with crisp wide-angle inserts",
|
||||
"accents": [
|
||||
"icy rim highlights on white skin",
|
||||
"crisp micro-highlights on breath vapor"
|
||||
],
|
||||
"mood": "curious camaraderie",
|
||||
"lighting": "cool low-angled arctic sun",
|
||||
"style": "poetic polar social study"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Blue whale feeding surge with tiny krill clouds under bright sky",
|
||||
"sceneVariants": [
|
||||
"Blue whale feeding surge with tiny krill clouds under bright sky",
|
||||
"Massive mouth opening in slow fluid arcs",
|
||||
"Swirling clouds of krill glowing in silver bands",
|
||||
"Water churned in long sweeping motions",
|
||||
"Distant gulls riding the updrafts"
|
||||
],
|
||||
"actions": [
|
||||
"Long graceful lunge feeding passes",
|
||||
"Deep subsurface lunges and slow recoveries",
|
||||
"Coordinated feeding with nearby baleen whales",
|
||||
"Exhalation and slow roll after the pass"
|
||||
],
|
||||
"camera": "Large-scale aerial followed by telephoto close-ins on baleen details",
|
||||
"accents": [
|
||||
"long reflective streaks along throat grooves",
|
||||
"tiny krill specular micro-highlights"
|
||||
],
|
||||
"mood": "awe and abundance",
|
||||
"lighting": "bright clear midday with crisp highlights",
|
||||
"style": "epic feeding sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Night spyhop: curious whale raising head to inspect a research light",
|
||||
"sceneVariants": [
|
||||
"Night spyhop: curious whale raising head to inspect a research light",
|
||||
"Dark open sea with a single pin of white light",
|
||||
"Silvery eye and blowhole rim catching glow",
|
||||
"Small ripples radiating from vertical pose",
|
||||
"A distant skiff silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Slow vertical spyhop holding for long seconds",
|
||||
"Head tilt to examine the light source",
|
||||
"Soft answering vocal clicks",
|
||||
"Gradual submergence after inspection"
|
||||
],
|
||||
"camera": "Close stabilized low-light with shallow DOF emphasizing eye and blowhole",
|
||||
"accents": [
|
||||
"cool point-light rim on wet skin",
|
||||
"tiny reflective highlights on the eye"
|
||||
],
|
||||
"mood": "curious caution",
|
||||
"lighting": "very low artificial light in deep night",
|
||||
"style": "intimate research moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Migration night corridor where moonlit silhouettes slip by like slow ghosts",
|
||||
"sceneVariants": [
|
||||
"Migration night corridor where moonlit silhouettes slip by like slow ghosts",
|
||||
"Long dark water with pale lunar sheen",
|
||||
"Occasional spouts punctuating the darkness",
|
||||
"Vast emptiness with distant stars",
|
||||
"Soft fog banks hugging the sea"
|
||||
],
|
||||
"actions": [
|
||||
"Measured breathing intervals and long glides",
|
||||
"Occasional deep calls traveling far",
|
||||
"Slow directional heading set by elders",
|
||||
"Silhouetted tail lifts on long dives"
|
||||
],
|
||||
"camera": "Wide slow-moving crane with soft moonlit inserts",
|
||||
"accents": [
|
||||
"cool moon rim outlining huge silhouettes",
|
||||
"subtle sparkles on distant spray"
|
||||
],
|
||||
"mood": "melancholic grandeur",
|
||||
"lighting": "cool moonlit night with soft contrast",
|
||||
"style": "lyrical nocturnal migration"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Killer whale beach-whacking coordinated stranding at golden late afternoon",
|
||||
"sceneVariants": [
|
||||
"Killer whale beach-whacking coordinated stranding at golden late afternoon",
|
||||
"Shallow sandbar with frantic fish activity",
|
||||
"Black-white bodies sliding onto wet sand",
|
||||
"Birds and seals scattering in panic",
|
||||
"Waves rolling in slow heavy cadence"
|
||||
],
|
||||
"actions": [
|
||||
"Precision beach rushes to wash prey ashore",
|
||||
"Quick coordinated retreats after capture",
|
||||
"Vocal choruses of successful strikes",
|
||||
"Short communal feeding and regrouping"
|
||||
],
|
||||
"camera": "Adrenal handheld with wide and tight impact inserts",
|
||||
"accents": [
|
||||
"warm late-afternoon rim on wet skin",
|
||||
"high micro-detail on wet sand spray"
|
||||
],
|
||||
"mood": "brutal efficiency",
|
||||
"lighting": "warm golden-hour with high dynamic contrast",
|
||||
"style": "intense natural action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Mother and calf teaching bubble-net sidesweeps beneath an overcast sky",
|
||||
"sceneVariants": [
|
||||
"Mother and calf teaching bubble-net sidesweeps beneath an overcast sky",
|
||||
"Concentric ring patterns rising from below",
|
||||
"Murmurations of fish within the net",
|
||||
"Grey overcast flattening color saturation",
|
||||
"Gentle swell wavering above the activity"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated bubble release to trap prey",
|
||||
"Directed lateral swimming to herd fish",
|
||||
"Calf mimicking maternal bubble timing",
|
||||
"Slow surface checking and next-pass adjustments"
|
||||
],
|
||||
"camera": "Medium steady with underwater inserts capturing bubble geometry",
|
||||
"accents": [
|
||||
"soft diffused rim from overcast",
|
||||
"detailed bubble micro-highlights"
|
||||
],
|
||||
"mood": "patient craft",
|
||||
"lighting": "diffuse overcast with even tonal range",
|
||||
"style": "behavioral instructional piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Leaping pilot whale celebration at sunset near rocky islets",
|
||||
"sceneVariants": [
|
||||
"Leaping pilot whale celebration at sunset near rocky islets",
|
||||
"Orange-red horizon behind jagged rocks",
|
||||
"Small fast-bodied whales arcing in groups",
|
||||
"Sea spray catching fiery sunset",
|
||||
"Flocks of terns riding the motion"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid synchronized aerial leaps",
|
||||
"Playful tail-slaps and mutual rubs",
|
||||
"Short bursts of rapid coordinated turns",
|
||||
"Occasional celebratory spyhops"
|
||||
],
|
||||
"camera": "Dynamic aerial-follow with slow-mo leap inserts",
|
||||
"accents": [
|
||||
"fiery rim on splash silhouettes",
|
||||
"glinting micro-highlights on fast skin"
|
||||
],
|
||||
"mood": "exuberant celebration",
|
||||
"lighting": "dramatic sunset with warm saturation",
|
||||
"style": "cinematic coastal spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Elder whale solitary song beneath a thin fog-bank at pre-dawn",
|
||||
"sceneVariants": [
|
||||
"Elder whale solitary song beneath a thin fog-bank at pre-dawn",
|
||||
"Muffled horizon and silent sea",
|
||||
"Mourning long exhalations",
|
||||
"Small surface rings forming slowly",
|
||||
"A single gull drifting overhead"
|
||||
],
|
||||
"actions": [
|
||||
"Long low-frequency calls emitting and reverberating",
|
||||
"Slow rolling and tail wave punctuation",
|
||||
"Pauses to listen for responses",
|
||||
"Gradual retreat beneath the surface after song"
|
||||
],
|
||||
"camera": "Poetic slow dolly with wide negative space composition",
|
||||
"accents": [
|
||||
"soft fog-diffused rim light",
|
||||
"subtle micro-highlights on exhalation vapor"
|
||||
],
|
||||
"mood": "ancient solitude",
|
||||
"lighting": "soft pre-dawn with fog diffusion",
|
||||
"style": "poetic natural portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Calm midday blue whale gliding, barnacles glinting under a high sun",
|
||||
"sceneVariants": [
|
||||
"Calm midday blue whale gliding, barnacles glinting under a high sun",
|
||||
"Slow graceful surface lines",
|
||||
"Tiny barnacle clusters catching light",
|
||||
"Minimal wake and vast sky",
|
||||
"Distant horizon blur"
|
||||
],
|
||||
"actions": [
|
||||
"Slow measured glide with visible throat pleats",
|
||||
"Periodic shallow breathing cycles",
|
||||
"Occasional tail flick for course adjustment",
|
||||
"Long serene dives following the glide"
|
||||
],
|
||||
"camera": "Telephoto long lens with slow stable push-ins on barnacle texture",
|
||||
"accents": [
|
||||
"bright midday specular on barnacle ridges",
|
||||
"subtle skin micro-texture highlights"
|
||||
],
|
||||
"mood": "calm majesty",
|
||||
"lighting": "bright clear midday",
|
||||
"style": "tranquil large-scale portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Massive fluke wave at dusk as a group begins a deep synchronized dive",
|
||||
"sceneVariants": [
|
||||
"Massive fluke wave at dusk as a group begins a deep synchronized dive",
|
||||
"Wide horizon and layered cloud bank",
|
||||
"Large flukes rising in a chorus",
|
||||
"Spray trailing long arcs",
|
||||
"Long twin wakes stretching away"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized rear lifts and coordinated descent",
|
||||
"Long trailing spray and slow fade into blue",
|
||||
"Soft group vocal signals initiating the dive",
|
||||
"A final exhalation pattern before submergence"
|
||||
],
|
||||
"camera": "Epic wide with telephoto cutaways on fluke texture",
|
||||
"accents": [
|
||||
"warm dusk rim on fluke edges",
|
||||
"detailed micro-highlights on salt spray"
|
||||
],
|
||||
"mood": "synchronised ritual",
|
||||
"lighting": "soft dusk warm-cool blend",
|
||||
"style": "grand group choreography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Whales",
|
||||
"scene": "Young pilot whale practicing sharp turns in rough surf at midday",
|
||||
"sceneVariants": [
|
||||
"Young pilot whale practicing sharp turns in rough surf at midday",
|
||||
"Choppy seas and white-capped breakers",
|
||||
"Fast body cuts and nimble maneuvers",
|
||||
"Small waves collapsing in expressive spray",
|
||||
"Nearby rocky shoreline blurred by spray"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid arcing turns and speed bursts",
|
||||
"Sustained energetic porpoising",
|
||||
"Playful close passes with peers",
|
||||
"Short surface bursts to expel excess energy"
|
||||
],
|
||||
"camera": "Fast handheld with high shutter-speed close shots",
|
||||
"accents": [
|
||||
"crisp spray micro-highlights frozen on edges",
|
||||
"strong midday rim on muscle contours"
|
||||
],
|
||||
"mood": "youthful energy",
|
||||
"lighting": "bright harsh midday contrasts",
|
||||
"style": "energetic learning montage"
|
||||
}
|
||||
]
|
||||
427
src/data/animals_and_wildlife_wolves.json
Normal file
427
src/data/animals_and_wildlife_wolves.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Pack moving along a frosted ridge at dawn",
|
||||
"sceneVariants": [
|
||||
"Pack moving along a frosted ridge at dawn",
|
||||
"Grey silhouettes against pale pink sky",
|
||||
"Breath steaming in cold air",
|
||||
"Sparse pines rimmed in hoarfrost",
|
||||
"Tracks tracing a winding path"
|
||||
],
|
||||
"actions": [
|
||||
"Steady purposeful trot in single file",
|
||||
"Lead wolf pausing to scent and listen",
|
||||
"Young following with occasional stumbles",
|
||||
"Soft low rumbles passing through the pack"
|
||||
],
|
||||
"camera": "Wide tracking from side with occasional dolly-ins on faces",
|
||||
"accents": [
|
||||
"soft pastel rim light on fur edges",
|
||||
"crisp frosty micro-detail on whiskers"
|
||||
],
|
||||
"mood": "resolute unity",
|
||||
"lighting": "cool dawn with pale warm highlights",
|
||||
"style": "documentary pack movement"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Alone wolf howling atop a wind-bent rock under a full moon",
|
||||
"sceneVariants": [
|
||||
"Alone wolf howling atop a wind-bent rock under a full moon",
|
||||
"Moon halo and thin high clouds",
|
||||
"Ridge lines cutting dramatic silhouettes",
|
||||
"Sparse skeletal trees",
|
||||
"Distant valleys in shadow"
|
||||
],
|
||||
"actions": [
|
||||
"Long sustained howl echoing",
|
||||
"Head tilt-up and chest swell",
|
||||
"Ears sharp and forward during call",
|
||||
"Echo responses faint from below"
|
||||
],
|
||||
"camera": "Low-angle slow push-in to emphasize howl silhouette",
|
||||
"accents": [
|
||||
"cold silver rim light along muzzle",
|
||||
"glinting eye highlights from moon"
|
||||
],
|
||||
"mood": "lonely grandeur",
|
||||
"lighting": "high-contrast moonlit night",
|
||||
"style": "noir natural portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Pups tumbling near den entrance while parents hunt at midday",
|
||||
"sceneVariants": [
|
||||
"Pups tumbling near den entrance while parents hunt at midday",
|
||||
"Sun-warmed dirt and scattered twigs",
|
||||
"Playfully bared puppy teeth",
|
||||
"Shaded den lip and soft interior",
|
||||
"A parent silhouette leaving"
|
||||
],
|
||||
"actions": [
|
||||
"Rough-and-tumble play and light bites",
|
||||
"Parent returning with a small cache",
|
||||
"Pups tumbling into a sleepy heap",
|
||||
"Occasional playful barks and yips"
|
||||
],
|
||||
"camera": "Close intimate handheld with shallow DOF",
|
||||
"accents": [
|
||||
"warm sun specular on fur tips",
|
||||
"micro-detail on puppy whisker movement"
|
||||
],
|
||||
"mood": "playful safety",
|
||||
"lighting": "bright midday with shaded cool pockets",
|
||||
"style": "tender wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Pack hunting across a snowy plain in overcast light",
|
||||
"sceneVariants": [
|
||||
"Pack hunting across a snowy plain in overcast light",
|
||||
"Low visibility whitened landscape",
|
||||
"Synchronized flank maneuvers",
|
||||
"Puffing breath in cold air",
|
||||
"Distant herd movement as focus"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated circling and feints",
|
||||
"Explosive short chase bursts",
|
||||
"Collapsing into the snow at impact",
|
||||
"Quick tearing and sharing behavior"
|
||||
],
|
||||
"camera": "Dynamic handheld with whip-pans during chase",
|
||||
"accents": [
|
||||
"snow spray frozen in motion",
|
||||
"high-detail frosty fur speculars"
|
||||
],
|
||||
"mood": "tense cooperation",
|
||||
"lighting": "flat overcast winter light",
|
||||
"style": "high-energy nature sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Elder wolf resting beneath amber autumn leaves at dusk",
|
||||
"sceneVariants": [
|
||||
"Elder wolf resting beneath amber autumn leaves at dusk",
|
||||
"Sallow leaf carpets and curling edges",
|
||||
"Slow measured breathing",
|
||||
"A small stream murmuring nearby",
|
||||
"Low-slung warm sky"
|
||||
],
|
||||
"actions": [
|
||||
"Slow grooming of a mottled flank",
|
||||
"Closed eyes and slight ear flicks",
|
||||
"Occasional low conversational rumble",
|
||||
"Calm eye-tracking passing prey"
|
||||
],
|
||||
"camera": "Soft dolly-in into close portrait, emphasizing texture",
|
||||
"accents": [
|
||||
"warm fall rim light on ear edges",
|
||||
"detailed fur texture highlighting age"
|
||||
],
|
||||
"mood": "world-weary calm",
|
||||
"lighting": "warm dusk with soft fill",
|
||||
"style": "character-driven nature moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Nocturnal patrol along a riverbank under star-splattered sky",
|
||||
"sceneVariants": [
|
||||
"Nocturnal patrol along a riverbank under star-splattered sky",
|
||||
"Water reflecting scattered starlight",
|
||||
"Dark reeds and moving silhouettes",
|
||||
"Cool mist curling low",
|
||||
"Owl calls punctuating the soundscape"
|
||||
],
|
||||
"actions": [
|
||||
"Measured pacing with head low",
|
||||
"Occasional lift to scent the air",
|
||||
"Silent pawing at soft mud",
|
||||
"A brief glance toward a distant twinkling"
|
||||
],
|
||||
"camera": "Stabilized tracking with intermittent close eye catches",
|
||||
"accents": [
|
||||
"subtle moon rim on whisker edges",
|
||||
"tiny star glints reflected in wet fur"
|
||||
],
|
||||
"mood": "alert calm",
|
||||
"lighting": "dim cool night with subtle highlights",
|
||||
"style": "nocturnal documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Pack feasting at dusk while ravens circle overhead",
|
||||
"sceneVariants": [
|
||||
"Pack feasting at dusk while ravens circle overhead",
|
||||
"Torn hide and arterial gloss",
|
||||
"Ravens landing on distant stumps",
|
||||
"Grease-streaked muzzles",
|
||||
"Darkening sky lending urgency"
|
||||
],
|
||||
"actions": [
|
||||
"Fierce tugging and dominance assertions",
|
||||
"Low growls establishing order",
|
||||
"Ravens attempting opportunistic snatches",
|
||||
"Sated individuals slowly retreating to guard"
|
||||
],
|
||||
"camera": "Close handheld with gritty texture and selective DOF",
|
||||
"accents": [
|
||||
"wet meat speculars",
|
||||
"warm dusk rim highlighting saliva and fur"
|
||||
],
|
||||
"mood": "raw survival",
|
||||
"lighting": "muted dusk with warm accents",
|
||||
"style": "visceral natural piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "A wolf pair bonding in snowfall beneath pine boughs at dusk",
|
||||
"sceneVariants": [
|
||||
"A wolf pair bonding in snowfall beneath pine boughs at dusk",
|
||||
"Soft flakes clinging to fur",
|
||||
"Tender nuzzles and nose touches",
|
||||
"Warm breath visible between them",
|
||||
"A muffled forest hush"
|
||||
],
|
||||
"actions": [
|
||||
"Mutual grooming and nose-touching",
|
||||
"Quiet rumbles of reassurance",
|
||||
"Playful nips exchanged",
|
||||
"Occasional tail wagging in slow rhythm"
|
||||
],
|
||||
"camera": "Intimate close-ups with gentle dolly circling",
|
||||
"accents": [
|
||||
"soft backlight on falling snow",
|
||||
"crisp micro-detail on snowflakes on fur"
|
||||
],
|
||||
"mood": "tender intimacy",
|
||||
"lighting": "soft twilight with snow diffusion",
|
||||
"style": "romantic wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Ridge lookout: alpha scanning a valley for prey at mid-morning",
|
||||
"sceneVariants": [
|
||||
"Ridge lookout: alpha scanning a valley for prey at mid-morning",
|
||||
"Clear long-distance vistas",
|
||||
"Alert ears and taut posture",
|
||||
"Wind-blown grasses",
|
||||
"Distant movement triggering attention"
|
||||
],
|
||||
"actions": [
|
||||
"Slow head sweeps to gather information",
|
||||
"Subtle weight shifts to prepare for movement",
|
||||
"Low signaling call to nearby packmates",
|
||||
"A final decisive bark to begin the stalk"
|
||||
],
|
||||
"camera": "Telephoto steady with push-ins to eye-line",
|
||||
"accents": [
|
||||
"sunlit rim highlighting jawline",
|
||||
"detailed eye catchlights"
|
||||
],
|
||||
"mood": "focused leadership",
|
||||
"lighting": "clean mid-morning clear light",
|
||||
"style": "commanding wildlife portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Moonless night: faint silhouettes moving through a birch grove",
|
||||
"sceneVariants": [
|
||||
"Moonless night: faint silhouettes moving through a birch grove",
|
||||
"Whitened trunks and dark understory",
|
||||
"Eyes shining like small lamps",
|
||||
"Leaves whispering underfoot",
|
||||
"Ominous quiet all around"
|
||||
],
|
||||
"actions": [
|
||||
"Silent coordinated movement",
|
||||
"Whispered low calls passed quickly",
|
||||
"Avoidance of noisy twigs",
|
||||
"A sudden freeze at an unseen scent"
|
||||
],
|
||||
"camera": "Subtle low-light tracking with close ear and paw inserts",
|
||||
"accents": [
|
||||
"cool reflective highlights on eyes",
|
||||
"slight specular on wet leaves"
|
||||
],
|
||||
"mood": "stealth and tension",
|
||||
"lighting": "very low ambient night",
|
||||
"style": "tense nocturnal scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Pups learning the boundaries of the den as parents watch from distance",
|
||||
"sceneVariants": [
|
||||
"Pups learning the boundaries of the den as parents watch from distance",
|
||||
"Small exploratory sniffs and tentative steps",
|
||||
"Den mouth framed by roots and leaf litter",
|
||||
"Parents lying in alert distance",
|
||||
"Warm soft soil near the entrance"
|
||||
],
|
||||
"actions": [
|
||||
"Short exploratory forays with quick retreats",
|
||||
"Encouraging nudges from older siblings",
|
||||
"A protective parent standing and surveying",
|
||||
"Pups tumbling back into the den for naps"
|
||||
],
|
||||
"camera": "Low tactile close-ups with safety-framing composition",
|
||||
"accents": [
|
||||
"warm shallow highlights on soft fur",
|
||||
"micro-detail in ear and paw textures"
|
||||
],
|
||||
"mood": "curious learning",
|
||||
"lighting": "gentle early morning fill",
|
||||
"style": "educational wildlife vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Winter storm: pack seeking shelter as snow and wind intensify",
|
||||
"sceneVariants": [
|
||||
"Winter storm: pack seeking shelter as snow and wind intensify",
|
||||
"Flurries reducing visibility",
|
||||
"Bodies huddling against wind",
|
||||
"Ear pinning and lowered heads",
|
||||
"Drifts forming around rocks"
|
||||
],
|
||||
"actions": [
|
||||
"Huddling tightly to preserve warmth",
|
||||
"Long slow trudging to windbreaks",
|
||||
"Intermittent adult vigilance checks",
|
||||
"A pup being nudged to better shelter"
|
||||
],
|
||||
"camera": "Handheld close with staccato cuts to convey weather intensity",
|
||||
"accents": [
|
||||
"snow-blown rim light",
|
||||
"frozen breath micro-highlights"
|
||||
],
|
||||
"mood": "survival urgency",
|
||||
"lighting": "gray storm-diffused light",
|
||||
"style": "weather-driven documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Dawn river crossing with low fog and soft backlight",
|
||||
"sceneVariants": [
|
||||
"Dawn river crossing with low fog and soft backlight",
|
||||
"Legs disappearing into shallow mist",
|
||||
"Reflections blurred in soft light",
|
||||
"Delicate reed movement",
|
||||
"Soft pastel sky"
|
||||
],
|
||||
"actions": [
|
||||
"Cautious stepping and trunk-like nose prods",
|
||||
"Quiet, coordinated forward momentum",
|
||||
"A young pup splashing then corrected",
|
||||
"Silent scent checks along bank"
|
||||
],
|
||||
"camera": "Wide poetic crane with gentle close cutaways",
|
||||
"accents": [
|
||||
"volumetric backlight through fog",
|
||||
"soft luminous edge on fur"
|
||||
],
|
||||
"mood": "quiet determination",
|
||||
"lighting": "soft pastel dawn light",
|
||||
"style": "lyrical nature sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Night ambush where wolves coordinate to drive prey toward cover",
|
||||
"sceneVariants": [
|
||||
"Night ambush where wolves coordinate to drive prey toward cover",
|
||||
"Shards of moon through broken clouds",
|
||||
"Low frantic animal movement",
|
||||
"Distant panicked calls from prey",
|
||||
"Dark shapes darting between trees"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized flanking and quick bursts",
|
||||
"Short high-energy chases",
|
||||
"A quick takedown and immediate regrouping",
|
||||
"Shared feeding and watch rotation"
|
||||
],
|
||||
"camera": "Dynamic handheld with close fast cuts and slow-mo on impact",
|
||||
"accents": [
|
||||
"staccato wet fur speculars",
|
||||
"motion-blur dust and breath accents"
|
||||
],
|
||||
"mood": "high-adrenaline predation",
|
||||
"lighting": "fragmented moonlight and shadow",
|
||||
"style": "intense action sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Alpha pair greeting ritual on a clear mid-morning ridge",
|
||||
"sceneVariants": [
|
||||
"Alpha pair greeting ritual on a clear mid-morning ridge",
|
||||
"Nose-to-nose gentle pressing",
|
||||
"Tail posture and soft vocal exchanges",
|
||||
"Nearby pack lying restful",
|
||||
"Sunlit grasses swaying"
|
||||
],
|
||||
"actions": [
|
||||
"Mutual sniffing and soft nuzzles",
|
||||
"Brief play-bows exchanged",
|
||||
"Low contented rumbles",
|
||||
"Pair walking side-by-side after ritual"
|
||||
],
|
||||
"camera": "Medium close steady with soft focus background",
|
||||
"accents": [
|
||||
"warm rim on cheek contours",
|
||||
"detailed whisker catches"
|
||||
],
|
||||
"mood": "affectionate leadership",
|
||||
"lighting": "clear mid-morning sunlight",
|
||||
"style": "intimate social vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "Subtle territorial display at twilight near den perimeter",
|
||||
"sceneVariants": [
|
||||
"Subtle territorial display at twilight near den perimeter",
|
||||
"Raised hackles and slow vocalizations",
|
||||
"Rim of light from setting sun",
|
||||
"Markers in foreground and worn trails",
|
||||
"Wind carrying distant scents"
|
||||
],
|
||||
"actions": [
|
||||
"Slow circling and scent-marking",
|
||||
"Short assertive barks",
|
||||
"A subordinate yielding and stepping back",
|
||||
"Group settling after brief display"
|
||||
],
|
||||
"camera": "Steady lateral tracking with tight nose-to-ground cutaways",
|
||||
"accents": [
|
||||
"warm twilight rim",
|
||||
"high-detail on scent-marking texture"
|
||||
],
|
||||
"mood": "calm assertion",
|
||||
"lighting": "warm-cool twilight mix",
|
||||
"style": "behavioral documentary scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Wolves",
|
||||
"scene": "A solitary wolf scavenging at a moonlit carcass with barn owls watching",
|
||||
"sceneVariants": [
|
||||
"A solitary wolf scavenging at a moonlit carcass with barn owls watching",
|
||||
"Silvered fur and low crouch",
|
||||
"Owls perched like sentries",
|
||||
"Sparse grass and a blood-dark stain",
|
||||
"Far-off wind turbines faintly blinking"
|
||||
],
|
||||
"actions": [
|
||||
"Patient picking at remains",
|
||||
"Occasional bite with focused intensity",
|
||||
"Owls flapping and repositioning",
|
||||
"A quick twitch at a sudden scent"
|
||||
],
|
||||
"camera": "Close handheld with high detail on snout and jaw",
|
||||
"accents": [
|
||||
"cold moon rim and wet specular highlights",
|
||||
"tiny feather micro-highlights on owl plumage"
|
||||
],
|
||||
"mood": "solitary necessity",
|
||||
"lighting": "cool moonlit scene",
|
||||
"style": "intimate nocturnal study"
|
||||
}
|
||||
]
|
||||
402
src/data/childhood_and_family_adoption.json
Normal file
402
src/data/childhood_and_family_adoption.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim living room at dusk where new parents receive the little one's photo for the first time (dark/anticipatory)",
|
||||
"sceneVariants": [
|
||||
"A printed photo held trembling between two hands",
|
||||
"A stack of official papers on the coffee table",
|
||||
"Soft toys wrapped and ready in a small box",
|
||||
"A pair of tiny shoes placed ceremonially on a cushion",
|
||||
"A faint ringtone paused as everyone leans in"
|
||||
],
|
||||
"actions": [
|
||||
"Slow, careful reading of a short background note attached to the photo",
|
||||
"Shared breath and a tearful, relieved laugh",
|
||||
"Turning the image to observe small facial details",
|
||||
"A gentle vow whispered to protect and cherish"
|
||||
],
|
||||
"camera": "Intimate close-ups on hands and the photo with occasional wide on the couple's expressions",
|
||||
"accents": [
|
||||
"paper micro-fiber and soft lamp micro-halo",
|
||||
"skin micro-tear highlights in warm light"
|
||||
],
|
||||
"mood": "quiet reverence",
|
||||
"lighting": "single warm lamp with deep surrounding shadow",
|
||||
"style": "private emotional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright meeting-room handshake as birth-parents and adoptive parents exchange letters and blessings (light/formal)",
|
||||
"sceneVariants": [
|
||||
"A round table with tea cups and a folder of letters",
|
||||
"Soft eye contact and gentle smiles between adults",
|
||||
"A volunteer mediator offering tissues and water",
|
||||
"A small plant symbolizing growth on the table",
|
||||
"A photographer capturing the formal moment discreetly"
|
||||
],
|
||||
"actions": [
|
||||
"Reading short letters aloud with measured dignity",
|
||||
"Handshakes exchanged and supportive nods",
|
||||
"A brief hug signifying mutual goodwill",
|
||||
"Signing an acknowledgment or memory token exchange"
|
||||
],
|
||||
"camera": "Medium two-shot with slow pans to hands and letter pages",
|
||||
"accents": [
|
||||
"paper micro-ink grain and porcelain cup micro-gloss",
|
||||
"plant micro-leaf detail as symbolic accent"
|
||||
],
|
||||
"mood": "respectful closure",
|
||||
"lighting": "bright soft daylight with neutral fill",
|
||||
"style": "ceremonial human-centred vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim homecoming night where the child arrives and first exploratory steps are taken through a new house (dark/nervous)",
|
||||
"sceneVariants": [
|
||||
"Suitcase with a favorite blanket placed on a bed",
|
||||
"A hallway light switched on as the family enters",
|
||||
"A child peeking from a parent's arms at new rooms",
|
||||
"A pet tentatively sniffing the new arrival",
|
||||
"A small nightlight shaped like an animal"
|
||||
],
|
||||
"actions": [
|
||||
"Slow guided tour of a bedroom and choice of a favorite toy",
|
||||
"A quiet introduction of routines and where things are kept",
|
||||
"A settling ritual of reading a short welcome story",
|
||||
"A final soft tuck-in with a whispered reassurance"
|
||||
],
|
||||
"camera": "Homey point-of-view tracking, close on child's fingers exploring textures",
|
||||
"accents": [
|
||||
"blanket micro-weave and door paint micro-chip details",
|
||||
"low lamp micro-glow on a bedside token"
|
||||
],
|
||||
"mood": "tentative warmth",
|
||||
"lighting": "very low warm bedside lights with cool ambient",
|
||||
"style": "intimate domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright park introduction picnic where extended family meets the newly adopted child (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"A long picnic table with colorful plates and banners",
|
||||
"A small cake with 'Welcome' icing",
|
||||
"Children running and intertwining with new cousins",
|
||||
"A slideshow of family photos on a small laptop",
|
||||
"A hand-painted 'Family' sign made by kids"
|
||||
],
|
||||
"actions": [
|
||||
"Formal 'meet and greet' where each relative offers a small gift",
|
||||
"Shared anecdotes and gentle welcome speeches",
|
||||
"Children show toys and share games to build rapport",
|
||||
"A group portrait to mark the occasion"
|
||||
],
|
||||
"camera": "Wide celebratory coverage with close reaction shots and candid play inserts",
|
||||
"accents": [
|
||||
"fabric micro-print on banners and cake micro-icing texture",
|
||||
"sun micro-rim on smiling faces"
|
||||
],
|
||||
"mood": "open joy",
|
||||
"lighting": "bright afternoon sun with diffuser fill",
|
||||
"style": "communal celebration vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim agency office where adoption paperwork is finalized and certificates exchanged (dark/formal)",
|
||||
"sceneVariants": [
|
||||
"A signed certificate in a crisp folder",
|
||||
"An official seal pressed into paper",
|
||||
"A social worker offering a measured, kind smile",
|
||||
"A child drawing quietly at a corner table",
|
||||
"A small pen basking in a lamplight pool"
|
||||
],
|
||||
"actions": [
|
||||
"Formal signatures with explanatory comments from the worker",
|
||||
"An exchange of small keepsakes recording the day",
|
||||
"A final review of contact and support arrangements",
|
||||
"A controlled celebratory clap from participants"
|
||||
],
|
||||
"camera": "Documentary close-ups on hands, seals and faces with shallow depth",
|
||||
"accents": [
|
||||
"seal micro-emboss and folder micro-cardstock grain",
|
||||
"lamplight micro-reflection on ink"
|
||||
],
|
||||
"mood": "solemn accomplishment",
|
||||
"lighting": "low practical desk lamp with neutral fill",
|
||||
"style": "institutional human vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright first-day-of-school portrait where adoptive parents stand proudly as the child boards the bus (light/proud)",
|
||||
"sceneVariants": [
|
||||
"A small backpack with a name tag attached",
|
||||
"A bright school bus idling at the curb",
|
||||
"A parent kneeling to adjust a hood and snap a photo",
|
||||
"A teacher waving from the bus steps",
|
||||
"A lunchbox with a heart sticker"
|
||||
],
|
||||
"actions": [
|
||||
"A steadying hug and whispered encouragement at the curb",
|
||||
"A click of a photo capturing the anxious-excited expression",
|
||||
"A brief coach for the bus routine and goodbyes",
|
||||
"A watching wave until the bus disappears"
|
||||
],
|
||||
"camera": "Documentary street-level with close-in family reaction and wide bus pull-back",
|
||||
"accents": [
|
||||
"fabric micro-stitch on backpack and bus micro-paint chip detail",
|
||||
"sun micro-reflection on a lunchbox"
|
||||
],
|
||||
"mood": "proud transition",
|
||||
"lighting": "morning sunlight with crisp shadows",
|
||||
"style": "transition milestone vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim bedtime ritual where adoptive parent narrates a story about the child's arrival and family history (dark/soothing)",
|
||||
"sceneVariants": [
|
||||
"A small storybook with a dedicated 'welcome' page",
|
||||
"A mobile turning slowly overhead",
|
||||
"A parent's thumb tracing a line on the page",
|
||||
"A steady nightlight casting soothing shapes",
|
||||
"A familiar lullaby hummed softly"
|
||||
],
|
||||
"actions": [
|
||||
"Slow storytelling interleaving facts with reassuring fantasy",
|
||||
"A parent pauses for questions and answers gently",
|
||||
"A closing blessing or family mantra repeated nightly",
|
||||
"A final kiss and hand on the chest until sleep"
|
||||
],
|
||||
"camera": "Tight intimate shots on face and book pages with soft pull-back",
|
||||
"accents": [
|
||||
"paper micro-fiber and nightlight micro-halo on faces",
|
||||
"blanket micro-weave in warm focus"
|
||||
],
|
||||
"mood": "reassuring belonging",
|
||||
"lighting": "very low warm nightlamp with cool moon contrast",
|
||||
"style": "sonic domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright family counseling session where open conversation and bonding exercises are guided (light/therapeutic)",
|
||||
"sceneVariants": [
|
||||
"A comfortable couch and a circle of supportive chairs",
|
||||
"A counselor with a gentle notebook and soft voice",
|
||||
"A whiteboard noting coping strategies and routines",
|
||||
"Toys or emotion cards used for child expression",
|
||||
"A small box of comfort items selected together"
|
||||
],
|
||||
"actions": [
|
||||
"Guided exercises to build trust through predictable routines",
|
||||
"Role-play and reflective listening between parent and child",
|
||||
"Agreement on family rituals to anchor identity",
|
||||
"A follow-up plan and home exercises to reinforce bonding"
|
||||
],
|
||||
"camera": "Calm medium coverage with close reaction inserts and material shots",
|
||||
"accents": [
|
||||
"paper micro-ink and toy micro-fabric detail",
|
||||
"counselor micro-pen micro-glint"
|
||||
],
|
||||
"mood": "hopeful repair",
|
||||
"lighting": "soft daylight with warm fill",
|
||||
"style": "therapeutic family vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim reflective anniversary where adoptive parents mark the day with a private ritual (dark/intimate)",
|
||||
"sceneVariants": [
|
||||
"A small candlelit cake with the adoption date written",
|
||||
"A hand-made certificate or scrapbook page unveiled",
|
||||
"A low playlist of meaningful songs playing softly",
|
||||
"Photos of the child's journey arranged on a mantel",
|
||||
"A quiet letter read aloud to commemorate growth"
|
||||
],
|
||||
"actions": [
|
||||
"Reading a letter of gratitude to one another and the child",
|
||||
"A small ceremony of thanks sometimes shared with close friends",
|
||||
"Adding a new page to a family memory book",
|
||||
"A brief moment of silence honoring the path they took"
|
||||
],
|
||||
"camera": "Intimate close-ups on faces and the memory book with soft bokeh",
|
||||
"accents": [
|
||||
"candle micro-flame shimmer and paper micro-tooth detail",
|
||||
"voice micro-breath captured low in audio"
|
||||
],
|
||||
"mood": "reverent celebration",
|
||||
"lighting": "warm candlelight with deep shadow",
|
||||
"style": "keepsake ritual vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright community support group meeting where adoptive families share stories and resources (light/supportive)",
|
||||
"sceneVariants": [
|
||||
"A circle of chairs and name tags on small tables",
|
||||
"A whiteboard listing topics and resource links",
|
||||
"A facilitator encouraging sharing and confidentiality",
|
||||
"Children in a supervised play corner nearby",
|
||||
"A table of pamphlets and local service cards"
|
||||
],
|
||||
"actions": [
|
||||
"Parents exchange practical tips and emotional support",
|
||||
"A facilitated sharing of success stories and challenges",
|
||||
"Distribution of resource lists and local contacts",
|
||||
"A group closing ritual offering affirmations"
|
||||
],
|
||||
"camera": "Wide inclusive framing with close inserts on resource materials and faces",
|
||||
"accents": [
|
||||
"paper micro-print clarity and chair micro-fabric texture",
|
||||
"name-tag micro-edge detail"
|
||||
],
|
||||
"mood": "communal resilience",
|
||||
"lighting": "bright community room light with soft fill",
|
||||
"style": "peer-support vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim legal-closure moment where final adoption decree is read and the family rings a small bell (dark/official)",
|
||||
"sceneVariants": [
|
||||
"A stamped document on a legal folder",
|
||||
"A magistrate or judge offering formal words",
|
||||
"A small ceremonial bell or ribbon to signify closure",
|
||||
"A child given a small commemorative token",
|
||||
"An official-issue certificate framed later for the home"
|
||||
],
|
||||
"actions": [
|
||||
"Reading of the legal decree with careful clarity",
|
||||
"A formal handover of the certificate to the parents",
|
||||
"A symbolic ringing or ribbon-cut to mark the legal union",
|
||||
"Photos taken to memorialize the official day"
|
||||
],
|
||||
"camera": "Documentary close-ups of documents and faces with respectful distance",
|
||||
"accents": [
|
||||
"seal micro-emboss and certificate micro-paper grain",
|
||||
"judge micro-robe micro-fabric detail"
|
||||
],
|
||||
"mood": "formal completion",
|
||||
"lighting": "soft institutional daylight with neutral fill",
|
||||
"style": "official ceremonial vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright multicultural family montage showing blended heritage celebrations after adoption (light/cultural)",
|
||||
"sceneVariants": [
|
||||
"A shared table of traditional dishes from multiple cultures",
|
||||
"Family members dress in varied cultural garments",
|
||||
"Children learning a traditional song or dance",
|
||||
"A fusion of symbols and artifacts displayed respectfully",
|
||||
"A community elder offering a blessing"
|
||||
],
|
||||
"actions": [
|
||||
"Sharing cultural stories and introducing traditions",
|
||||
"Collaborative ritual where the child is included in practices",
|
||||
"Exchanging small tokens that blend family histories",
|
||||
"A final family dance or group photo to seal inclusion"
|
||||
],
|
||||
"camera": "Vibrant wide and close cultural detail inserts with rhythmic editing",
|
||||
"accents": [
|
||||
"textile micro-embroidery and food micro-texture detail",
|
||||
"instrument micro-string micro-vibration"
|
||||
],
|
||||
"mood": "inclusive celebration",
|
||||
"lighting": "bright warm festival light with soft fill",
|
||||
"style": "cultural-family montage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim hospital farewell where birth family and adoptive parents share a quiet exchange before parting (dark/poignant)",
|
||||
"sceneVariants": [
|
||||
"A small visiting room with a tray of tea and tissue box",
|
||||
"A parent holding newborn while others observe in respectful distance",
|
||||
"A folded letter exchanged in sealed envelope",
|
||||
"A nurse respectfully allowing private time",
|
||||
"A quiet corridor outside with a bench for reflection"
|
||||
],
|
||||
"actions": [
|
||||
"Hushed words of blessing and reassurance exchanged",
|
||||
"A gentle hug that honors grief and hope simultaneously",
|
||||
"A careful, compassionate handoff of the child into adoptive care",
|
||||
"A slow departure with lingering small gestures"
|
||||
],
|
||||
"camera": "Tender close-ups on faces and hands, with long-shot departures for emotional closure",
|
||||
"accents": [
|
||||
"tissue micro-fiber and envelope micro-seal texture",
|
||||
"soft hospital lighting micro-reflection"
|
||||
],
|
||||
"mood": "sacred empathy",
|
||||
"lighting": "low practical hospital light with cool fill",
|
||||
"style": "emotional human vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright urban courthouse portrait outside after decree where family takes a first public photo (light/affirming)",
|
||||
"sceneVariants": [
|
||||
"Steps of a courthouse and flags waving above",
|
||||
"A small framed certificate held proudly",
|
||||
"Well-wishers smiling from a distance",
|
||||
"A child's new name written on a chalkboard sign",
|
||||
"A bouquet given by a friend to mark the day"
|
||||
],
|
||||
"actions": [
|
||||
"A group photo with jubilant expressions",
|
||||
"A brief press of a hand to the child's head in blessing",
|
||||
"Congratulatory embraces with extended family",
|
||||
"A quick sidewalk snack to celebrate the milestone"
|
||||
],
|
||||
"camera": "Wide civic portrait framing with close reactions and certificate detail",
|
||||
"accents": [
|
||||
"stone micro-porosity and certificate micro-emboss detail",
|
||||
"flag micro-thread ripples in wind"
|
||||
],
|
||||
"mood": "public affirmation",
|
||||
"lighting": "bright daylight with crisp civic contrast",
|
||||
"style": "formal public vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Dim bedtime self-affirmation where an adopted teen writes in a journal about identity and belonging (dark/reflective)",
|
||||
"sceneVariants": [
|
||||
"A low desk lamp and a lined journal open",
|
||||
"Sticky notes with supportive phrases around the mirror",
|
||||
"A worn playlist of meaningful songs cued softly",
|
||||
"A small framed photo of both birth and adoptive families",
|
||||
"A comforting mug with a hand-written note beside it"
|
||||
],
|
||||
"actions": [
|
||||
"Writing feelings and milestones in a private diary",
|
||||
"Rereading older entries to reflect on growth",
|
||||
"A small ritual of lighting a candle to mark a personal anniversary",
|
||||
"Tucking the journal away with a sense of resolve"
|
||||
],
|
||||
"camera": "Close macro on handwriting and medium pull-back to capture posture",
|
||||
"accents": [
|
||||
"ink micro-pooling and paper micro-tooth texture",
|
||||
"lamp micro-halo and warm page glow"
|
||||
],
|
||||
"mood": "internal reconciliation",
|
||||
"lighting": "very low warm desk lamp with cool room contrast",
|
||||
"style": "personal reflective vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Adoption",
|
||||
"scene": "Bright school celebration where the child is honored in class and new name is officially read (light/acknowledging)",
|
||||
"sceneVariants": [
|
||||
"Classroom decorated with congratulatory banners",
|
||||
"Teacher reading a short introduction with applause",
|
||||
"A seat of honor with a small certificate and ribbon",
|
||||
"Parents and classmates smiling and clapping",
|
||||
"A photo display showing the child's journey"
|
||||
],
|
||||
"actions": [
|
||||
"A short address acknowledging the child's new family and name",
|
||||
"Classmates offer handmade cards and art",
|
||||
"A celebratory snack and group game to include everyone",
|
||||
"A photo session capturing class and family moments"
|
||||
],
|
||||
"camera": "Warm close-in classroom coverage with reaction and detail shots",
|
||||
"accents": [
|
||||
"card micro-paper grain and ribbon micro-fabric sheen",
|
||||
"chalkboard micro-dust in soft focus"
|
||||
],
|
||||
"mood": "inclusive celebration",
|
||||
"lighting": "bright classroom daylight with gentle fill",
|
||||
"style": "acknowledgement vignette"
|
||||
}
|
||||
]
|
||||
452
src/data/childhood_and_family_babies.json
Normal file
452
src/data/childhood_and_family_babies.json
Normal file
@ -0,0 +1,452 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Dim nursery where a parent soothes a crying newborn in soft rocking motion (dark/soothing)",
|
||||
"sceneVariants": [
|
||||
"A small nightlight casting a warm halo over the crib",
|
||||
"Parent humming an improvised lullaby into the baby's ear",
|
||||
"Gentle swaying of the mobile above",
|
||||
"A sleepy pet waiting at the nursery door",
|
||||
"A soft hand rubbing the baby's back until calm"
|
||||
],
|
||||
"actions": [
|
||||
"Slow, rhythmic rocking synchronized with hushes",
|
||||
"A diaper check and quiet adjustments without waking fully",
|
||||
"A calming shush and a slow temperature check of the blanket",
|
||||
"Shifting the baby into a swaddled hold that encourages rest"
|
||||
],
|
||||
"camera": "Tight two-shot on faces and hands with slow push-in on closed eyes",
|
||||
"accents": [
|
||||
"blanket weave micro-detail and tiny skin micro-texture",
|
||||
"nightlight micro-halo with soft bokeh"
|
||||
],
|
||||
"mood": "reassuring calm",
|
||||
"lighting": "very low warm lamp with cool background contrast",
|
||||
"style": "intimate domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Late-night feeding with bottle in a dim kitchen while a parent rocks in a chair (dark/tender)",
|
||||
"sceneVariants": [
|
||||
"Steam ghosting from a recently warmed bottle",
|
||||
"A parent reading nutrition app notes on their phone",
|
||||
"A soft towel draped over the shoulder",
|
||||
"A sleepy lullaby playing from the radio",
|
||||
"A clock showing the small hour of night"
|
||||
],
|
||||
"actions": [
|
||||
"Slow bottle feeding with careful burping breaks",
|
||||
"Parent hums a tune to lull the baby",
|
||||
"A quick glance to check the baby's breathing pattern",
|
||||
"Gentle patting until the infant's eyes flutter closed"
|
||||
],
|
||||
"camera": "Close on bottle-to-mouth with occasional wide reveal of the chair and parent",
|
||||
"accents": [
|
||||
"bottle droplet micro-sheen and towel fiber micro-detail",
|
||||
"soft lamp micro-glow on cheek"
|
||||
],
|
||||
"mood": "tender vigilance",
|
||||
"lighting": "isolated warm chair lamp with cool kitchen shadows",
|
||||
"style": "quiet caregiving vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Nighttime skin-to-skin kangaroo care in a dim hospital room after birth (dark/intimate)",
|
||||
"sceneVariants": [
|
||||
"A fresh ID band still on the infant's ankle",
|
||||
"Parents sharing a whispered awe as monitors breathe rhythmically",
|
||||
"A small knitted cap keeping the baby's head warm",
|
||||
"Gloved nurse quietly checking vitals",
|
||||
"Blanket tucked to preserve warmth"
|
||||
],
|
||||
"actions": [
|
||||
"Slow deep breaths mirrored between parent and newborn",
|
||||
"Parent murmurs the baby's name for the first time",
|
||||
"A nurse adjusts a blanket and smiles softly",
|
||||
"A bonding pause where the world reduces to heartbeat and breath"
|
||||
],
|
||||
"camera": "Tight chest-to-face coverage with soft focus on the newborn",
|
||||
"accents": [
|
||||
"skin micro-pore detail and knitted cap micro-fiber",
|
||||
"monitor micro-LED pulse reflection"
|
||||
],
|
||||
"mood": "precious intimacy",
|
||||
"lighting": "very low clinical lamp with soft blue monitor glow",
|
||||
"style": "medical-emotional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Late-night diaper-change station with soft wipes and gentle songs (dark/calm)",
|
||||
"sceneVariants": [
|
||||
"A changing pad with a warm wipe warmer nearby",
|
||||
"Small diaper folded and ready in a stack",
|
||||
"A plush toy perched within reach",
|
||||
"Quiet hum of a baby monitor in another room",
|
||||
"A small jar of petroleum or cream opened briefly"
|
||||
],
|
||||
"actions": [
|
||||
"Careful cleaning and quick, practiced motions to minimize fussing",
|
||||
"A soft song or playful face to distract the infant",
|
||||
"A final gentle massage and secure fastening of the fresh diaper",
|
||||
"Tucking in a swaddle with a calming ritual phrase"
|
||||
],
|
||||
"camera": "Overhead insert of hands and a close reaction on the baby's face",
|
||||
"accents": [
|
||||
"wipe moisture micro-sheen and diaper fastening micro-detail",
|
||||
"soft fabric micro-pile under small limbs"
|
||||
],
|
||||
"mood": "practical tenderness",
|
||||
"lighting": "very low nursery lamp with small directional fill",
|
||||
"style": "routine caregiving vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Quiet midnight as a parent logs baby milestones and feeding times into a notebook (dark/reflective)",
|
||||
"sceneVariants": [
|
||||
"A pen scratching soft lines in a worn notebook",
|
||||
"A small pile of sticky notes with feeding times written",
|
||||
"A measured syringe for supplemental feeding on the table",
|
||||
"A tiny onesie folded with care nearby",
|
||||
"A dim lamp creating intimate pools of light"
|
||||
],
|
||||
"actions": [
|
||||
"Recording times and notes with a tired but focused hand",
|
||||
"Rereading earlier entries to celebrate small progress",
|
||||
"A short whisper of gratitude before closing the book",
|
||||
"Tucking the notebook back into a drawer for later review"
|
||||
],
|
||||
"camera": "Close macro on handwriting and medium on posture",
|
||||
"accents": [
|
||||
"ink micro-pooling and paper micro-tooth texture",
|
||||
"lamp micro-halo on pen and fingertip"
|
||||
],
|
||||
"mood": "quiet diligence",
|
||||
"lighting": "low desk lamp with cool room shadow",
|
||||
"style": "personal care vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Early-morning soft sunlight through nursery curtains as baby coos during tummy time (light/gentle)",
|
||||
"sceneVariants": [
|
||||
"A colorful playmat with high-contrast toys",
|
||||
"A parent nearby encouraging with a mirror and smile",
|
||||
"A window with birds flitting in the frame",
|
||||
"A soft blanket draped over a nearby rocker",
|
||||
"A small table holding a wellness thermometer"
|
||||
],
|
||||
"actions": [
|
||||
"Baby lifts a head and smiles at a mirror toy",
|
||||
"Parent claps softly to encourage reaching",
|
||||
"A quick exchange of eye contact and delighted laugh",
|
||||
"A reward of a small soft toy for progress"
|
||||
],
|
||||
"camera": "Low-angle close to mat capturing small movements and expression",
|
||||
"accents": [
|
||||
"playmat stitch micro-detail and toy fabric micro-fiber",
|
||||
"sunbeam dust micro-motes in shallow depth"
|
||||
],
|
||||
"mood": "playful discovery",
|
||||
"lighting": "soft morning sun with diffuse fill",
|
||||
"style": "tender developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Bright midday clinic check where a nurse measures weight and length with warm interaction (light/clinical but friendly)",
|
||||
"sceneVariants": [
|
||||
"A printed growth chart on the wall",
|
||||
"A tiny measuring board with a sliding headpiece",
|
||||
"A digital scale showing grams and grams incrementing",
|
||||
"A sticker reward placed on the child's record",
|
||||
"A small parent-facing leaflet about feeding"
|
||||
],
|
||||
"actions": [
|
||||
"Weighing and measuring with patient explanation of results",
|
||||
"A nurse making notes and smiling to reassure",
|
||||
"Parents ask questions about feeding or sleep patterns",
|
||||
"A sticker awarded and a friendly send-off"
|
||||
],
|
||||
"camera": "Medium two-shot with close-ups on the measuring device and parents' reactions",
|
||||
"accents": [
|
||||
"scale micro-digits and measuring board micro-ruler detail",
|
||||
"paper leaflet micro-gloss and pen micro-ink"
|
||||
],
|
||||
"mood": "practical reassurance",
|
||||
"lighting": "bright clinical daylight with neutral fill",
|
||||
"style": "informational healthcare vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Sunny park stroller walk where baby smiles at passing dogs and leaves (light/outdoor delight)",
|
||||
"sceneVariants": [
|
||||
"A sun canopy casting patterned shade over the stroller",
|
||||
"A small soft toy attached to the handlebar",
|
||||
"Neighbors nodding and greeting as they pass",
|
||||
"A path lined with flowering hedges",
|
||||
"A dog briefly sniffing the stroller wheel"
|
||||
],
|
||||
"actions": [
|
||||
"Baby tracks movement with bright, curious eyes",
|
||||
"Parent points out colors and objects while narrating",
|
||||
"A small feed break with a bottle and a contented sigh",
|
||||
"A gentle nap lulled by motion and fresh air"
|
||||
],
|
||||
"camera": "Side-tracking steady cam capturing strolling rhythm and facial reactions",
|
||||
"accents": [
|
||||
"stroller fabric micro-weave and leaf vein micro-detail",
|
||||
"sun micro-rim highlights on cheeks"
|
||||
],
|
||||
"mood": "contented curiosity",
|
||||
"lighting": "bright outdoor sun with soft fill",
|
||||
"style": "slice-of-life family outing"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Afternoon baby massage session with oil and gentle strokes on a changing mat (light/soothing)",
|
||||
"sceneVariants": [
|
||||
"A soft blanket under the baby and a small bowl of warmed oil",
|
||||
"Calming instrumental music at low volume",
|
||||
"A small towel ready for quick wipes",
|
||||
"A parent practicing taught stroke patterns from a class",
|
||||
"A bottle of baby lotion with a cheerful label"
|
||||
],
|
||||
"actions": [
|
||||
"Slow rhythmic strokes aiding digestion and relaxation",
|
||||
"Gentle bicycle legs and tummy rubs to ease gas",
|
||||
"Coos and small smiles in response to touch",
|
||||
"A final cuddle and dressing into fresh clothes"
|
||||
],
|
||||
"camera": "Close macro on hands and limbs with medium pull-back to show interaction",
|
||||
"accents": [
|
||||
"oil micro-sheen on skin and blanket micro-fiber detail",
|
||||
"soft music micro-waveform shown on a small phone screen"
|
||||
],
|
||||
"mood": "nurturing calm",
|
||||
"lighting": "clear afternoon window light with warm fill",
|
||||
"style": "care ritual vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Dim co-sleeping moment where parents and infant share a safe sleep setup (dark/connected)",
|
||||
"sceneVariants": [
|
||||
"A specially designed bedside co-sleeper attached to the adult bed",
|
||||
"Soft layered blankets and a breathable mattress pad",
|
||||
"A small nightlight on the dresser dimmed low",
|
||||
"A sleep-safe monitor with breathing sensor lights",
|
||||
"An open window letting cool air in"
|
||||
],
|
||||
"actions": [
|
||||
"Tucking the baby into the co-sleeper with a calming hum",
|
||||
"Parent checks alignment and breathing monitor calmly",
|
||||
"A quiet exchange between partners before returning to sleep",
|
||||
"A protective hand rests near the baby as sleep deepens"
|
||||
],
|
||||
"camera": "Soft wide across the bed with focus pulls to hands and monitor lights",
|
||||
"accents": [
|
||||
"fabric micro-weave of mattress and monitor LED micro-glow",
|
||||
"breath micro-rhythm reflected in subtle rise"
|
||||
],
|
||||
"mood": "secure intimacy",
|
||||
"lighting": "very low ambient with soft bedside glow",
|
||||
"style": "domestic sleep vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Light-filled newborn photoshoot at home capturing tiny features and parent smiles (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"White wraps and neutral textures highlighting the baby's skin",
|
||||
"Parents gently cradling for close-up portraits",
|
||||
"A soft basket with knitted blankets for styling",
|
||||
"A small name sign leaning on a stool",
|
||||
"Natural window light used as the primary source"
|
||||
],
|
||||
"actions": [
|
||||
"Delicate posing that keeps baby comfortable and warm",
|
||||
"Parents exchange soft smiles and words of awe",
|
||||
"Small adjustments to wraps and props for variation",
|
||||
"A final set includes a candid yawn captured"
|
||||
],
|
||||
"camera": "Macro detail shots alternating with medium family portraits",
|
||||
"accents": [
|
||||
"wrapping knit micro-fiber and skin micro-detail on tiny fingers",
|
||||
"window micro-rim backlight on hair"
|
||||
],
|
||||
"mood": "joyful tenderness",
|
||||
"lighting": "bright natural window light with soft reflectors",
|
||||
"style": "intimate portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Bright immunization clinic visit where a nurse gently vaccinates with professional warmth (light/reassuring)",
|
||||
"sceneVariants": [
|
||||
"A small arm exposed for a quick injection",
|
||||
"A sticker or small toy reward awaiting on the tray",
|
||||
"A parent offering distraction and praise",
|
||||
"A neat schedule card stamped with today's visit",
|
||||
"A sanitized cotton pad applied post-injection"
|
||||
],
|
||||
"actions": [
|
||||
"Swift, practiced administration with calming words from nurse",
|
||||
"Parent holds and soothes with immediate praise",
|
||||
"A small cry followed by rapid calming and a reward",
|
||||
"Notes entered into the child's health record"
|
||||
],
|
||||
"camera": "Tight action insert on the site, reaction on the parent's face, and nurse's practiced hands",
|
||||
"accents": [
|
||||
"needle micro-reflection and cotton fiber micro-detail",
|
||||
"clinic micro-LED lighting micro-speculars"
|
||||
],
|
||||
"mood": "protective reassurance",
|
||||
"lighting": "bright clinical daylight with neutral fill",
|
||||
"style": "medical caregiving vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Dim lullaby duet where two parents take turns singing to the baby before sleep (dark/harmonious)",
|
||||
"sceneVariants": [
|
||||
"Both parents leaning close to a sleeping infant in the crib",
|
||||
"A quiet guitar or ukulele played softly in the corner",
|
||||
"A glass of water and a small handkerchief on the nightstand",
|
||||
"A photograph of a pet sleeping nearby",
|
||||
"The faint sound of distant traffic like a rhythmic backdrop"
|
||||
],
|
||||
"actions": [
|
||||
"Alternating verses with gentle harmonies to soothe",
|
||||
"A final soft hum while the baby drifts off",
|
||||
"A reassuring stroke across a tiny forehead",
|
||||
"Parents exchange a relieved smile as they tiptoe out"
|
||||
],
|
||||
"camera": "Soft intimate medium with close vocal mouth inserts and hands",
|
||||
"accents": [
|
||||
"string micro-vibration detail and vocal breath micro-threads",
|
||||
"nightlight micro-glow wrapping the scene"
|
||||
],
|
||||
"mood": "serene unity",
|
||||
"lighting": "very low warm lamp with soft directional fill",
|
||||
"style": "musical lullaby vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Bright sibling meeting where an older child tentatively meets the newborn for the first time (light/heartfelt)",
|
||||
"sceneVariants": [
|
||||
"An older child carrying a hand-made 'big brother/sister' badge",
|
||||
"A slow, curious approach to the bassinet",
|
||||
"A parent's guiding hand between them",
|
||||
"A small gift offered—home-made drawing or toy",
|
||||
"A slow introduction with guided touching of tiny toes"
|
||||
],
|
||||
"actions": [
|
||||
"Tender reaching with supervised gentle touches",
|
||||
"An exchange of whispered promises and giggles",
|
||||
"Photo opportunities capturing first expressions of affection",
|
||||
"A sibling given a small token to help build connection"
|
||||
],
|
||||
"camera": "Close reaction inserts and a medium family composition capturing the moment",
|
||||
"accents": [
|
||||
"badge micro-fabric stitch and tiny toe micro-detail",
|
||||
"soft sunlight micro-rim from a window"
|
||||
],
|
||||
"mood": "warm welcome",
|
||||
"lighting": "soft morning light with gentle fill",
|
||||
"style": "family introduction vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Dim night of firsts where a baby experiences their first bath under calm parental guidance (dark/ritual)",
|
||||
"sceneVariants": [
|
||||
"A small infant tub with warm water and gentle bubbles",
|
||||
"A washcloth and soft baby shampoo ready on the side",
|
||||
"A hooded towel waiting to envelop the baby",
|
||||
"A parent narrating each step to keep calm",
|
||||
"A thermometer floating to ensure perfect warmth"
|
||||
],
|
||||
"actions": [
|
||||
"Slow pouring and careful support of the infant's head",
|
||||
"Playful splash eliciting a surprised giggle",
|
||||
"A soothing song to anchor the ritual",
|
||||
"A quick dry and swaddle to return to warmth"
|
||||
],
|
||||
"camera": "Close on water ripples and gentle hands with medium reaction cuts",
|
||||
"accents": [
|
||||
"water micro-surface tension detail and towel micro-pile",
|
||||
"soap bubble micro-reflective highlights"
|
||||
],
|
||||
"mood": "gentle initiation",
|
||||
"lighting": "soft warm bathroom lamp with dark surrounding",
|
||||
"style": "ritual care vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Bright tactile play session with sensory toys encouraging grasp and focus (light/developmental)",
|
||||
"sceneVariants": [
|
||||
"High-contrast soft books and rattles within reach",
|
||||
"A parent gently guiding little fingers to textures",
|
||||
"A small mirror that reflects the baby's face",
|
||||
"A musical toy chiming when squeezed",
|
||||
"A mat patterned with interactive activities"
|
||||
],
|
||||
"actions": [
|
||||
"Reaching and grasping attempts rewarded with smiles",
|
||||
"Parent narrates cause-and-effect to encourage learning",
|
||||
"Short bursts of concentration followed by rest",
|
||||
"A final rewarded clap or cheerful encouragement"
|
||||
],
|
||||
"camera": "Macro on tiny hands and toys with medium frame capturing interactions",
|
||||
"accents": [
|
||||
"toy fabric micro-loop detail and mirror micro-surface micro-reflection",
|
||||
"stitch micro-detail on mat"
|
||||
],
|
||||
"mood": "curious engagement",
|
||||
"lighting": "clear soft daylight with diffuse fill",
|
||||
"style": "developmental play vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Dim family evening where grandparents visit and hold the new baby quietly (dark/generational warmth)",
|
||||
"sceneVariants": [
|
||||
"An elder's soft hand brushing the baby's cheek",
|
||||
"A small heirloom blanket wrapped around the infant",
|
||||
"Photographs of older relatives placed nearby for context",
|
||||
"Warm tea cups on a side table",
|
||||
"A low murmur of stories about the newborn's name"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle passing of the baby between family members",
|
||||
"Quiet storytelling about family history linked to the baby",
|
||||
"A blessing or small cultural ritual performed by the elder",
|
||||
"A tender portrait moment preserved by a family snapshot"
|
||||
],
|
||||
"camera": "Medium family composition with close cuts to hands and faces",
|
||||
"accents": [
|
||||
"heirloom fabric micro-threading and skin micro-fine detail",
|
||||
"lamp micro-halo warming the scene"
|
||||
],
|
||||
"mood": "honoring continuity",
|
||||
"lighting": "low warm living-room lamp with soft shadows",
|
||||
"style": "intergenerational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Babies",
|
||||
"scene": "Bright first outing to a coffee shop where the baby watches people and sips from a parent-held cup (light/social)",
|
||||
"sceneVariants": [
|
||||
"A stroller parked beside a small table",
|
||||
"Latte art visible in the parent's cup",
|
||||
"A barista in motion behind the counter",
|
||||
"Ambient chatter and soft acoustic music",
|
||||
"A small bib folded on the seat"
|
||||
],
|
||||
"actions": [
|
||||
"Parent offers soft narration about the surroundings",
|
||||
"Baby follows faces and movement with intent gaze",
|
||||
"A quick feed and pacifier with a friendly smile from a passerby",
|
||||
"A short nap lulled by ambient sound"
|
||||
],
|
||||
"camera": "Candid wide with reaction close-ups and ambient bokeh",
|
||||
"accents": [
|
||||
"cup micro-foam texture and stroller fabric micro-weave",
|
||||
"soft shop light micro-speculars"
|
||||
],
|
||||
"mood": "comfortable sociability",
|
||||
"lighting": "bright indoor window light with warm fill",
|
||||
"style": "urban family vignette"
|
||||
}
|
||||
]
|
||||
177
src/data/childhood_and_family_bedtime_stories.json
Normal file
177
src/data/childhood_and_family_bedtime_stories.json
Normal file
@ -0,0 +1,177 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "A dim bedroom with soft nightlight and a parent reading from a worn picture book (dark/quiet)",
|
||||
"sceneVariants": [
|
||||
"A child tucked under a duvet clutching a stuffed animal",
|
||||
"Pages turned slowly while a parent whispers in a soothing cadence",
|
||||
"A small nightlight casting a warm pool of light near the bed",
|
||||
"A window showing a calm moon and distant street lamps",
|
||||
"A bedside table with a glass of water and a bedtime clock"
|
||||
],
|
||||
"actions": [
|
||||
"Parent modulates voice for different characters and softens at the end",
|
||||
"A child asks a quiet question about the story's hero and smiles",
|
||||
"A final page is closed and a gentle goodnight is given",
|
||||
"A soft exhale as the child drifts toward sleep and the parent tiptoes out"
|
||||
],
|
||||
"camera": "Intimate close-up on book pages, child's face and small bedside details",
|
||||
"accents": [
|
||||
"paper fiber micro-texture and nightlight halo micro-glow",
|
||||
"soft eyelash and blanket weave micro-detail"
|
||||
],
|
||||
"mood": "soothing intimacy",
|
||||
"lighting": "low warm nightlamp with cool moon contrast",
|
||||
"style": "quiet domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "Tent-style fort in living room where a parent reads by flashlight to fit the adventure setting (dark/adventurous)",
|
||||
"sceneVariants": [
|
||||
"Blankets draped over chairs forming a cozy interior",
|
||||
"A small flashlight used as a dramatic spotlight",
|
||||
"Imagined shadows on the tent walls creating creature silhouettes",
|
||||
"A child pretending to be the story's explorer with a toy compass",
|
||||
"A pet curled at the child's feet sharing warm presence"
|
||||
],
|
||||
"actions": [
|
||||
"The reader uses varied tones to heighten suspense then relaxes at resolution",
|
||||
"A child gasps at an exciting turn and then closes eyes in contentment",
|
||||
"Pretend map is referenced for the hero's next move",
|
||||
"Flashlight is turned off for the final lull, replaced by a soft hum of music"
|
||||
],
|
||||
"camera": "Close flashlight-to-face inserts with warm interior tent bokeh",
|
||||
"accents": [
|
||||
"blanket weave micro-texture and flashlight beam micro-caustics",
|
||||
"toy compass scuff micro-detail"
|
||||
],
|
||||
"mood": "playful wonder",
|
||||
"lighting": "focused flashlight glow inside dark interior",
|
||||
"style": "imaginative bedtime vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "Grandparent reading an old folktale by a living-room fire, voice rich with memory (dark/nostalgic)",
|
||||
"sceneVariants": [
|
||||
"An elder in an armchair with a heavy cloth book",
|
||||
"Family heirlooms and photographs on the mantel nearby",
|
||||
"A child sitting cross-legged at the elder's feet listening raptly",
|
||||
"Pages with sepia illustrations turned carefully",
|
||||
"A faint scent of tea and wood smoke filling the air"
|
||||
],
|
||||
"actions": [
|
||||
"The grandparent recounts lore with personal asides and moral notes",
|
||||
"Children ask about the 'when' and 'why' of the tale, sparking quiet discussion",
|
||||
"A small hand reaches to touch a familiar illustration",
|
||||
"The story's ending prompts a familial anecdote and warm laughter"
|
||||
],
|
||||
"camera": "Gentle medium shots emphasizing expressiveness and hearth glow",
|
||||
"accents": [
|
||||
"paper age micro-fissures and mantle wood grain micro-detail",
|
||||
"fire ember micro-glow and tea steam micro-threads"
|
||||
],
|
||||
"mood": "reflective warmth",
|
||||
"lighting": "firelit warmth with deep surrounding shadows",
|
||||
"style": "oral tradition vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "Audio story whispered through a nursery speaker while a child listens with tiny headphones (dark/aural)",
|
||||
"sceneVariants": [
|
||||
"A small smart speaker queuing a serialized bedtime episode",
|
||||
"A child under blankets with soft headphones and closed eyes",
|
||||
"A parent adjusting volume and tucking in the blanket",
|
||||
"Nightlight casting a gentle LED ring",
|
||||
"A device showing a simple illustrated cover of the story"
|
||||
],
|
||||
"actions": [
|
||||
"The narrator's cadence and ambient soundscapes lull the listener",
|
||||
"A child murmurs a reaction to a character's gentle triumph",
|
||||
"The parent checks briefly and smiles at peaceful breathing",
|
||||
"The audio transitions to a restful music bed as the story ends"
|
||||
],
|
||||
"camera": "Close on device UI, child's serene face, and small headphone details",
|
||||
"accents": [
|
||||
"speaker mesh micro-pattern and headphone foam micro-texture",
|
||||
"audio waveform micro-detail on a small screen"
|
||||
],
|
||||
"mood": "calm auditory comfort",
|
||||
"lighting": "very low with device glow",
|
||||
"style": "sonic bedtime vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "Interactive choose-your-own-adventure where child selects the hero's path before sleeping (dark/engaging)",
|
||||
"sceneVariants": [
|
||||
"A tablet presenting two illustrated options with soft touch",
|
||||
"A child's finger hovering to choose the next path",
|
||||
"A parent leaning in to help narrate consequences",
|
||||
"Small animated cues showing gentle rewards for choices",
|
||||
"A final 'good night' branch leading to a calming epilogue"
|
||||
],
|
||||
"actions": [
|
||||
"Child deliberates and picks a path that teaches kindness or courage",
|
||||
"Parent reflects on the choice and connects it to a daily lesson",
|
||||
"The story concludes with a warm summary and sleep cue",
|
||||
"Device is closed and placed aside as lights dim"
|
||||
],
|
||||
"camera": "Over-the-shoulder device capture with expressive child close-ups",
|
||||
"accents": [
|
||||
"touchscreen micro-smudge detail and illustration brush micro-strokes",
|
||||
"soft animation bloom micro-caustics"
|
||||
],
|
||||
"mood": "empowered calm",
|
||||
"lighting": "low screen glow with warm bedside lamp",
|
||||
"style": "interactive bedtime vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "A lullaby story combining song and prose sung softly at dusk (dark/musical)",
|
||||
"sceneVariants": [
|
||||
"Parent strumming gentle chords on a small guitar or ukulele",
|
||||
"A child humming along and eyes drooping",
|
||||
"A repeated refrain acting as the sleepy anchor",
|
||||
"A window with last light fading behind silhouettes",
|
||||
"A small mobile overhead turning slowly to the rhythm"
|
||||
],
|
||||
"actions": [
|
||||
"Words and melody slow progressively toward the final refrain",
|
||||
"The child's breathing deepens to the lullaby's cadence",
|
||||
"A closing hum is held while the parent's hand smooths hair",
|
||||
"Instrument is set down quietly as the room settles"
|
||||
],
|
||||
"camera": "Close instrument and lap-level shots with face soft-focus",
|
||||
"accents": [
|
||||
"guitar wood micro-grain and string micro-vibration detail",
|
||||
"mobile paper micro-texture turning in slow arcs"
|
||||
],
|
||||
"mood": "musical tenderness",
|
||||
"lighting": "dim dusk with warm bedside accent",
|
||||
"style": "lullaby storytelling vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Bedtime Stories",
|
||||
"scene": "A reassuring 'monster-under-the-bed' story where imagination is eased into comfort (dark/comforting)",
|
||||
"sceneVariants": [
|
||||
"A child tentatively peering under the bed at imaginary shapes",
|
||||
"A parent describing friendly 'bed monsters' who guard dreams",
|
||||
"A small plush 'monster' placed visibly to reassure the child",
|
||||
"Light fades to small stars projected on the ceiling",
|
||||
"A gentle promise repeated as a nightly ritual"
|
||||
],
|
||||
"actions": [
|
||||
"Parent reframes fear as a protective and silly creature",
|
||||
"A swift check under the bed and a theatrical shooing of imagined monsters",
|
||||
"A ritual phrase and a hand squeeze seal the child's sense of safety",
|
||||
"Bedtime breathing exercises are done to restore calm"
|
||||
],
|
||||
"camera": "Low under-bed POV cut to parent's playful face and child's relieved smile",
|
||||
"accents": [
|
||||
"fabric plush micro-texture and soft star projector micro-glow",
|
||||
"bed skirt micro-weave and shadow micro-detail"
|
||||
],
|
||||
"mood": "secure reassurance",
|
||||
"lighting": "very low with small reassurance lamp",
|
||||
"style": "comforting ritual vignette"
|
||||
}
|
||||
]
|
||||
202
src/data/childhood_and_family_birthday_parties.json
Normal file
202
src/data/childhood_and_family_birthday_parties.json
Normal file
@ -0,0 +1,202 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Backyard party with balloons, a bouncy castle and grill (day/joyful)",
|
||||
"sceneVariants": [
|
||||
"A bright inflatable castle bouncing kids in primary colors",
|
||||
"A picnic table with themed plates and a centerpiece",
|
||||
"A grill sending up occasional savory smoke",
|
||||
"A backyard speaker playing children's pop hits",
|
||||
"A scavenger-hunt map pinned to a tree"
|
||||
],
|
||||
"actions": [
|
||||
"Kids swarm the bouncy castle then tumble out laughing",
|
||||
"Birthday songs are belted with improvised choreography",
|
||||
"Cupcakes are frosted at a decorating station",
|
||||
"A parent corrals stray pets and curious neighbors"
|
||||
],
|
||||
"camera": "Energetic handheld wide with close candy-and-face macro inserts",
|
||||
"accents": [
|
||||
"balloon latex micro-sheen and paper plate fiber detail",
|
||||
"sunlit glitter on frosting micro-highlights"
|
||||
],
|
||||
"mood": "unabashed celebration",
|
||||
"lighting": "bright daytime with warm sun flare",
|
||||
"style": "family festivity vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Indoor themed party with costumes and a small stage show (light/theatrical)",
|
||||
"sceneVariants": [
|
||||
"A living room transformed with streamers and a backdrop",
|
||||
"Children in themed costumes rehearsing a tiny play",
|
||||
"A small stage with fairy lights and a parent MC",
|
||||
"Face-painting corner with glitter and brushes",
|
||||
"A cake reveal under a decorative cloth"
|
||||
],
|
||||
"actions": [
|
||||
"A short performance earns exaggerated applause",
|
||||
"Face paint smudges are corrected and admired",
|
||||
"Costume swaps happen mid-party to mix up roles",
|
||||
"A cake-cutting moment gets videoed from multiple phones"
|
||||
],
|
||||
"camera": "Stage-eye frontal shots intercut with delighted parent reactions",
|
||||
"accents": [
|
||||
"fabric costume micro-weave and stage-light caustics",
|
||||
"face-paint pigment micro-detail"
|
||||
],
|
||||
"mood": "playful performance",
|
||||
"lighting": "soft indoor accent lighting with sparkle",
|
||||
"style": "domestic mini-theatre"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Quiet family gathering with a small guest list and intimate dinner (light/reflective)",
|
||||
"sceneVariants": [
|
||||
"A candlelit table with favorite childhood photos as decor",
|
||||
"A grandparent telling stories between courses",
|
||||
"An understated cake with a single candle",
|
||||
"A guest book where warm notes are written",
|
||||
"A playlist of nostalgic songs playing softly"
|
||||
],
|
||||
"actions": [
|
||||
"A heartfelt toast mentions small, meaningful milestones",
|
||||
"Family members exchange framed mementos",
|
||||
"A quiet blow-out and a slow round of hugs follows",
|
||||
"A photo album is opened and stories recalled"
|
||||
],
|
||||
"camera": "Intimate medium-shots and warm candle-close macros",
|
||||
"accents": [
|
||||
"porcelain glaze micro-reflections and inked handwriting micro-detail",
|
||||
"soft candle caustics on faces"
|
||||
],
|
||||
"mood": "gentle intimacy",
|
||||
"lighting": "warm low lighting with practical candles",
|
||||
"style": "family portrait vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Adventure party at a local climbing gym with harnesses and instructors (day/adventurous)",
|
||||
"sceneVariants": [
|
||||
"A wall of colorful holds with numbered routes",
|
||||
"Certified instructors belaying at the harness points",
|
||||
"Kids learning knots and safety calls",
|
||||
"A group photo in helmets after harness checks",
|
||||
"A rewards table with small medals and stickers"
|
||||
],
|
||||
"actions": [
|
||||
"Each child ascends a short climb and rings a bell",
|
||||
"Instructors teach safe belay and rope-handling",
|
||||
"A confidence-building shout is shared at the top",
|
||||
"A medal presentation and group cheer conclude the session"
|
||||
],
|
||||
"camera": "Vertical tracking moves with close rope-and-hand macros",
|
||||
"accents": [
|
||||
"climbing hold texture micro-grit and harness webbing micro-detail",
|
||||
"chalk dust micro-particulates catching light"
|
||||
],
|
||||
"mood": "exhilarated accomplishment",
|
||||
"lighting": "bright, engineered indoor light for clarity",
|
||||
"style": "adventure activity portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Zoo or aquarium party with guided tours and animal encounters (day/educational)",
|
||||
"sceneVariants": [
|
||||
"A behind-the-scenes touch-table with supervised animals",
|
||||
"A group seated for a keeper talk with habitat dioramas",
|
||||
"A designated birthday area with themed signage",
|
||||
"Souvenir postcards and small educational handouts",
|
||||
"A photo-op with a costumed mascot"
|
||||
],
|
||||
"actions": [
|
||||
"Children get a supervised animal touch under an expert's guidance",
|
||||
"A keeper explains an interesting fact that captivates the group",
|
||||
"A short feeding demonstration is scheduled for the birthday",
|
||||
"Party favors include simple fact-cards to continue learning at home"
|
||||
],
|
||||
"camera": "Informational mid-shots with close animal texture inserts",
|
||||
"accents": [
|
||||
"feather plumage micro-detail and aquarium water micro-refraction",
|
||||
"printed educational card micro-text"
|
||||
],
|
||||
"mood": "curious wonder",
|
||||
"lighting": "varied exhibit lighting with focused highlights",
|
||||
"style": "edutainment celebration vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Sports-themed party at a local field with mini-matches and trophies (day/energetic)",
|
||||
"sceneVariants": [
|
||||
"Coned-off pitch and small goal nets for mini-games",
|
||||
"Team bibs in two bright colors and a scoreboard",
|
||||
"A medal table and water station",
|
||||
"A coaching parent giving a brief pep talk",
|
||||
"A group huddle before a decisive kick"
|
||||
],
|
||||
"actions": [
|
||||
"Rotating mini-matches keep all kids active and engaged",
|
||||
"A penalty shootout decides the day's small champion",
|
||||
"Quick hydration breaks and sun-safety reminders are enforced",
|
||||
"A trophy moment with high-fives is captured for keepsakes"
|
||||
],
|
||||
"camera": "Action-follow tracking with goal-impact close inserts",
|
||||
"accents": [
|
||||
"grass blade micro-detail and fabric bib micro-texture",
|
||||
"trophy metallic micro-glint"
|
||||
],
|
||||
"mood": "competitive camaraderie",
|
||||
"lighting": "clear outdoor daylight suitable for sports",
|
||||
"style": "active party documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "At-home movie night with projector, popcorn and cozy blankets (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Projector screen with a family-friendly feature queued",
|
||||
"Pillows and blankets forming a comfortable nest",
|
||||
"A popcorn station with various toppings",
|
||||
"A small intermission for cake and candles",
|
||||
"Fairy-lights creating gentle ambience around the room"
|
||||
],
|
||||
"actions": [
|
||||
"Guests settle in and pick favorite snacks before lights dim",
|
||||
"A brief sing-along or clap for the birthday kid during intermission",
|
||||
"A surprise short home video montage plays before the feature",
|
||||
"A communal applause and light-hearted critique at the end"
|
||||
],
|
||||
"camera": "Soft low-light cinematography with screen-glow close-ups",
|
||||
"accents": [
|
||||
"popcorn kernel micro-texture and fabric weave micro-detail",
|
||||
"projector light micro-caustics"
|
||||
],
|
||||
"mood": "cozy shared delight",
|
||||
"lighting": "low screen light with warm practical accents",
|
||||
"style": "home cinema vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Birthday Parties",
|
||||
"scene": "Virtual birthday celebration where family join over video call (light/connected)",
|
||||
"sceneVariants": [
|
||||
"A grid of faces on a laptop or large TV with relatives dialing in",
|
||||
"A kid blowing a candle while cameras record from multiple homes",
|
||||
"A coordinated group game moderated by a host",
|
||||
"Gifts arriving by courier with unwrapping at camera",
|
||||
"A keepsake slide show played between live greetings"
|
||||
],
|
||||
"actions": [
|
||||
"A simultaneous countdown is coordinated across timezones",
|
||||
"Relatives trade small stories and digital hugs in chat",
|
||||
"A remote game host runs trivia and prizes are announced",
|
||||
"A recorded message montage is played to surprise the birthday child"
|
||||
],
|
||||
"camera": "Screen-capture style with picture-in-picture parent inserts",
|
||||
"accents": [
|
||||
"screen pixel micro-grid and webcam softening micro-effect",
|
||||
"chat message micro-text overlays"
|
||||
],
|
||||
"mood": "warmly inclusive",
|
||||
"lighting": "mixed home lighting with screen glow",
|
||||
"style": "distributed celebration vignette"
|
||||
}
|
||||
]
|
||||
227
src/data/childhood_and_family_children_playing.json
Normal file
227
src/data/childhood_and_family_children_playing.json
Normal file
@ -0,0 +1,227 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Neighborhood street in late afternoon with kids racing bikes (light/joyful)",
|
||||
"sceneVariants": [
|
||||
"Children weaving between cones on colorful bicycles",
|
||||
"A parent watching from a porch with a smile",
|
||||
"A small dog chasing and weaving the line",
|
||||
"Chalk hopscotch squares scattered on the pavement",
|
||||
"A rogue soccer ball bumping a parked car gently"
|
||||
],
|
||||
"actions": [
|
||||
"Kids shout encouragement as one leads the pack",
|
||||
"A temporary pit stop to trade snacks and water",
|
||||
"A scraped knee is bandaged quickly and play resumes",
|
||||
"An improvised finish line is declared with jubilant cheers"
|
||||
],
|
||||
"camera": "Low-angle tracking shot at wheel-level with playful handheld cuts",
|
||||
"accents": [
|
||||
"sunlit dust motes and tire tread micro-detail",
|
||||
"chalk powder micro-sheen on pavement"
|
||||
],
|
||||
"mood": "unbridled delight",
|
||||
"lighting": "warm late-afternoon golden-hour",
|
||||
"style": "unscripted neighborhood vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Park playground with swings, seesaws and sandbox (day/playful)",
|
||||
"sceneVariants": [
|
||||
"Children lining up for the swing set",
|
||||
"A group building an elaborate sandcastle with buckets",
|
||||
"A seesaw creaking as friends pump and laugh",
|
||||
"A parent pushing a toddler gently in a bucket swing",
|
||||
"A picnic blanket with snacks and juice boxes nearby"
|
||||
],
|
||||
"actions": [
|
||||
"A cooperative sand moat is dug and decorated with twigs",
|
||||
"A daring push sends a swing arc higher and elicits squeals",
|
||||
"Shared games of tag circle the playground equipment",
|
||||
"A timeout moment where a dispute is calmly resolved"
|
||||
],
|
||||
"camera": "Playground-eye wide with close joyful expression inserts",
|
||||
"accents": [
|
||||
"bright plastic texture micro-details and sand grain close-ups",
|
||||
"rim light on hair catching movement"
|
||||
],
|
||||
"mood": "carefree play",
|
||||
"lighting": "high daylight with soft shadows",
|
||||
"style": "family-friendly documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Backyard fort-building with sheets and garden chairs (light/creative)",
|
||||
"sceneVariants": [
|
||||
"A ramshackle tent draped over a clothesline",
|
||||
"Stringed fairy lights inside the fort for ambiance",
|
||||
"A hand-drawn flag stuck to the top of the structure",
|
||||
"A secret handshake practiced at the entrance",
|
||||
"A parent peeking from the kitchen window connecting with a grin"
|
||||
],
|
||||
"actions": [
|
||||
"Kids negotiate roles for sentry, captain, and storyteller",
|
||||
"A reading session with flashlights under the fort roof",
|
||||
"Snack-sharing and whispered conspiracies about imaginary maps",
|
||||
"A final collapse-of-the-fort dramatized with theatrical groans"
|
||||
],
|
||||
"camera": "Intimate small-space close-ups with warm interior inserts",
|
||||
"accents": [
|
||||
"fabric weave micro-detail and soft LED glow micro-speculars",
|
||||
"hand-drawn crayon texture on paper flags"
|
||||
],
|
||||
"mood": "imaginative cocoon",
|
||||
"lighting": "soft interior glow with warm fills",
|
||||
"style": "children's imaginative vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Schoolyard recess where improvised games and cliques form (light/energetic)",
|
||||
"sceneVariants": [
|
||||
"Groups playing different games in separated pockets",
|
||||
"A jump-rope circle with rhythmic chants",
|
||||
"A swing-set with alternating turns and polite lines",
|
||||
"Tag teams forming and re-forming with shifting alliances",
|
||||
"A teacher observing with a careful distance"
|
||||
],
|
||||
"actions": [
|
||||
"A rivalry match escalates then is cooled by shared snacks",
|
||||
"A new child is invited into the circle after a shy moment",
|
||||
"A hand clap song is passed around and repeated",
|
||||
"A whistle signals the end of recess and a reluctant return indoors"
|
||||
],
|
||||
"camera": "Overhead schoolyard establish with medium close play inserts",
|
||||
"accents": [
|
||||
"chalk line micro-grain and fabric uniform micro-texture",
|
||||
"recess laughter ambient micro-detail"
|
||||
],
|
||||
"mood": "rambunctious camaraderie",
|
||||
"lighting": "clear mid-morning schoolyard light",
|
||||
"style": "slice-of-school-life documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Rainy day indoor play with board games and blanket forts (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Window streaked with raindrops and a cozy blanket nest",
|
||||
"A board game mid-play with scattered tokens",
|
||||
"Hot cocoa mugs and cookie crumbs on a small table",
|
||||
"A rainy soundtrack setting a subdued mood",
|
||||
"Socks and slippers piled near the fortress entrance"
|
||||
],
|
||||
"actions": [
|
||||
"A tense board-game move elicits giggles and mock outrage",
|
||||
"A short nap claimed by a child mid-story",
|
||||
"Cardboard props are turned into puppet show characters",
|
||||
"A collaborative cleanup ritual before dinner"
|
||||
],
|
||||
"camera": "Close domestic warm framing with soft-focus rain window bokeh",
|
||||
"accents": [
|
||||
"fabric pile micro-fuzz and ceramic mug glazed reflections",
|
||||
"paper game token micro-detail"
|
||||
],
|
||||
"mood": "contented intimacy",
|
||||
"lighting": "soft indoor lamp light with cool window contrast",
|
||||
"style": "domestic cozy vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Beach day building sandcastles and playing in surf (day/free)",
|
||||
"sceneVariants": [
|
||||
"Castles with moats and shell decorations",
|
||||
"Kite flying in a brisk seaside wind",
|
||||
"Buckets, spades and sun hats scattered across sand",
|
||||
"A parent watching at a safe distance from the surf",
|
||||
"Seabirds and tide pools explored by curious hands"
|
||||
],
|
||||
"actions": [
|
||||
"Children dig deep moats and reinforce walls with wet sand",
|
||||
"A joyous sprint into the surf followed by shrieks at cold water",
|
||||
"Collecting improbable shells and comparing finds",
|
||||
"A communal picnic spread celebrating the day's creations"
|
||||
],
|
||||
"camera": "Wide coastal panoramas intercut with tactile hand-sand macros",
|
||||
"accents": [
|
||||
"sand grain micro-texture and water droplet micro-speculars",
|
||||
"bright swimwear fabric micro-detail"
|
||||
],
|
||||
"mood": "unbounded play",
|
||||
"lighting": "sunny high-day with reflective sea light",
|
||||
"style": "childhood summer vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Urban rooftop garden where children plant seeds and learn (light/educational)",
|
||||
"sceneVariants": [
|
||||
"Planter boxes filled with soil and small seedlings",
|
||||
"A watering can and labelled seed packets",
|
||||
"A small learning circle with an educator explaining growth stages",
|
||||
"Brightly painted wooden signs naming the plants",
|
||||
"A city skyline as a backdrop"
|
||||
],
|
||||
"actions": [
|
||||
"Each child plants a seed and marks it with a name tag",
|
||||
"A simple lesson on composting turns into a hands-on experiment",
|
||||
"Daily watering duties are assigned and checked off",
|
||||
"A small harvest is celebrated with a tasting of fresh herbs"
|
||||
],
|
||||
"camera": "Close planter-level inserts with skyline wide establishes",
|
||||
"accents": [
|
||||
"soil micro-grain and leaf venation micro-detail",
|
||||
"painted sign micro-texture and handprint smudges"
|
||||
],
|
||||
"mood": "curious stewardship",
|
||||
"lighting": "soft morning rooftop light",
|
||||
"style": "community-garden educational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Holiday snowball fight with bundled kids and cocoa break (day/wintry)",
|
||||
"sceneVariants": [
|
||||
"Snow forts and packed snow walls",
|
||||
"Red-cheeked children mid-throw with laughing eyes",
|
||||
"A thermos of cocoa passing between brief respites",
|
||||
"Snow angels and mitten prints in crisp new snow",
|
||||
"A distant fir tree decorated for the season"
|
||||
],
|
||||
"actions": [
|
||||
"Teams form and strategize playful ambushes among snowbanks",
|
||||
"A truce is called for shared cocoa and warm-up",
|
||||
"A collaborative snow-sculpture is built at day's end",
|
||||
"Parents call in for final warm coats and a group exit"
|
||||
],
|
||||
"camera": "Energetic motion shots with slow-motion powder snow inserts",
|
||||
"accents": [
|
||||
"snow crystal micro-detail and frost-lipped fabric texture",
|
||||
"breath vapor micro-threads in cold light"
|
||||
],
|
||||
"mood": "festive play",
|
||||
"lighting": "clear wintry daylight with high reflectivity",
|
||||
"style": "seasonal childhood vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Children Playing",
|
||||
"scene": "Bedroom imaginative play with action figures and make-believe battles (light/imaginative)",
|
||||
"sceneVariants": [
|
||||
"A sprawling diorama of toys and handcrafted sets",
|
||||
"Narration from a child voice as scenes unfold",
|
||||
"A parent peeking, smiling at the enacted storyline",
|
||||
"Small flashlight used as a spotlight for dramatic effect",
|
||||
"Costumes improvised from household items"
|
||||
],
|
||||
"actions": [
|
||||
"Characters are assigned voices and a dramatic arc played out",
|
||||
"A moral lesson is woven into the final resolution",
|
||||
"Props are repurposed to surprise effect mid-play",
|
||||
"A tidy-up song converts chaos back into order"
|
||||
],
|
||||
"camera": "Toy-level tabletop perspectives mixed with over-the-shoulder child POV",
|
||||
"accents": [
|
||||
"plastic toy scuff micro-detail and fabric-costume micro-weave",
|
||||
"battery LED micro-glow on toy accessories"
|
||||
],
|
||||
"mood": "playful narrative immersion",
|
||||
"lighting": "soft bedroom lamp with theatrical flashlight accents",
|
||||
"style": "miniature play cinema"
|
||||
}
|
||||
]
|
||||
127
src/data/childhood_and_family_family_dinners.json
Normal file
127
src/data/childhood_and_family_family_dinners.json
Normal file
@ -0,0 +1,127 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Family Dinners",
|
||||
"scene": "Weeknight family dinner around a crowded kitchen table (light/comfortable)",
|
||||
"sceneVariants": [
|
||||
"A modest table laden with steaming casseroles and a salad bowl",
|
||||
"Children reaching for bread while a parent carves",
|
||||
"Homework papers shuffled to the side for plates",
|
||||
"A pet under the table hoping for scraps",
|
||||
"A calendar on the wall marking tomorrow's activities"
|
||||
],
|
||||
"actions": [
|
||||
"Family members pass dishes and comment on the day's events",
|
||||
"A brief argument dissolves into a shared joke",
|
||||
"A parent prompts a shy child to share a highlight",
|
||||
"Plates are cleared together in a quick cooperative rhythm"
|
||||
],
|
||||
"camera": "Warm medium shots around the table with close food and hand inserts",
|
||||
"accents": [
|
||||
"steam micro-caustics on serving platters",
|
||||
"tooth-marked bread crumb micro-detail"
|
||||
],
|
||||
"mood": "everyday intimacy",
|
||||
"lighting": "warm overhead kitchen light with soft fills",
|
||||
"style": "domestic family vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Dinners",
|
||||
"scene": "Sunday roast with extended family and slow conversation (day/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"A long table with a carved roast at the center and gravy boats",
|
||||
"Grandparents seated at honoured places sharing stories",
|
||||
"A slow rotation of courses with polite passing",
|
||||
"A child being gently scolded then forgiven at the head of the table",
|
||||
"A floral centerpiece and folded napkins"
|
||||
],
|
||||
"actions": [
|
||||
"A toast is proposed and glasses lightly clink",
|
||||
"Stories of past family events are retold and expanded",
|
||||
"Dessert is served with a small round of applause",
|
||||
"A photo is taken to mark the occasion"
|
||||
],
|
||||
"camera": "Wide establishing of the long table with intimate headshot inserts",
|
||||
"accents": [
|
||||
"polished cutlery micro-glint and gravy ripple micro-detail",
|
||||
"fabric napkin micro-weave and fold shadow"
|
||||
],
|
||||
"mood": "generational warmth",
|
||||
"lighting": "soft daylight through windows with warm table accents",
|
||||
"style": "family ritual portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Dinners",
|
||||
"scene": "Holiday feast where traditions and rituals are observed (light/festive)",
|
||||
"sceneVariants": [
|
||||
"A decorated table with seasonal centerpieces",
|
||||
"Special dishes passed down through family recipe cards",
|
||||
"Children assigned small ceremonial roles like candle-lighting",
|
||||
"A playlist of familiar holiday songs in the background",
|
||||
"A mantle with holiday cards and decorations"
|
||||
],
|
||||
"actions": [
|
||||
"Opening remarks recall family history and express gratitude",
|
||||
"A ceremonial dish is presented with explanation of its meaning",
|
||||
"A shared blessing or moment of silence marks tradition",
|
||||
"Leftovers are carefully packed for guests to take home"
|
||||
],
|
||||
"camera": "Ceremonial medium close-ups and decorative detail macros",
|
||||
"accents": [
|
||||
"glazed turkey micro-sheen and ornate serving dish reflections",
|
||||
"candle flame micro-flicker and tinsel micro-sparkle"
|
||||
],
|
||||
"mood": "celebratory reverence",
|
||||
"lighting": "accent holiday lighting with warm candle and string light fills",
|
||||
"style": "festive family cinema"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Dinners",
|
||||
"scene": "Simple picnic-style dinner on the living room floor for movie night (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Blankets spread, platters on low trays and dimmed lights",
|
||||
"A projected film framed on the wall as backdrop",
|
||||
"Soft pillows and a relaxed, informal seating arrangement",
|
||||
"Leftover slices and casual finger-food arrangements",
|
||||
"A stack of board games on a nearby shelf for after"
|
||||
],
|
||||
"actions": [
|
||||
"Food is eaten with casual conversation, pausing for memorable lines",
|
||||
"A child sprawls with popcorn while an adult ticks off a to-do list",
|
||||
"A quiet cuddle session between family members during a touching scene",
|
||||
"Plates are stacked and crumbs swept into a quick tidy"
|
||||
],
|
||||
"camera": "Low, intimate angles with screen-light rim and tactile food close-ups",
|
||||
"accents": [
|
||||
"buttery popcorn micro-crisp and fabric pillow micro-weave",
|
||||
"screen-glow micro-caustics on faces"
|
||||
],
|
||||
"mood": "relaxed togetherness",
|
||||
"lighting": "low ambient with screen glow and small practical lamps",
|
||||
"style": "cozy domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Dinners",
|
||||
"scene": "Cooking-together dinner where family prepares meal as a shared activity (light/participatory)",
|
||||
"sceneVariants": [
|
||||
"A busy countertop with chopping boards and family members assigned tasks",
|
||||
"Children rolling dough or arranging simple salads",
|
||||
"A parent guiding a novice through a recipe step-by-step",
|
||||
"Music playing while utensils clang rhythmically",
|
||||
"A finished table with prideful displays of collaborative work"
|
||||
],
|
||||
"actions": [
|
||||
"Tasks are delegated and completed with cheerful instruction",
|
||||
"A small mishap becomes a lesson and a laughable anecdote",
|
||||
"A successful bite is shared and a new family favorite is declared",
|
||||
"Final cleanup divides chores fairly and efficiently"
|
||||
],
|
||||
"camera": "Handheld kitchen workshot with close utensil and ingredient macros",
|
||||
"accents": [
|
||||
"chopping board grain micro-detail and olive oil sheen micro-highlights",
|
||||
"flour dust micro-particulates on hands"
|
||||
],
|
||||
"mood": "engaged collaboration",
|
||||
"lighting": "bright kitchen task lighting with warm fills",
|
||||
"style": "participatory culinary vignette"
|
||||
}
|
||||
]
|
||||
452
src/data/childhood_and_family_family_portraits.json
Normal file
452
src/data/childhood_and_family_family_portraits.json
Normal file
@ -0,0 +1,452 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Formal studio portrait with coordinated outfits and soft seamless backdrop (light/formal)",
|
||||
"sceneVariants": [
|
||||
"Neutral seamless paper in warm beige",
|
||||
"Everyone wearing tonal outfits arranged by height",
|
||||
"A classic three-row composition with grandparents seated",
|
||||
"A single softbox creating even wrap-around light",
|
||||
"A small stool used for children to sit up front"
|
||||
],
|
||||
"actions": [
|
||||
"Photographer adjusts posture and cues gentle smiles",
|
||||
"Parents steady children with a hand on a shoulder",
|
||||
"A brief instruction to 'chin up' and relax jaws",
|
||||
"A final count-and-click sequence capturing the canonical smile"
|
||||
],
|
||||
"camera": "Medium tele portrait lens (85mm equiv) with soft bokeh and tight group framing",
|
||||
"accents": [
|
||||
"silk fabric micro-texture on outfits",
|
||||
"softbox micro-specular highlight on hair"
|
||||
],
|
||||
"mood": "proud formality",
|
||||
"lighting": "broad softbox key with subtle fill for gentle shadows",
|
||||
"style": "timeless studio portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Candid kitchen morning where family brews coffee and exchanges affectionate glances (light/candid)",
|
||||
"sceneVariants": [
|
||||
"Sunlit countertop with steaming mugs",
|
||||
"Children perched on stools stealing bites of toast",
|
||||
"A hand-written shopping list pinned to the fridge",
|
||||
"A splash of flour on a parent's sleeve",
|
||||
"A calendar with circled family dates"
|
||||
],
|
||||
"actions": [
|
||||
"Parents exchange a brief private joke and grin",
|
||||
"Children clamber for a hug mid-breakfast",
|
||||
"A quick reach for a passed butter knife",
|
||||
"A spontaneous group huddle before dispersing"
|
||||
],
|
||||
"camera": "Wide environmental portrait with occasional close-up inserts on hands and faces",
|
||||
"accents": [
|
||||
"steam micro-vapor trails and ceramic mug micro-gloss",
|
||||
"crumb micro-detail on a plate"
|
||||
],
|
||||
"mood": "warm intimacy",
|
||||
"lighting": "natural morning window light with soft fill from a reflector",
|
||||
"style": "lifestyle documentary portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Golden-hour beach portrait with flowing fabrics and silhouetted horizon (light/epic)",
|
||||
"sceneVariants": [
|
||||
"Waves gently lapping at bare feet",
|
||||
"Long flowing dresses catching the breeze",
|
||||
"A low sun creating long dramatic shadows",
|
||||
"Couple walking hand-in-hand with children trailing",
|
||||
"A kite in the sky adding playful height"
|
||||
],
|
||||
"actions": [
|
||||
"Slow walking sequences to create natural motion in garments",
|
||||
"Parent lifts a child for a laughing twirl",
|
||||
"A brief pause to kiss foreheads into the light",
|
||||
"Final group silhouette against the setting sun"
|
||||
],
|
||||
"camera": "Wide-angle with long focal compression for sunset glow, frequent backlit rim shots",
|
||||
"accents": [
|
||||
"backlight micro-rim on hair and fabric translucence micro-detail",
|
||||
"sand micro-grain glittering in low sun"
|
||||
],
|
||||
"mood": "sweeping tenderness",
|
||||
"lighting": "golden-hour backlight with warm fill from low reflector",
|
||||
"style": "cinematic outdoor portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim living-room evening by the fireplace with layered blankets and informal poses (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Fire embers glowing and casting warm flicker",
|
||||
"Family wrapped together on a worn leather sofa",
|
||||
"A stack of passed-down books on the hearth",
|
||||
"Mugs with hot chocolate and marshmallows nearby",
|
||||
"A pet curled into the family fold"
|
||||
],
|
||||
"actions": [
|
||||
"Parents read a short passage as children listen curled in",
|
||||
"An exchange of small jokey faces causing quiet laughter",
|
||||
"A child falls asleep on a parent's lap",
|
||||
"A slow collective lean-in for a close group portrait"
|
||||
],
|
||||
"camera": "Medium intimate framing with slow push-in and shallow depth to isolate faces",
|
||||
"accents": [
|
||||
"ember micro-glow on skin and knit blanket micro-weave",
|
||||
"shelf wood micro-grain catching warm highlights"
|
||||
],
|
||||
"mood": "intimate warmth",
|
||||
"lighting": "selective fireplace and low practical lamps with deep falloff",
|
||||
"style": "domestic evening vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright urban rooftop portrait with modern architecture framing multi-generational subjects (light/modern)",
|
||||
"sceneVariants": [
|
||||
"City skyline blurred behind the group",
|
||||
"Concrete bench used as staggered seating",
|
||||
"A windbreak to tame hair on breezy days",
|
||||
"Minimal wardrobe in complimentary neutrals",
|
||||
"A small potted plant creating a domestic touch"
|
||||
],
|
||||
"actions": [
|
||||
"Group arranged in layered depth to show relationships",
|
||||
"A child sits on a grandparent’s lap pointing to the skyline",
|
||||
"Laughter over a shared private memory breaking posed stillness",
|
||||
"A photographer encourages small interactions to reveal authenticity"
|
||||
],
|
||||
"camera": "Medium-long lens compression to flatten city into soft bokeh behind subjects",
|
||||
"accents": [
|
||||
"concrete micro-porosity and fabric micro-thread of jackets",
|
||||
"city micro-bokeh speculars"
|
||||
],
|
||||
"mood": "urban pride",
|
||||
"lighting": "open shade or soft overcast with a subtle fill flash to define faces",
|
||||
"style": "contemporary environmental portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim monochrome black-and-white formal portrait for an anniversary with high contrast (dark/classic)",
|
||||
"sceneVariants": [
|
||||
"Tux and formal dress in timeless composition",
|
||||
"High-contrast side lighting for dramatic modeling",
|
||||
"Minimal props—just a chair and a small table",
|
||||
"A single framed photo of the couple’s early years in the background",
|
||||
"A subtle grain added to film-like texture"
|
||||
],
|
||||
"actions": [
|
||||
"Steady composed poses with slight micro-expressions",
|
||||
"A gentle interlaced hand hold to show connection",
|
||||
"A slow nod from the elder to the younger suggesting shared history",
|
||||
"A final soft smile that breaks the formality momentarily"
|
||||
],
|
||||
"camera": "Medium-format style single-light portrait, converted to high-contrast monochrome",
|
||||
"accents": [
|
||||
"skin micro-pore detail emphasized in B/W and fabric micro-weave contrast",
|
||||
"film grain micro-texture"
|
||||
],
|
||||
"mood": "dignified nostalgia",
|
||||
"lighting": "hard rim key with deep shadow for classic tonal range",
|
||||
"style": "formal monochrome portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright picnic portrait in a botanical garden with relaxed interactions and candid smiles (light/natural)",
|
||||
"sceneVariants": [
|
||||
"Blanket spread beneath a canopy of flowering trees",
|
||||
"A basket with rustic props like baguette and local cheese",
|
||||
"Children chasing bubbles near a pond",
|
||||
"A gentle breeze moving leaves and skirts",
|
||||
"A small sunflare through foliage"
|
||||
],
|
||||
"actions": [
|
||||
"Shared feeding of a small picnic morsel to a child",
|
||||
"A tickle fight that dissolves into laughter captured in motion",
|
||||
"A posed family shot then a quick candid series",
|
||||
"A slow group walk photographed in sequence"
|
||||
],
|
||||
"camera": "Mixture of wide environmental and 50mm candid frames to balance context and emotion",
|
||||
"accents": [
|
||||
"leaf micro-vein reflections and fabric micro-linen weave",
|
||||
"natural micro-bokeh from foliage"
|
||||
],
|
||||
"mood": "joyful ease",
|
||||
"lighting": "dappled natural light with gentle fill",
|
||||
"style": "editorial lifestyle portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim documentary-style day-in-the-life portrait following a family through ordinary evening routines (dark/raw)",
|
||||
"sceneVariants": [
|
||||
"Sequence of shots: homework, dinner prep, bedtime ritual",
|
||||
"Natural clutter showing lived-in authenticity",
|
||||
"Evening chores with quiet conversation",
|
||||
"Children in pajamas and slippers during wind-down",
|
||||
"Close-up details of hands and domestic objects"
|
||||
],
|
||||
"actions": [
|
||||
"Observational capture of small gestures (stirring, tucking, storytelling)",
|
||||
"Quiet interchanges revealing family dynamics without staging",
|
||||
"A final lullaby captured as light fades",
|
||||
"Documented micro-routines that define the family's heartbeat"
|
||||
],
|
||||
"camera": "Handheld documentary 35mm with available light sensitivity and minimal interference",
|
||||
"accents": [
|
||||
"surface micro-scratches on a wooden table and skin micro-freckle detail",
|
||||
"ambient micro-noise captured in audio"
|
||||
],
|
||||
"mood": "truthful intimacy",
|
||||
"lighting": "natural practical light with high-ISO grain accepted for authenticity",
|
||||
"style": "observational family documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright seasonal holiday portrait outdoors with coordinated color scheme and props (light/festive)",
|
||||
"sceneVariants": [
|
||||
"Pumpkin patch for fall or snow-dusted porch for winter",
|
||||
"Coordinated scarves and hats with matching tones",
|
||||
"A small sign reading the year as memory prop",
|
||||
"Hot beverage station for winter scenes",
|
||||
"String lights woven into seasonal foliage"
|
||||
],
|
||||
"actions": [
|
||||
"Group arranged with playful poses for card-worthy shots",
|
||||
"Children perform small antics to evoke genuine smiles",
|
||||
"A staged hugging moment and a candid laughter burst",
|
||||
"A family toss of leaves or snow for motion capture"
|
||||
],
|
||||
"camera": "Wide-to-tele sequence capturing both posed and action moments for holiday cards",
|
||||
"accents": [
|
||||
"seasonal micro-textures (leaf veins, snow crystal micro-structure)",
|
||||
"fabric micro-pile on winter coats"
|
||||
],
|
||||
"mood": "festive warmth",
|
||||
"lighting": "soft directional sunlight or controlled flash for evening string-light scenes",
|
||||
"style": "seasonal portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim silhouette portrait at twilight showing family shapes against a colorful sky (dark/poetic)",
|
||||
"sceneVariants": [
|
||||
"Profiles linked in a line on a hill",
|
||||
"A fading purple-orange sky gradient",
|
||||
"Minimal wardrobe to emphasize shape and gesture",
|
||||
"A distant city or sea horizon for context",
|
||||
"Children jumping for joy frozen into silhouette"
|
||||
],
|
||||
"actions": [
|
||||
"Arranging heights to create an appealing negative-space composition",
|
||||
"Capturing a collective jump or linked-arm pose for distinct outlines",
|
||||
"A slow shift to include a small prop like a kite for dynamic shape",
|
||||
"A transition to a final backlit close-up for emotional impact"
|
||||
],
|
||||
"camera": "Wide-frame backlit exposure prioritizing color gradient and edge separation",
|
||||
"accents": [
|
||||
"sky micro-gradient and rim micro-edge of silhouettes",
|
||||
"hair micro-flyaway catchlights in rim"
|
||||
],
|
||||
"mood": "lyrical unity",
|
||||
"lighting": "strong backlight from sunset with deep subject underexposure",
|
||||
"style": "artful silhouette portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright pet-inclusive portrait in a park focusing on family and their dog or cat (light/playful)",
|
||||
"sceneVariants": [
|
||||
"Family arranged around a playful dog with a leash as a prop",
|
||||
"A cat perched on a lap for a close-up series",
|
||||
"Fetching action sequence captured mid-air",
|
||||
"A low-angle portrait showing paws-on-lap affection",
|
||||
"A fence with colorful ribbons fluttering behind"
|
||||
],
|
||||
"actions": [
|
||||
"Encouraging the pet to look at camera with treats and squeaky toys",
|
||||
"Parents snuggle the pet and induce natural smiles",
|
||||
"Action burst capturing fetch or trot snapping candid expression",
|
||||
"A calm final portrait with pet nestled in arms"
|
||||
],
|
||||
"camera": "Fast shutter action sequences plus soft 85mm portraits for warm compression",
|
||||
"accents": [
|
||||
"fur micro-texture and paw pad micro-detail",
|
||||
"leash micro-weave and collar micro-tag engraving"
|
||||
],
|
||||
"mood": "affectionate play",
|
||||
"lighting": "bright diffused outdoor light with fill reflector to catch eyes",
|
||||
"style": "family-pet lifestyle portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim heritage home portrait capturing heirlooms and layered generations in subdued tones (dark/heritage)",
|
||||
"sceneVariants": [
|
||||
"Ancestral portraits on a paneled wall behind the family",
|
||||
"A family heirloom (watch, quilt) held in hands",
|
||||
"Worn wooden floors and a faded rug anchoring composition",
|
||||
"Grandparents seated prominently with older gestures",
|
||||
"A fireplace mantle with dated trinkets and framed photos"
|
||||
],
|
||||
"actions": [
|
||||
"Passing a treasured object between generations and documenting the exchange",
|
||||
"Soft conversation and reflective gazes that reveal lineage",
|
||||
"A child curiously touching a keepsake under supervision",
|
||||
"A final formal group portrait followed by candid storytelling"
|
||||
],
|
||||
"camera": "Medium wide with subdued palette, low-key lighting to emphasize texture and depth",
|
||||
"accents": [
|
||||
"patina micro-patina on metal heirloom and wood micro-crackle",
|
||||
"fabric micro-fade on vintage garments"
|
||||
],
|
||||
"mood": "respectful continuity",
|
||||
"lighting": "controlled low-key with a single warm key and fill negative space",
|
||||
"style": "archival family portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright candid roadside travel portrait during a family roadtrip stop (light/spontaneous)",
|
||||
"sceneVariants": [
|
||||
"A scenic overlook with luggage open in the back of a vehicle",
|
||||
"A small picnic and travel maps unfolded",
|
||||
"Children climbing on a low stone wall",
|
||||
"A travel mug with a visible logo",
|
||||
"A roadside sign framing the location"
|
||||
],
|
||||
"actions": [
|
||||
"Spontaneous laughing group as a wind gust tousles hair",
|
||||
"A shared map reading improvisation captured in motion",
|
||||
"A quick posed shot then immediate return to play",
|
||||
"A snack pass shared amongst siblings"
|
||||
],
|
||||
"camera": "Documentary wide with quick 35mm candid frames to preserve energy",
|
||||
"accents": [
|
||||
"map micro-fold lines and fabric micro-dust from travel",
|
||||
"wind micro-motion blur on hair"
|
||||
],
|
||||
"mood": "adventurous spontaneity",
|
||||
"lighting": "clear daylight with occasional reflective fill",
|
||||
"style": "travel lifestyle portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim quiet newborn-in-family portrait capturing first introductions at home (dark/tender)",
|
||||
"sceneVariants": [
|
||||
"Soft swaddles and tiny hospital bands visible",
|
||||
"Grandparents cradling the newborn with reverent gestures",
|
||||
"A stillness in the room emphasized by minimal movement",
|
||||
"A small bouquet on a side table",
|
||||
"A low hum of a nursery monitor"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle passes of the newborn to relatives under careful supervision",
|
||||
"Quiet whispered blessings and naming murmurs",
|
||||
"A close-up capture of tiny hands in adult fingers",
|
||||
"A final gentle repose into the crib after introductions"
|
||||
],
|
||||
"camera": "Macro detail shots interleaved with medium family compositions in warm tonal palette",
|
||||
"accents": [
|
||||
"swaddle micro-stitch and skin micro-fine creases",
|
||||
"monitor micro-LED soft reflection"
|
||||
],
|
||||
"mood": "hushed wonder",
|
||||
"lighting": "very low warm practical lights to preserve calm",
|
||||
"style": "intimate newborn-family portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright blackboard-style classroom portrait showing a family returning to school for a multigenerational project (light/communal)",
|
||||
"sceneVariants": [
|
||||
"Family arranged around a chalkboard with a project title",
|
||||
"Children holding handmade art while elders point with pride",
|
||||
"Classroom desks used as staging platforms",
|
||||
"A teacher in the background smiling approvingly",
|
||||
"A small grant plaque or certificate on display"
|
||||
],
|
||||
"actions": [
|
||||
"Presenting project elements and capturing candid interaction",
|
||||
"A brief Q&A between child and elder that elicits smiling reactions",
|
||||
"Teacher-led group shot with everyone leaning forward slightly",
|
||||
"A small celebratory applause after the photo is taken"
|
||||
],
|
||||
"camera": "Documentary wide with individual portrait inserts for each family member",
|
||||
"accents": [
|
||||
"chalk micro-dust and paper micro-fiber on student art",
|
||||
"desk micro-wood grain catching highlights"
|
||||
],
|
||||
"mood": "community pride",
|
||||
"lighting": "bright classroom daylight with soft fill",
|
||||
"style": "educational family portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim night-market portrait with warm vendor lights creating an intimate street-scene backdrop (dark/colorful)",
|
||||
"sceneVariants": [
|
||||
"Strings of market lanterns and warm vendor stalls",
|
||||
"Family clustered around a small table with snacks",
|
||||
"Steam rising from a food stall creating mood",
|
||||
"A child pointing excitedly at a passing performer",
|
||||
"Colorful textiles visible behind the family"
|
||||
],
|
||||
"actions": [
|
||||
"A shared taste of street food prompting candid reactions",
|
||||
"A child leaning into a parent's embrace between bites",
|
||||
"A warm exchange with a vendor caught in a gesture",
|
||||
"A final posed portrait with the market glow behind"
|
||||
],
|
||||
"camera": "Low-light high-ISO environmental portrait with warm color grading",
|
||||
"accents": [
|
||||
"lantern micro-glow and steam micro-threading in air",
|
||||
"textile micro-fabric patterning in background"
|
||||
],
|
||||
"mood": "vibrant intimacy",
|
||||
"lighting": "warm practical market lights with selective highlights",
|
||||
"style": "urban night lifestyle portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Bright studio lifestyle session capturing a day-in-the-life montage for a family album (light/editorial)",
|
||||
"sceneVariants": [
|
||||
"Staged kitchen-to-playroom sequence in controlled light",
|
||||
"Various wardrobe changes to tell different moments",
|
||||
"Props like bikes, books and toys to provide narrative",
|
||||
"A mix of posed and candid frames for an editorial flow",
|
||||
"A timeline board showing sequence order"
|
||||
],
|
||||
"actions": [
|
||||
"Directed interactions that read authentic in still frames",
|
||||
"Children encouraged to recreate ordinary rituals for the camera",
|
||||
"A short burst of action frames to capture playful energy",
|
||||
"A calm portrait at the end to anchor the series"
|
||||
],
|
||||
"camera": "Hybrid approach of medium studio setups and candid 35mm to create editorial narrative",
|
||||
"accents": [
|
||||
"prop micro-finish detail and wardrobe micro-stitch clarity",
|
||||
"styling micro-texture to unify frames"
|
||||
],
|
||||
"mood": "crafted authenticity",
|
||||
"lighting": "studio-balanced daylight simulation with controlled fill",
|
||||
"style": "editorial family portrait series"
|
||||
},
|
||||
{
|
||||
"subGenre": "Family Portraits",
|
||||
"scene": "Dim silhouette fireplace portrait for an intimate in-home session focusing on shadow and shape (dark/minimalist)",
|
||||
"sceneVariants": [
|
||||
"Family seated in profile with fireplace as the sole light source",
|
||||
"Sparse furniture to emphasize negative space",
|
||||
"A single framed heirloom on the mantle as a tiny highlight",
|
||||
"A slow movement captured as a blur to add life",
|
||||
"A hand reaching into another's silhouette to show connection"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated stillness to form elegant silhouettes",
|
||||
"Quiet touch gestures to create narrative lines",
|
||||
"A shift to reveal a small candid smile in low light",
|
||||
"A closing tender embrace framed by the fire"
|
||||
],
|
||||
"camera": "Strong backlit exposures with careful metering to preserve rim detail",
|
||||
"accents": [
|
||||
"flame micro-flicker and silhouette micro-edge clarity",
|
||||
"fabric micro-silhouette texture"
|
||||
],
|
||||
"mood": "minimal tenderness",
|
||||
"lighting": "single warm flame backlight with deep shadow",
|
||||
"style": "artful minimal portraiture"
|
||||
}
|
||||
]
|
||||
352
src/data/childhood_and_family_graduations.json
Normal file
352
src/data/childhood_and_family_graduations.json
Normal file
@ -0,0 +1,352 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim auditorium at night where graduates process in caps and gowns toward a stage (dark/formal)",
|
||||
"sceneVariants": [
|
||||
"Rows of seats filled with family silhouettes",
|
||||
"A slow procession of students in black gowns under stage lights",
|
||||
"A banner with the school's emblem draped above the stage",
|
||||
"A faculty marshal tapping a ceremonial baton",
|
||||
"A red-carpet aisle leading up to the podium"
|
||||
],
|
||||
"actions": [
|
||||
"Caps are adjusted and programs clutched nervously",
|
||||
"Names are whispered in encouragement before stepping forward",
|
||||
"A faculty call-and-response signals the next graduate",
|
||||
"A dignified handshake and diploma handover"
|
||||
],
|
||||
"camera": "Long lens side shot to compress procession with occasional tight handshake inserts",
|
||||
"accents": [
|
||||
"velvet gown micro-weave and program paper micro-tooth",
|
||||
"stage micro-spot specular on faces"
|
||||
],
|
||||
"mood": "solemn pride",
|
||||
"lighting": "strong stage key with deep surrounding shadow",
|
||||
"style": "ceremonial documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright outdoor commencement on a sunlit quad with caps thrown at the end (light/joyous)",
|
||||
"sceneVariants": [
|
||||
"A sea of mortarboards rising against blue sky",
|
||||
"A decorated podium with school crest",
|
||||
"Graduates hugging and laughing in groups",
|
||||
"Family members leaning out from bleachers waving",
|
||||
"Confetti cannons primed at the podium edges"
|
||||
],
|
||||
"actions": [
|
||||
"A rousing valedictory cheer ends with simultaneous cap toss",
|
||||
"Group embraces and high-fives erupt instantly",
|
||||
"A shared selfie frenzy begins along the aisles",
|
||||
"A spontaneous chant of the school's motto rolls through the crowd"
|
||||
],
|
||||
"camera": "Wide drone or crane capture for the cap toss with handheld mid-shots for reactions",
|
||||
"accents": [
|
||||
"cap tassel micro-thread and sunlight micro-rim on faces",
|
||||
"confetti micro-reflective flakes"
|
||||
],
|
||||
"mood": "exuberant release",
|
||||
"lighting": "golden daylight with high-key overall exposure",
|
||||
"style": "uplifting mass portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim backstage where graduates adjust gowns and receive last-minute encouragement (dark/intimate)",
|
||||
"sceneVariants": [
|
||||
"A dressing area with mirrors and sewing kits",
|
||||
"A coach helping with a bow tie or hood placement",
|
||||
"A parent handing a family keepsake through a curtain",
|
||||
"A quick torch on a script line or speech point",
|
||||
"A near-silent corridor leading to the stage"
|
||||
],
|
||||
"actions": [
|
||||
"A final deep breath, whispered pep talk and fist bump",
|
||||
"Hood is straightened with careful fingers",
|
||||
"A brief ritual of touching a charm for luck",
|
||||
"A silent countdown as names are called"
|
||||
],
|
||||
"camera": "Tight handheld close-ups with shallow depth to emphasize texture and expression",
|
||||
"accents": [
|
||||
"mirror micro-reflection and fabric micro-pleat detail",
|
||||
"thread micro-stitch in hood trims"
|
||||
],
|
||||
"mood": "tense warmth",
|
||||
"lighting": "low practical lamps with cool spill from corridor",
|
||||
"style": "intimate performative vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright family portrait session on campus immediately after the ceremony (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"A parent holding a diploma proudly in front of their graduate",
|
||||
"A cluster of extended family surrounding the graduate",
|
||||
"A nearby statue or campus landmark used as backdrop",
|
||||
"Children running with miniature mortarboards",
|
||||
"A graduate wearing lei garlands and flowers"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated group shots with quick wardrobe adjustments",
|
||||
"Candid laughter captured between posed frames",
|
||||
"A formal portrait, then playful outtakes",
|
||||
"A framed instant print given to a proud grandparent"
|
||||
],
|
||||
"camera": "50–85mm portrait lens for flattering compression and wide family compositions",
|
||||
"accents": [
|
||||
"diploma micro-seal emboss and lei micro-petal detail",
|
||||
"stone micro-grain of campus features"
|
||||
],
|
||||
"mood": "communal pride",
|
||||
"lighting": "soft natural daylight with reflector fill",
|
||||
"style": "family documentary portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim candlelit alumni vigil honoring graduates who couldn't attend (dark/solemn)",
|
||||
"sceneVariants": [
|
||||
"Rows of lit candles on a long table",
|
||||
"A weeping willow of photos pinned above each flame",
|
||||
"Alumni and family in subdued, respectful clusters",
|
||||
"Soft readings of names in low voice",
|
||||
"A single flag half-mast for solemn memorial"
|
||||
],
|
||||
"actions": [
|
||||
"A quiet reading of absent names with moments of silence",
|
||||
"A collaborative placing of a commemorative ribbon",
|
||||
"A consoling arm across shoulders and shared quiet",
|
||||
"A final communal hymn softly sung"
|
||||
],
|
||||
"camera": "Low-light close-ups on flickering flames and faces, capturing glints in eyes",
|
||||
"accents": [
|
||||
"candle micro-flame filament and paper micro-photo grain",
|
||||
"soft fabric micro-shadow on sleeves"
|
||||
],
|
||||
"mood": "reverent remembrance",
|
||||
"lighting": "very low candlelight with deep shadows",
|
||||
"style": "memorial ceremonial vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright rehearsal day on campus with seniors practicing processions in neat lines (light/preparatory)",
|
||||
"sceneVariants": [
|
||||
"Students walking in formation across the quad",
|
||||
"A marshal holding a clipboard and rhythm stick",
|
||||
"A rehearsal stage with empty seats for spacing",
|
||||
"A graduate practicing cap toss technique alone",
|
||||
"Portable speakers playing the recessional music"
|
||||
],
|
||||
"actions": [
|
||||
"Timed marches rehearsed with precision and spacing markers",
|
||||
"Marshal calls to adjust step length and tempo",
|
||||
"Micro-coaching to keep posture uniform",
|
||||
"A playful mime of the final celebration to ease nerves"
|
||||
],
|
||||
"camera": "Steadicam lateral tracking for procession with wide to show field patterns",
|
||||
"accents": [
|
||||
"marker micro-tape on lawn and gown micro-fold textures",
|
||||
"speaker micro-grill texture"
|
||||
],
|
||||
"mood": "focused optimism",
|
||||
"lighting": "even daylight with two-point open-fill",
|
||||
"style": "process-oriented documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim late-evening grad party with close friends, music and toast speeches (dark/ripe)",
|
||||
"sceneVariants": [
|
||||
"A living room strung with fairy lights and banners",
|
||||
"A playlist queue and a small Bluetooth speaker",
|
||||
"Polaroid camera and instant prints pinned to a board",
|
||||
"A table with small toast glasses and finger food",
|
||||
"A proud but slightly tipsy mentor giving a speech"
|
||||
],
|
||||
"actions": [
|
||||
"Short impromptu speeches and toasts to past struggles",
|
||||
"Dancing in small groups and confetti poppers",
|
||||
"A nostalgic slideshow interlude",
|
||||
"A late-night pizza run as a bonding ritual"
|
||||
],
|
||||
"camera": "Handheld candid low-light with motion-friendly shutter and selective focus",
|
||||
"accents": [
|
||||
"fairy micro-bokeh and paper confetti micro-reflect",
|
||||
"glass micro-specular on toast rim"
|
||||
],
|
||||
"mood": "exuberant nostalgia",
|
||||
"lighting": "low warm practicals with colored party accents",
|
||||
"style": "intimate celebration vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright award ceremony segment where top honors and scholarships are announced (light/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"A small plaque presentation and handshake",
|
||||
"A program listing honorees in gold type",
|
||||
"An orchestra sting to accent the name call",
|
||||
"Parents leaning forward in proud concentration",
|
||||
"A student stepping up to receive a scholarship cheque"
|
||||
],
|
||||
"actions": [
|
||||
"Name called with short applause and a spotlight",
|
||||
"Brief remarks from an honored speaker",
|
||||
"Photo opportunity with presenter and certificate",
|
||||
"A backstage quick interview capturing immediate thoughts"
|
||||
],
|
||||
"camera": "Tight stage inserts and medium returns to audience for reaction",
|
||||
"accents": [
|
||||
"plaque micro-engrave and program micro-gild detail",
|
||||
"spot micro-bleed on stage edge"
|
||||
],
|
||||
"mood": "honored achievement",
|
||||
"lighting": "stage spotlight with neutral balanced fill",
|
||||
"style": "formal awards reportage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim alumni dinner where graduates and mentors reconnect in subdued elegance (dark/nostalgic)",
|
||||
"sceneVariants": [
|
||||
"A long table with candle centerpieces and place cards",
|
||||
"A mentor sharing career advice across the table",
|
||||
"A soft jazz trio playing in the corner",
|
||||
"A slide of archive photos projected briefly",
|
||||
"A whispered toast to the future"
|
||||
],
|
||||
"actions": [
|
||||
"Mentorship conversations and exchange of business cards",
|
||||
"A short roast or tribute to a memorable professor",
|
||||
"Group reminiscing of campus moments",
|
||||
"A closing group photograph by candlelight"
|
||||
],
|
||||
"camera": "Low ambient table-level with close conversational inserts",
|
||||
"accents": [
|
||||
"candle micro-threading and silverware micro-reflection",
|
||||
"textile micro-weave on suit lapels"
|
||||
],
|
||||
"mood": "reflective elegance",
|
||||
"lighting": "soft warm dining light with candle highlights",
|
||||
"style": "nostalgic alumni vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright virtual graduation broadcast with graduates in small tiles and a host on stage (light/modern)",
|
||||
"sceneVariants": [
|
||||
"A mosaic of webcam tiles showing cap-and-gown faces",
|
||||
"A polished host on a small studio stage",
|
||||
"Graphic lower-thirds showing names and majors",
|
||||
"Virtual confetti overlays and chat applause",
|
||||
"A playback clip of campus highlights"
|
||||
],
|
||||
"actions": [
|
||||
"Host calls names and occasionally displays pre-recorded clips",
|
||||
"Families cheer in chat and post comments",
|
||||
"A graduate gives a short pre-recorded message",
|
||||
"Digital diploma images are shared for download"
|
||||
],
|
||||
"camera": "Multi-source switcher with program output and tile inserts",
|
||||
"accents": [
|
||||
"pixel micro-grid on tiles and on-screen micro-UI elements",
|
||||
"studio micro-light wrap on host"
|
||||
],
|
||||
"mood": "connected celebration",
|
||||
"lighting": "studio-balanced key for host with varied home lighting across tiles",
|
||||
"style": "hybrid broadcast vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim memory montage editing room where a montage of student years is assembled for the ceremony (dark/creative)",
|
||||
"sceneVariants": [
|
||||
"A timeline on a monitor with selected clips and titles",
|
||||
"An editor trimming a highlight reel with headphones on",
|
||||
"Sticky notes with song cues and frame numbers",
|
||||
"Old footage of campus pranks and candid laughter",
|
||||
"A test projection on a blank wall"
|
||||
],
|
||||
"actions": [
|
||||
"Selecting the emotional beat sequence for the montage",
|
||||
"Synchronizing audio bed with key visual moments",
|
||||
"Color grading to unify vintage and recent clips",
|
||||
"Exporting a high-res master for playback"
|
||||
],
|
||||
"camera": "Close inserts of timeline scrub and medium on focused editor",
|
||||
"accents": [
|
||||
"monitor micro-pixel clarity and tape micro-adhesive edge",
|
||||
"headphone micro-cushion fiber detail"
|
||||
],
|
||||
"mood": "craft-focused nostalgia",
|
||||
"lighting": "low monitor glow with soft desk lamp",
|
||||
"style": "behind-the-scenes creative vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright cap-and-gown portrait studio where individual graduates get formal headshots (light/portrait)",
|
||||
"sceneVariants": [
|
||||
"A clean white background and an 85mm prime",
|
||||
"A variety of poses holding the rolled diploma",
|
||||
"A quick wardrobe steam to fix creases",
|
||||
"A minimalist stool for seated portraits",
|
||||
"A soft light wrap to flatter skin tones"
|
||||
],
|
||||
"actions": [
|
||||
"Photographer coaches a confident chin and softened brow",
|
||||
"Multiple expressions captured: serious, smiling, contemplative",
|
||||
"Quick adjustments to tassel placement and collar",
|
||||
"Immediate review on a tethered monitor for instant selection"
|
||||
],
|
||||
"camera": "Tight portrait framing with softbox key and hair light",
|
||||
"accents": [
|
||||
"paper micro-emboss of diploma scroll and fabric micro-weave of gown",
|
||||
"softbox micro-specular highlight on eyes"
|
||||
],
|
||||
"mood": "personal achievement",
|
||||
"lighting": "controlled studio daylight simulation",
|
||||
"style": "polished portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Dim mentor-mentee handshake captured in a quiet alcove after the formalities (dark/personal)",
|
||||
"sceneVariants": [
|
||||
"A small stone alcove on campus with ivy",
|
||||
"A mentor lowering their voice with a personal note",
|
||||
"A quick exchange of a small gift or note",
|
||||
"A lingering hand-on-shoulder gesture",
|
||||
"A small laugh that breaks the formal tone"
|
||||
],
|
||||
"actions": [
|
||||
"A private word of advice and encouragement given",
|
||||
"A handshake that turns into a short embrace",
|
||||
"A mentor scribbles a line of contact info or encouragement",
|
||||
"A depart with a confident nod"
|
||||
],
|
||||
"camera": "Intimate close-in with tight focus on hands then faces",
|
||||
"accents": [
|
||||
"stone micro-moss and ink micro-stroke on a small note",
|
||||
"shadow micro-edge defining profile lines"
|
||||
],
|
||||
"mood": "quiet mentorship",
|
||||
"lighting": "low directional accent with cool ambient",
|
||||
"style": "personal documentary vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Graduations",
|
||||
"scene": "Bright post-ceremony balloon release where graduates mark transition with color and movement (light/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"Clusters of balloons in school colors launched skyward",
|
||||
"Graduates releasing balloons in synchronized movement",
|
||||
"A moment of silent reflection before the release",
|
||||
"Children and families watching the ascending colors",
|
||||
"A photo series capturing the upward arc"
|
||||
],
|
||||
"actions": [
|
||||
"Collective counting down and release synchronization",
|
||||
"A wave of applause as balloons rise",
|
||||
"An immediate group hug and celebratory noise",
|
||||
"Cleanup volunteers gather strings and notes"
|
||||
],
|
||||
"camera": "Low-to-high angle tracking to follow balloons into sky with wide family reaction shots",
|
||||
"accents": [
|
||||
"balloon micro-sheen and knot micro-twist detail",
|
||||
"sky micro-gradient catching color reflections"
|
||||
],
|
||||
"mood": "liberating transition",
|
||||
"lighting": "bright outdoor with open sky exposure",
|
||||
"style": "ceremonial outdoor vignette"
|
||||
}
|
||||
]
|
||||
452
src/data/childhood_and_family_grandparents.json
Normal file
452
src/data/childhood_and_family_grandparents.json
Normal file
@ -0,0 +1,452 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "Grandparent reading a faded family album by lamplight while grandchildren lean in (dark/nostalgic)",
|
||||
"sceneVariants": [
|
||||
"Sepia photographs spread across a coffee table",
|
||||
"A slow turn of brittle pages and soft laughter",
|
||||
"A small lamp casting an intimate warm circle",
|
||||
"Grandchildren pointing at a familiar face and asking questions",
|
||||
"A knitting basket nearby with half-made yarn"
|
||||
],
|
||||
"actions": [
|
||||
"The elder recounts the story behind a particular photo with animated gestures",
|
||||
"Children trace a finger over faces, asking for names",
|
||||
"A tear quenched with a smile and a light joke",
|
||||
"The album is closed with a promise to share more tomorrow"
|
||||
],
|
||||
"camera": "Close book page inserts and over-the-shoulder reaction shots of grandchildren",
|
||||
"accents": [
|
||||
"paper edge micro-fray and lamplight halo micro-glow",
|
||||
"fabric knit micro-detail on a well-worn cardigan"
|
||||
],
|
||||
"mood": "tender reminiscence",
|
||||
"lighting": "single warm lamp against deep room shadow",
|
||||
"style": "intimate family vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "Late-night kitchen where a grandparent stirs jam on the stove teaching secret family recipe (dark/heritage)",
|
||||
"sceneVariants": [
|
||||
"Copper pot simmering with fruit and spice",
|
||||
"A small notepad with scribbled instructions in an old hand",
|
||||
"Steam fogging a nearby window, distant streetlights outside",
|
||||
"A child sampling a tiny spoonful under strict ritual",
|
||||
"A faded radio playing a slow waltz on low"
|
||||
],
|
||||
"actions": [
|
||||
"Measured additions of sugar and pinch of spice with narration of origin",
|
||||
"Tasting and approving with a knowing nod",
|
||||
"Passing down a memory that explains why the recipe matters",
|
||||
"Careful jars being labeled and lined for cool storage"
|
||||
],
|
||||
"camera": "Macro on bubbling jam and medium shots of patient hands guiding small ones",
|
||||
"accents": [
|
||||
"sugar crystal micro-sparkle and steam micro-threading",
|
||||
"copper pot micro-patina and wooden spoon micro-wear"
|
||||
],
|
||||
"mood": "preservation of legacy",
|
||||
"lighting": "warm stove and lamp glow with cool window contrast",
|
||||
"style": "culinary oral-history vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A grandfather teaching a grandchild to whittle on the porch after dusk (dark/quiet)",
|
||||
"sceneVariants": [
|
||||
"Small shavings falling into a tin can",
|
||||
"A steady hand demonstrating rhythm and safety",
|
||||
"Crickets intoning a soft background chorus",
|
||||
"A flashlight left on as a fallback",
|
||||
"A well-worn hat shielding the elder's thoughtful face"
|
||||
],
|
||||
"actions": [
|
||||
"Slow demonstration of safe whittling techniques",
|
||||
"Grandchild's tentative first shaving followed by proud grin",
|
||||
"A short story about who taught the elder the craft",
|
||||
"Tools carefully cleaned and stored with quiet ceremony"
|
||||
],
|
||||
"camera": "Tight hand macro and occasional wide to show porch context",
|
||||
"accents": [
|
||||
"wood grain micro-splinter detail and knife blade micro-sheen",
|
||||
"porch paint micro-crackle in lamplight"
|
||||
],
|
||||
"mood": "patient transfer of skill",
|
||||
"lighting": "soft porch light with long evening shadows",
|
||||
"style": "craftsmanship vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A grandmother humming lullabies while rocking an infant in a dim nursery (dark/soothing)",
|
||||
"sceneVariants": [
|
||||
"A slow mobile casting soft moving shadows",
|
||||
"Tiny hands curled around a grandmother's finger",
|
||||
"A small nightlight shaped like a moon",
|
||||
"Sound of the clock ticking in steady rhythm",
|
||||
"A soft blanket embroidered with initials"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle rocking and hummed verses repeated until breathing evens",
|
||||
"A whispered blessing tucked into the infant's ear",
|
||||
"A lullaby remembered from the elder's own childhood",
|
||||
"A soft closing of the nursery door once sleep is secure"
|
||||
],
|
||||
"camera": "Close facial inserts and slow pull-back to show whole crib scene",
|
||||
"accents": [
|
||||
"blanket stitch micro-detail and skin-soft micro-texture",
|
||||
"nightlight micro-halo and eyelash micro-shadowing"
|
||||
],
|
||||
"mood": "calm devotion",
|
||||
"lighting": "low warm nightlamp with cool moon sliver",
|
||||
"style": "tender domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "Midnight porch conversation where a grandparent imparts life advice under a starry sky (dark/wise)",
|
||||
"sceneVariants": [
|
||||
"A thermos of tea between two chairs",
|
||||
"Slow deliberate gestures as stories unfold",
|
||||
"A distant dog bark as punctuation in the night",
|
||||
"A handwritten note produced to emphasize a point",
|
||||
"A small laugh breaking the seriousness"
|
||||
],
|
||||
"actions": [
|
||||
"A long-form anecdote that concludes with a guiding aphorism",
|
||||
"Grandchild asks questions and the elder answers frankly",
|
||||
"Shared silence as the advice is absorbed",
|
||||
"A promise of mutual care sealed with a handshake"
|
||||
],
|
||||
"camera": "Wide sky-to-porch composition with intimate medium close-ups during key lines",
|
||||
"accents": [
|
||||
"steam micro-threading from the thermos and fabric cuff micro-detail",
|
||||
"star micro-pin sparkle in the sky above"
|
||||
],
|
||||
"mood": "contemplative warmth",
|
||||
"lighting": "very low ambient starlight with a soft porch accent",
|
||||
"style": "oral tradition vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "An old workshop lit by a single bulb where a grandparent repairs a toy train as a grandchild watches (dark/crafty)",
|
||||
"sceneVariants": [
|
||||
"Small gears and springs laid out on a bench",
|
||||
"A magnifying glass and tiny screwdrivers in use",
|
||||
"A well-thumbed repair manual annotated in margins",
|
||||
"A tin of spare parts labeled in faded ink",
|
||||
"A steady hum of a distant refrigerator as room ambiance"
|
||||
],
|
||||
"actions": [
|
||||
"Delicate repair choreography with murmured instructions",
|
||||
"Child handing tools and learning the naming of parts",
|
||||
"A triumphant click as the train runs again",
|
||||
"Careful oiling and a test run around a makeshift track"
|
||||
],
|
||||
"camera": "Macro on gears and medium reaction cuts to the child's delighted face",
|
||||
"accents": [
|
||||
"metal gear micro-tooth detail and bulb filament micro-glow",
|
||||
"workbench scratch micro-texture and oil sheen micro-reflection"
|
||||
],
|
||||
"mood": "resourceful patience",
|
||||
"lighting": "single overhead bulb with deep shadow pockets",
|
||||
"style": "mechanical intimacy vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A quiet late-evening card game between grandparent and teen with a small lamp (dark/affectionate)",
|
||||
"sceneVariants": [
|
||||
"A worn deck of cards fanned across a table",
|
||||
"A mug of chamomile tea near a score sheet",
|
||||
"Playful bluffing and a shared knowing smile",
|
||||
"Notes of family jokes scribbled on the back of an envelope",
|
||||
"A window showing moonlit trees swaying"
|
||||
],
|
||||
"actions": [
|
||||
"Teasing banter that masks a deeper mentorship",
|
||||
"Passing down a trick for remembering card probabilities",
|
||||
"A final considerate concession to let the teen win",
|
||||
"Cards collected and stored for next week's rematch"
|
||||
],
|
||||
"camera": "Tight table-level shots with slow focus pulls between hands and faces",
|
||||
"accents": [
|
||||
"card edge micro-fray and cup ceramic micro-glaze reflection",
|
||||
"lamp warm micro-glow on skin"
|
||||
],
|
||||
"mood": "gentle camaraderie",
|
||||
"lighting": "soft desk lamp with comfortable darkness beyond",
|
||||
"style": "domestic mentorship vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A moonlit fishing trip where grandparent and grandchild sit in a small boat sharing quiet stories (dark/peaceful)",
|
||||
"sceneVariants": [
|
||||
"Water reflecting a smattering of stars",
|
||||
"A soft bob of the buoy and taut fishing line",
|
||||
"A thermos and a small lantern between the pair",
|
||||
"The hush of nocturnal insects around the shoreline",
|
||||
"A single gentle tug followed by shared excitement"
|
||||
],
|
||||
"actions": [
|
||||
"Patient waiting punctuated by whispered local lore",
|
||||
"A small catch celebrated with a practical cooking plan",
|
||||
"A lesson on knots and patience repeated with humor",
|
||||
"A slow row back to shore under the soft sky"
|
||||
],
|
||||
"camera": "Wide reflective lake shots with close on faces in lantern light",
|
||||
"accents": [
|
||||
"water surface micro-rippling and lantern micro-glow reflection",
|
||||
"line micro-strain detail and fabric micro-weave on jackets"
|
||||
],
|
||||
"mood": "calm companionship",
|
||||
"lighting": "lantern and starlight with deep surrounding black",
|
||||
"style": "quiet outdoor vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A late-night radio repair session where a grandparent teaches circuitry basics to a curious child (dark/educational)",
|
||||
"sceneVariants": [
|
||||
"An old valve radio with labels in an unfamiliar script",
|
||||
"Soldering iron cooling between careful uses",
|
||||
"Schematic diagrams taped to a wall",
|
||||
"A child tracing circuits with a finger while asking why",
|
||||
"The glow of a small bench lamp illuminating tiny components"
|
||||
],
|
||||
"actions": [
|
||||
"Explaining simple electrical concepts with analogies",
|
||||
"Safe demonstration of soldering and component testing",
|
||||
"A moment of triumph when the dial lights up and a station plays",
|
||||
"Careful cleanup and a list of parts for the next session"
|
||||
],
|
||||
"camera": "Macro soldering shots and slow-reveal of the music as it plays",
|
||||
"accents": [
|
||||
"solder bead micro-shine and PCB micro-track detail",
|
||||
"lamp micro-halo and tool handle micro-grip detail"
|
||||
],
|
||||
"mood": "curious focus",
|
||||
"lighting": "focused bench lamp with cool ambient darkness",
|
||||
"style": "hands-on educational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A sunrise porch breakfast where grandparent teaches grandchildren to make pancakes (light/homely)",
|
||||
"sceneVariants": [
|
||||
"Dawn light catching on syrup and butter sheen",
|
||||
"Flour dust motes motoring in the breeze",
|
||||
"Small aprons tied around eager waists",
|
||||
"Birdsong punctuating the morning talk",
|
||||
"A list of family jokes repeated each time they cook"
|
||||
],
|
||||
"actions": [
|
||||
"Measured batter pours and patient flipping instruction",
|
||||
"Taste-testing and playful critique of the first pancake",
|
||||
"A lesson on patience while waiting for the perfect golden brown",
|
||||
"A shared breakfast at a small table with clinking mugs"
|
||||
],
|
||||
"camera": "Wide porch-to-griddle shot with close macro on batter and smiles",
|
||||
"accents": [
|
||||
"syrup micro-viscous sheen and griddle micro-bubble detail",
|
||||
"morning sun micro-rim on hair and utensil micro-reflection"
|
||||
],
|
||||
"mood": "cheery domestic ritual",
|
||||
"lighting": "soft sunrise with warm fill light",
|
||||
"style": "nostalgic culinary moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "Midday garden planting where grandparent and child transplant seedlings together (light/earthy)",
|
||||
"sceneVariants": [
|
||||
"Rows of small plants in neat beds",
|
||||
"Hands dirty from soil with bright gardening gloves nearby",
|
||||
"A watering can and labeled seed packets",
|
||||
"Bee hum overhead and a faint floral perfume",
|
||||
"A small sign marking the child's named patch"
|
||||
],
|
||||
"actions": [
|
||||
"Demonstrating root handling and correct planting depth",
|
||||
"Comparing measurements and predicting growth",
|
||||
"A slow sharing of memories tied to a particular plant",
|
||||
"A promise to harvest together when ripe"
|
||||
],
|
||||
"camera": "Low macro on soil and roots with medium wide for the garden expanse",
|
||||
"accents": [
|
||||
"soil micro-granularity and leaf micro-vein detail",
|
||||
"sunlit dew micro-refraction on new leaves"
|
||||
],
|
||||
"mood": "patient cultivation",
|
||||
"lighting": "bright midday sun with soft fill",
|
||||
"style": "natural apprenticeship vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A bright afternoon where a grandparent teaches a child old folk dances in the living room (light/joyful)",
|
||||
"sceneVariants": [
|
||||
"A radio or record player set to a lively tune",
|
||||
"Hand-holding patterns marked with gentle foot taps",
|
||||
"A small audience of family clapping from the doorway",
|
||||
"Handmade costume shawls draped for authenticity",
|
||||
"A final bow with flushed smiles"
|
||||
],
|
||||
"actions": [
|
||||
"Step-by-step demonstration of a dance sequence",
|
||||
"Repeat practice with encouraging correction",
|
||||
"A playful improvisation that elicits giggles",
|
||||
"A final group performance for a small reward"
|
||||
],
|
||||
"camera": "Medium wide choreography coverage with reaction close-ups",
|
||||
"accents": [
|
||||
"fabric weave micro-detail on shawls and record groove micro-reflection",
|
||||
"tap micro-spark on polished floor"
|
||||
],
|
||||
"mood": "celebratory continuity",
|
||||
"lighting": "bright afternoon with warm highlights",
|
||||
"style": "cultural transmission vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A sunny hobby workshop where a grandparent and grandchild assemble a birdhouse (light/constructive)",
|
||||
"sceneVariants": [
|
||||
"Planed wood planks and a small hammer",
|
||||
"Paint buckets ready for decoration",
|
||||
"A blueprint traced in crayon by the child",
|
||||
"A kindly dog napping at the worksite",
|
||||
"A sunlit backyard where the finished house will hang"
|
||||
],
|
||||
"actions": [
|
||||
"Measuring, nailing, and encouraging careful work",
|
||||
"Priming and painting with imaginative colors",
|
||||
"Attachment of a small nameplate declaring the project's owners",
|
||||
"An installation ceremony on a branch with celebratory cookies"
|
||||
],
|
||||
"camera": "Side dolly following assembly and close-ups on paint textures",
|
||||
"accents": [
|
||||
"wood cut micro-fibers and paint brush micro-stroke detail",
|
||||
"sun micro-glares on metal nails"
|
||||
],
|
||||
"mood": "productive joy",
|
||||
"lighting": "clear daylight with natural fill",
|
||||
"style": "hands-on family craft vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A mid-morning story circle at the park where grandparent tells a folktale to a small group of children (light/engaging)",
|
||||
"sceneVariants": [
|
||||
"A checkered blanket with snack bowls",
|
||||
"Children sitting rapt around the storyteller",
|
||||
"A small puppet used to add theatrics",
|
||||
"A tree providing layered dappled shade",
|
||||
"Squirrels and occasional passerby curiosity"
|
||||
],
|
||||
"actions": [
|
||||
"Animated voices and gestures to emphasize moral points",
|
||||
"Children asking questions and making imaginative suggestions",
|
||||
"A concluding group song that ties the story to a lesson",
|
||||
"A distribution of small handcrafted tokens to remember the tale"
|
||||
],
|
||||
"camera": "Circle overhead and close reaction inserts to capture engagement",
|
||||
"accents": [
|
||||
"leaf micro-dapple highlights and fabric micro-weave on the blanket",
|
||||
"puppet micro-fabric detail"
|
||||
],
|
||||
"mood": "communal learning",
|
||||
"lighting": "soft midday park light with gentle shade",
|
||||
"style": "outdoor pedagogical vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A bright family portrait day where grandparent and extended family gather for photos in the garden (light/formal)",
|
||||
"sceneVariants": [
|
||||
"Vintage dresses and neatly combed hair",
|
||||
"A tripod with an old camera and a self-timer",
|
||||
"Children told to 'say cheese' with exaggerated smiles",
|
||||
"A table of refreshments waiting after the shoot",
|
||||
"A backdrop of hollyhocks and flowering bushes"
|
||||
],
|
||||
"actions": [
|
||||
"Coaxing poses and arranging hands with affectionate scolding",
|
||||
"A slow succession of shots capturing candid moments",
|
||||
"Laughter after a staged solemn pose breaks into smiles",
|
||||
"Signing of a small printed portrait card for each guest"
|
||||
],
|
||||
"camera": "Formal wide family composition with close sibling and grandparent interactions",
|
||||
"accents": [
|
||||
"flower petal micro-detail and fabric thread micro-visibility",
|
||||
"camera lens micro-reflection and sunlight micro-rim"
|
||||
],
|
||||
"mood": "proud continuity",
|
||||
"lighting": "bright open shade with soft fill",
|
||||
"style": "ceremonial family portrait vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A gentle afternoon where a grandparent teaches the child old lullaby lyrics while showing an embroidered songbook (light/warm)",
|
||||
"sceneVariants": [
|
||||
"Handwritten lyrics with margin notes of when each verse was sung",
|
||||
"A small music box in the background chiming softly",
|
||||
"The child's head resting on a lap between verses",
|
||||
"A window showing a slow cloud passage",
|
||||
"A scent of lavender from a nearby sachet"
|
||||
],
|
||||
"actions": [
|
||||
"Singing together with occasional harmonies taught by the elder",
|
||||
"Tracing the notes with a finger to teach melody recognition",
|
||||
"A promise that the song will always be theirs to sing",
|
||||
"Closing the book and tucking it away as a future keepsake"
|
||||
],
|
||||
"camera": "Tight music-book inserts and soft-focus face close-ups",
|
||||
"accents": [
|
||||
"embroidery micro-thread detail and music box micro-gear shine",
|
||||
"hair micro-strand detail in warm light"
|
||||
],
|
||||
"mood": "heirloomed tenderness",
|
||||
"lighting": "soft afternoon window light with warm fill",
|
||||
"style": "sonic heirloom vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A sunny afternoon at a farmer's market where grandparent teaches bargaining and picking fresh produce (light/practical)",
|
||||
"sceneVariants": [
|
||||
"Crates of bright vegetables and handwritten price tags",
|
||||
"Friendly stalls with tasting samples",
|
||||
"A reusable bag filling with chosen goods",
|
||||
"Neighbors exchanging recipe tips nearby",
|
||||
"The child learning to check for ripeness"
|
||||
],
|
||||
"actions": [
|
||||
"Inspecting fruit texture and smelling for freshness",
|
||||
"Polite bargaining and thanking the vendor with practiced charm",
|
||||
"Lesson on seasonal cooking and preservation",
|
||||
"A shared sample eaten on the spot as a reward"
|
||||
],
|
||||
"camera": "Market-side tracking with close-ups on produce textures and hands",
|
||||
"accents": [
|
||||
"fruit skin micro-pore detail and wooden crate micro-grain",
|
||||
"sun micro-highlight on leafy greens"
|
||||
],
|
||||
"mood": "practical delight",
|
||||
"lighting": "bright market daylight with high contrast",
|
||||
"style": "urban apprenticeship vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Grandparents",
|
||||
"scene": "A late-afternoon sewing circle where a grandparent teaches a child basic stitches for repairing a loved garment (light/skillful)",
|
||||
"sceneVariants": [
|
||||
"A well-loved dress with a visible tear on a knee",
|
||||
"Spools of thread in an orderly array",
|
||||
"A small thimble and worn needle case",
|
||||
"A measuring tape draped over crossed knees",
|
||||
"A finished stitch shown with pride"
|
||||
],
|
||||
"actions": [
|
||||
"Slow demonstration of running and backstitch with patient correction",
|
||||
"Child attempting their first secure stitch with pride",
|
||||
"A story about why the garment mattered sewn into the lesson",
|
||||
"Careful press and admiration of the repair's near-invisibility"
|
||||
],
|
||||
"camera": "Macro stitching detail and medium reaction cuts to faces",
|
||||
"accents": [
|
||||
"thread micro-fibril detail and fabric weave micro-visibility",
|
||||
"needle micro-glint in daylight"
|
||||
],
|
||||
"mood": "considered craftsmanship",
|
||||
"lighting": "soft late-afternoon light with gentle fill",
|
||||
"style": "domestic skill-transfer vignette"
|
||||
}
|
||||
]
|
||||
127
src/data/childhood_and_family_holiday_celebrations.json
Normal file
127
src/data/childhood_and_family_holiday_celebrations.json
Normal file
@ -0,0 +1,127 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Holiday Celebrations",
|
||||
"scene": "Neighborhood block party with lights and potluck tables (evening/festive)",
|
||||
"sceneVariants": [
|
||||
"String lights criss-crossing above a closed-off street",
|
||||
"Long communal tables loaded with home-cooked dishes",
|
||||
"Children weaving between tables playing tag",
|
||||
"A local band setting up a small stage",
|
||||
"Neighbors bringing folding chairs and extra plates"
|
||||
],
|
||||
"actions": [
|
||||
"People exchange dishes and family recipes with laughter",
|
||||
"A short speech thanks organizers and signals the feast",
|
||||
"Children perform a small flag-waving parade",
|
||||
"Shared cleanup and dish-washing becomes an extended social time"
|
||||
],
|
||||
"camera": "Wide street establish with warm string-light close inserts",
|
||||
"accents": [
|
||||
"paper lantern micro-glow and food steam micro-caustics",
|
||||
"fabric tablecloth weave micro-detail"
|
||||
],
|
||||
"mood": "communal celebration",
|
||||
"lighting": "warm evening string and lantern light",
|
||||
"style": "neighborhood festive vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Holiday Celebrations",
|
||||
"scene": "Winter holiday evening with decorated tree and wrapped gifts (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"A living room centered around a decorated tree with twinkling lights",
|
||||
"Stockings hung on the mantle and a plate of cookies",
|
||||
"Children in pajamas peeking at presents",
|
||||
"Carols hummed softly by gathered family",
|
||||
"A snow-covered window framing the scene outside"
|
||||
],
|
||||
"actions": [
|
||||
"Gifts are opened with squeals and grateful embraces",
|
||||
"A customary family recipe is served and shared",
|
||||
"Older relatives recount the origin of a beloved tradition",
|
||||
"A concluding toast or blessing closes the evening on a warm note"
|
||||
],
|
||||
"camera": "Intimate medium-shots with tree-light bokeh closeups",
|
||||
"accents": [
|
||||
"ornament glass micro-reflections and ribbon micro-fibers",
|
||||
"candle flame micro-flicker and plate glaze micro-detail"
|
||||
],
|
||||
"mood": "nostalgic warmth",
|
||||
"lighting": "soft low indoor with tree and candle highlights",
|
||||
"style": "holiday domestic portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Holiday Celebrations",
|
||||
"scene": "Cultural festival parade with costumes, floats and street food (day/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"Colorful floats rolling down a city avenue",
|
||||
"Traditional dancers in costume performing choreographed steps",
|
||||
"Street-food vendors serving festival-specific treats",
|
||||
"Crowds waving and clapping from the sidelines",
|
||||
"Children collecting small trinkets or sweets tossed by performers"
|
||||
],
|
||||
"actions": [
|
||||
"Parade participants perform synchronized routines",
|
||||
"Local elders explain cultural meanings to attentive children",
|
||||
"Families sample specialty snacks and trade impressions",
|
||||
"A final communal dance invites onlookers to join"
|
||||
],
|
||||
"camera": "Vibrant crowd-level tracking with dance close-ins and float detail",
|
||||
"accents": [
|
||||
"fabric costume embroidery micro-detail and painted float micro-texture",
|
||||
"steam and glaze micro-speculars from street-food"
|
||||
],
|
||||
"mood": "cultural exuberance",
|
||||
"lighting": "clear daylight with high saturation",
|
||||
"style": "festival documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Holiday Celebrations",
|
||||
"scene": "Religious holiday service with candle processions and communal hymns (light/solemn)",
|
||||
"sceneVariants": [
|
||||
"Congregation gathered in a warmly-lit sacred space",
|
||||
"Candles passed and lit in a procession",
|
||||
"A choir lifting harmonies from a central chancel",
|
||||
"Children participating in a symbolic reading",
|
||||
"A community meal following the service in a hall"
|
||||
],
|
||||
"actions": [
|
||||
"A solemn procession moves slowly with whispered prayers",
|
||||
"A child carries a small candle in a practiced ritual",
|
||||
"Elders share blessings and brief reflections",
|
||||
"A communal meal fosters fellowship afterward"
|
||||
],
|
||||
"camera": "Respectful wide and close intimate facial inserts with candle glow",
|
||||
"accents": [
|
||||
"wax drip micro-texture and choir robe fabric micro-detail",
|
||||
"stained-glass light micro-caustics"
|
||||
],
|
||||
"mood": "solemn communion",
|
||||
"lighting": "candled warm with sacred space contrast",
|
||||
"style": "ritual observance vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Holiday Celebrations",
|
||||
"scene": "New Year street countdown with fireworks and horns (night/exultant)",
|
||||
"sceneVariants": [
|
||||
"Crowds gathered in a central square with noise-makers",
|
||||
"A countdown clock projected and a stage announcer",
|
||||
"Children bundled warmly on parents' shoulders",
|
||||
"Sparks of fireworks launching over silhouettes",
|
||||
"Hot beverage stalls serving mulled drinks and snacks"
|
||||
],
|
||||
"actions": [
|
||||
"A synchronized countdown erupts into cheering and hugging",
|
||||
"Fireworks bloom overhead as confetti drifts down",
|
||||
"Families exchange resolutions and simple wishes",
|
||||
"A safe dispersal is coordinated by volunteers after celebrations"
|
||||
],
|
||||
"camera": "Dynamic tight crowd shots with wide fireworks establishes",
|
||||
"accents": [
|
||||
"firework spark micro-trails and confetti paper micro-fiber",
|
||||
"breath vapor micro-threads in cold air"
|
||||
],
|
||||
"mood": "exuberant renewal",
|
||||
"lighting": "bright multi-colored fireworks with strong dark contrast",
|
||||
"style": "public celebration cinema"
|
||||
}
|
||||
]
|
||||
402
src/data/childhood_and_family_learning_to_walk.json
Normal file
402
src/data/childhood_and_family_learning_to_walk.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim living room at dusk where a toddler takes first tentative steps toward a parent's outstretched hands (dark/tense)",
|
||||
"sceneVariants": [
|
||||
"A low coffee table cleared away to make space",
|
||||
"Soft carpeted floor with a visible trail of tiny footprints",
|
||||
"A parent kneeling with arms wide and encouraging smile",
|
||||
"A pet watching curiously at knee height",
|
||||
"A small shoe placed as a target prize"
|
||||
],
|
||||
"actions": [
|
||||
"Toddler stands, wobbles and takes one step then another",
|
||||
"Parent calls supportive cues and extends a steady hand",
|
||||
"A triumphant tumble turned into laughter and immediate comfort",
|
||||
"A celebratory pick-up and spinning hug after success"
|
||||
],
|
||||
"camera": "Low-angle tracking from floor level to emphasize small legs and rising confidence",
|
||||
"accents": [
|
||||
"carpet fiber micro-texture and skin micro-sheen on knees",
|
||||
"rim micro-glow from a nearby lamp highlighting movement"
|
||||
],
|
||||
"mood": "nervous exhilaration",
|
||||
"lighting": "soft dusk lamp with warm pool on the finish line",
|
||||
"style": "intimate first-steps vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright morning kitchen where a child uses a push-toy walker and experiments with speed (light/playful)",
|
||||
"sceneVariants": [
|
||||
"Sunlight spilling across tiled floor",
|
||||
"A colorful push-toy with rattles and bells",
|
||||
"Parents crouched near the stove sipping coffee while supervising",
|
||||
"A cereal spill to navigate around as a mini-obstacle",
|
||||
"A sticky handprint on the lower cabinet"
|
||||
],
|
||||
"actions": [
|
||||
"Toddler shoves the walker and toddles faster than before",
|
||||
"Parent claps in rhythm to encourage sustained steps",
|
||||
"A small stop to poke the toy features then continue",
|
||||
"A playful race initiated between child and an older sibling"
|
||||
],
|
||||
"camera": "Wide low tracking following the walker with occasional macro on wheel motion",
|
||||
"accents": [
|
||||
"wheel micro-rotation blur and tile micro-reflection",
|
||||
"toy bead micro-sparkle when jolted"
|
||||
],
|
||||
"mood": "joyful experimentation",
|
||||
"lighting": "bright morning light with crisp soft fill",
|
||||
"style": "playful developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim hallway late-night, a child practices steps between two parent endpoints using soft nightlight markers (dark/ritual)",
|
||||
"sceneVariants": [
|
||||
"Tiny glow-stick motifs placed like stepping stones",
|
||||
"Quiet hallway runner muffling foot-falls",
|
||||
"Parents whispering encouragement from each end",
|
||||
"A monitor camera showing a low-res silhouette",
|
||||
"A soft door closed halfway to calm echoes"
|
||||
],
|
||||
"actions": [
|
||||
"Slow small steps with concentration faces",
|
||||
"Parent applause at midpoint then gentle praise at completion",
|
||||
"A minor stumble followed by gentle pick-up and reset",
|
||||
"A final settled cuddle as the child tires"
|
||||
],
|
||||
"camera": "Long hallway perspective with depth focus on approaching figure",
|
||||
"accents": [
|
||||
"glow micro-halo and runner fabric micro-weft detail",
|
||||
"soft nightlight micro-bloom on cheeks"
|
||||
],
|
||||
"mood": "quiet determination",
|
||||
"lighting": "very low with small warm waypoints",
|
||||
"style": "gentle practice vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright playgroup session where toddlers hold onto parallel bars and practice stepping together (light/social)",
|
||||
"sceneVariants": [
|
||||
"A row of small bars at chest height",
|
||||
"Multiple toddlers lined up with colorful socks",
|
||||
"Instructors offering hands-on support and praise",
|
||||
"Parents watching and trading tips on benches",
|
||||
"A soft foam floor beneath for safe falls"
|
||||
],
|
||||
"actions": [
|
||||
"Coached stepping sequences with counted rhythm",
|
||||
"Peer imitation encouraging faster tries",
|
||||
"A cooperative game that rewards taking five steps",
|
||||
"Snack-time break celebrating small milestones"
|
||||
],
|
||||
"camera": "Medium wide framing capturing group dynamics and rhythmic motion",
|
||||
"accents": [
|
||||
"foam micro-cell texture and sock micro-knit detail",
|
||||
"hand micro-contact warmth in correction moments"
|
||||
],
|
||||
"mood": "communal encouragement",
|
||||
"lighting": "bright indoor daylight with even fill",
|
||||
"style": "developmental social vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim rainy afternoon at home where the child pulls up on couch arms and practices cruising (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Raindrops streaking the window behind a soft couch",
|
||||
"A row of cushions lining a safe cruise path",
|
||||
"A parent's low laugh encouraging the movement",
|
||||
"A soft blanket used as a padding strip",
|
||||
"A nearby toy placed just out of reach to tempt movement"
|
||||
],
|
||||
"actions": [
|
||||
"Cruising sideways holding onto furniture edges",
|
||||
"Brief release-and-stand experiments with parent close",
|
||||
"A small, careful step forward and immediate steadying",
|
||||
"A reward of the toy and a gentle handshake"
|
||||
],
|
||||
"camera": "Close side POV as the child moves along the couch rail",
|
||||
"accents": [
|
||||
"upholstery micro-fiber and cushion micro-spring detail",
|
||||
"wet window micro-reflection adding soft background"
|
||||
],
|
||||
"mood": "cozy persistence",
|
||||
"lighting": "low overcast plus warm interior lamp accent",
|
||||
"style": "domestic developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright park grass patch where a toddler practices unassisted steps between two grandparents (light/warm)",
|
||||
"sceneVariants": [
|
||||
"A low picnic blanket with cheering family",
|
||||
"A stroller parked nearby",
|
||||
"A path of little flags marking the route",
|
||||
"A grandparent kneeling with camera ready",
|
||||
"A soft breeze ruffling small hair"
|
||||
],
|
||||
"actions": [
|
||||
"Bold unassisted steps toward waiting arms",
|
||||
"Grandparents cheer and clap, capturing the moment",
|
||||
"A wobble corrected by outstretched palms",
|
||||
"A triumphant scoop into arms and a proud kiss"
|
||||
],
|
||||
"camera": "Shallow depth close-ups on legs alternating with wide family reaction shots",
|
||||
"accents": [
|
||||
"grass blade micro-detail and blanket weave micro-thread",
|
||||
"sun micro-rim highlighting hair movement"
|
||||
],
|
||||
"mood": "celebratory warmth",
|
||||
"lighting": "bright afternoon sun with soft fill",
|
||||
"style": "family milestone vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim kitchen tiles where a child practices pulling to stand using lower cabinets as grips (dark/practical)",
|
||||
"sceneVariants": [
|
||||
"Suction-cup handles on cabinet edges for safety",
|
||||
"A small stool nearby for attempted climbs",
|
||||
"A parent kneeling to steady from behind",
|
||||
"Pancake batter bowl on counter signaling morning rituals",
|
||||
"A spilled toy used as a stepping target"
|
||||
],
|
||||
"actions": [
|
||||
"Hands clutch cabinet edges then rise to standing balance",
|
||||
"Small pivot and tentative first step away from support",
|
||||
"Parent steadying with a hand at the waist",
|
||||
"A quick celebratory clap and return to seated play"
|
||||
],
|
||||
"camera": "Low ground inserts focused on hand-to-edge contact and foot shifts",
|
||||
"accents": [
|
||||
"tile micro-gloss and cabinet paint micro-crackle near handles",
|
||||
"hand micro-grip texture on wood edge"
|
||||
],
|
||||
"mood": "practical focus",
|
||||
"lighting": "warm kitchen morning lamp with cool window contrast",
|
||||
"style": "hands-on learning vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright child's bedroom obstacle of pillows and boxes turned into a training course (light/creative)",
|
||||
"sceneVariants": [
|
||||
"Pillows arranged as soft stepping islands",
|
||||
"Cardboard bridges and safe gaps for small steps",
|
||||
"A treasure box at the end as reward",
|
||||
"Parents filming with playful commentary",
|
||||
"A stuffed animal 'coach' planted along the route"
|
||||
],
|
||||
"actions": [
|
||||
"Child navigates soft obstacles practicing balance",
|
||||
"Parent cheers and adjusts difficulty gradually",
|
||||
"A cooperative partner play with an older sibling guiding the way",
|
||||
"Celebratory retrieval of the treasure at the end"
|
||||
],
|
||||
"camera": "Playful overhead wide with POV pillow-close inserts",
|
||||
"accents": [
|
||||
"pillow stitch micro-weft and cardboard micro-edge fray",
|
||||
"stuffed fur micro-fiber detail"
|
||||
],
|
||||
"mood": "inventive practice",
|
||||
"lighting": "bright daytime with warm accent lamps",
|
||||
"style": "imaginative developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim late-night hospital corridor where a baby experiments first steps under a clinician's watch (dark/clinical hope)",
|
||||
"sceneVariants": [
|
||||
"Soft clinical flooring and small footprints taped for reference",
|
||||
"A pediatric therapist guiding gait with a supportive belt",
|
||||
"A monitoring cart quietly showing vitals",
|
||||
"A parent walking alongside with intense focus",
|
||||
"A small constellation of ceiling tiles overhead"
|
||||
],
|
||||
"actions": [
|
||||
"Guided stepping drills to assess strength and balance",
|
||||
"Therapist gently corrects weight distribution",
|
||||
"A documented improvement prompting soft smiles",
|
||||
"A plan discussed for home exercises"
|
||||
],
|
||||
"camera": "Clinical side-on observation with close-up footfall timing inserts",
|
||||
"accents": [
|
||||
"vinyl floor micro-sheen and therapy belt micro-stitch",
|
||||
"monitor micro-LED indicators reflected"
|
||||
],
|
||||
"mood": "measured optimism",
|
||||
"lighting": "soft clinical fluorescent with minimal glare",
|
||||
"style": "therapeutic observational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright market stroll where a toddler practices steps between stalls reaching for curious fruits (light/exploratory)",
|
||||
"sceneVariants": [
|
||||
"Colorful produce draws a child's attention",
|
||||
"A parent steadying via a small handhold",
|
||||
"A crowd pausing to smile at the endeavour",
|
||||
"A cute apron on the child for a local styled photo-op",
|
||||
"Small paper bags rustling nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Measured steps with stops to point and touch textures",
|
||||
"Parent narrates names of colors and shapes",
|
||||
"A vendor offers a tiny sample as encouragement",
|
||||
"A final rest on a bench with a shared snack"
|
||||
],
|
||||
"camera": "Candid side-follow with texture close-ups of small hand touches",
|
||||
"accents": [
|
||||
"fruit skin micro-pore and paper bag micro-crinkle",
|
||||
"sun micro-spot glints on produce"
|
||||
],
|
||||
"mood": "curious discovery",
|
||||
"lighting": "bright market daylight with high contrast",
|
||||
"style": "urban exploration vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim candlelit cultural ritual where a child is encouraged to take auspicious first steps toward an elder (dark/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"A small carpeted path laid with flower petals",
|
||||
"An elder seated with a symbolic gift",
|
||||
"Soft chants in the background and family gathered",
|
||||
"A small string tied as a marker at the starting point",
|
||||
"A camera quietly documenting the rite"
|
||||
],
|
||||
"actions": [
|
||||
"Encouraged steps toward the elder receiving blessings",
|
||||
"A ritual utterance at each successful step",
|
||||
"Family quietly singing and clapping in rhythm",
|
||||
"A ceremonial token placed in child's hand at the end"
|
||||
],
|
||||
"camera": "Reverent medium composition with close-in ritual detail inserts",
|
||||
"accents": [
|
||||
"petal micro-fiber and candle micro-flame flicker",
|
||||
"fabric micro-embroidery on ceremonial garments"
|
||||
],
|
||||
"mood": "sacred celebration",
|
||||
"lighting": "low warm candlelight with reflective accents",
|
||||
"style": "cultural milestone vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright nursery rhyme circle where music aids rhythm and step timing (light/musical)",
|
||||
"sceneVariants": [
|
||||
"A semicircle of toddlers bouncing to a beat",
|
||||
"A caregiver tapping a tambourine to mark cadence",
|
||||
"Color-coded mats indicating 'start' and 'finish'",
|
||||
"A simple lyric board showing counting words",
|
||||
"Parents joining clapping for support"
|
||||
],
|
||||
"actions": [
|
||||
"Stepping on each beat as a simple count progression",
|
||||
"Synchronized group steps building confidence",
|
||||
"Playful freeze-and-go games to reinforce control",
|
||||
"A final group bow with shared smiles"
|
||||
],
|
||||
"camera": "Rhythmic cuts synced to music with tight foot and face inserts",
|
||||
"accents": [
|
||||
"tambourine micro-rattle and mat micro-pattern weave",
|
||||
"hand micro-clap motion blur"
|
||||
],
|
||||
"mood": "joyful learning",
|
||||
"lighting": "bright indoor light with warm accents",
|
||||
"style": "musical pedagogical vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim early-morning kitchen where parents rehearse safety and first-aid steps before practice (dark/prepared)",
|
||||
"sceneVariants": [
|
||||
"A small first-aid kit by the stove",
|
||||
"A printed checklist for baby-proofing tasks",
|
||||
"A quick practice of soft tumble responses",
|
||||
"A thermos of coffee ready for the supervising parent",
|
||||
"A shoe left near the threshold as a visual anchor"
|
||||
],
|
||||
"actions": [
|
||||
"Reviewing emergency steps and safe lift technique",
|
||||
"Quick drill of secure grip and upright support",
|
||||
"Checking that corners are padded and cords tied back",
|
||||
"A final nod of readiness and stepping out to practice"
|
||||
],
|
||||
"camera": "Over-the-shoulder checklist and close practical demonstrations",
|
||||
"accents": [
|
||||
"first-aid micro-label clarity and tape micro-gloss on padding",
|
||||
"pen micro-ink pooling on the list"
|
||||
],
|
||||
"mood": "responsible calm",
|
||||
"lighting": "dim early light with focused countertop lamp",
|
||||
"style": "practical preparedness vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright garden path where a toddler practices uneven surfaces guided by a parent (light/adventurous)",
|
||||
"sceneVariants": [
|
||||
"Flagstones with grass between them creating micro-challenges",
|
||||
"A small watering can used as a balance target",
|
||||
"A parent gently guiding with a fingertip at the back",
|
||||
"Birdsong punctuating the attempts",
|
||||
"A bench at the end for rest and reward"
|
||||
],
|
||||
"actions": [
|
||||
"Stepping on different textures to build proprioception",
|
||||
"Parent narrates adjustments and praises correct foot placement",
|
||||
"A cautious skip attempted and gently encouraged",
|
||||
"A final sit-and-snack break celebrating progress"
|
||||
],
|
||||
"camera": "Low-angle lateral follow emphasizing foot placement and texture change",
|
||||
"accents": [
|
||||
"stone micro-grain and grass micro-blade detail",
|
||||
"sun micro-sparkle on a watering can"
|
||||
],
|
||||
"mood": "adventurous confidence",
|
||||
"lighting": "bright natural daylight with warm fill",
|
||||
"style": "exploratory learning vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Dim bedtime reflection where a parent records the day's walking milestones in a memory book (dark/reflective)",
|
||||
"sceneVariants": [
|
||||
"A small scrapbook with stickers and captions",
|
||||
"A pen with a colorful ink left on the page",
|
||||
"A print of a tiny foot pressed in safe ink",
|
||||
"A lamp casting a warm cone onto the desk",
|
||||
"A recorded video thumbnail saved on a phone"
|
||||
],
|
||||
"actions": [
|
||||
"Careful note of steps taken and dates recorded",
|
||||
"Affixing a photo and a small caption of the first unsupervised step",
|
||||
"A quiet whisper of pride before closing the book",
|
||||
"Back-up of a short video clip to cloud storage for safekeeping"
|
||||
],
|
||||
"camera": "Close macro on handwriting and tiny prints with a medium pull-back on the parent's face",
|
||||
"accents": [
|
||||
"paper micro-tooth and ink micro-pooling around a pressed print",
|
||||
"lamp micro-halo and fingertip micro-smudge"
|
||||
],
|
||||
"mood": "nostalgic quiet",
|
||||
"lighting": "very low warm desk light with cool room shadow",
|
||||
"style": "keepsake documentary vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Learning to Walk",
|
||||
"scene": "Bright birthday party where a child walks across a short stage to receive a 'first steps' ribbon (light/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"A small decorated stage with streamers",
|
||||
"A parent photographing the walk with a phone",
|
||||
"A tiny ribbon sewed with the date ready to pin",
|
||||
"Friends clapping and singing encouragement",
|
||||
"A toy throne where the child sits after receiving the ribbon"
|
||||
],
|
||||
"actions": [
|
||||
"A playful staged walk toward awaiting families",
|
||||
"A proud pinning of the commemorative ribbon",
|
||||
"Cake shared as a reward for the milestone",
|
||||
"A family group photo capturing the moment"
|
||||
],
|
||||
"camera": "Event-style coverage with cut-ins on the walk and reaction shots",
|
||||
"accents": [
|
||||
"ribbon micro-stitch and streamer micro-sheen",
|
||||
"cake micro-crumb detail and candle micro-flame"
|
||||
],
|
||||
"mood": "festive pride",
|
||||
"lighting": "bright party lighting with warm fill",
|
||||
"style": "celebratory milestone vignette"
|
||||
}
|
||||
]
|
||||
477
src/data/childhood_and_family_nursery.json
Normal file
477
src/data/childhood_and_family_nursery.json
Normal file
@ -0,0 +1,477 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim nursery at midnight with a parent checking a sleeping infant in a rocking crib (dark/quiet)",
|
||||
"sceneVariants": [
|
||||
"Slow breath visible in the crib as the baby sleeps",
|
||||
"A soft mobile casting slow shadows on the ceiling",
|
||||
"A parent pausing at the doorway to observe",
|
||||
"A monitor tiny LED pulsing in the corner",
|
||||
"A favorite stuffed animal positioned beside the crib"
|
||||
],
|
||||
"actions": [
|
||||
"Parent leans in to smooth the blanket and adjust the mobile",
|
||||
"A slow, whispered goodnight before the door closes",
|
||||
"Small hand reaches to tuck the stuffed animal closer",
|
||||
"Parent listens for breathing then steps back silently"
|
||||
],
|
||||
"camera": "Gentle push-in from doorway to crib with soft focus on faces",
|
||||
"accents": [
|
||||
"nightlight micro-halo and soft knit micro-detail",
|
||||
"breath micro-rhythm reflected on soft sheets"
|
||||
],
|
||||
"mood": "protective calm",
|
||||
"lighting": "very low nightlamp with cool ambient shadows",
|
||||
"style": "intimate domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright morning nursery where sunlight pours over neatly folded outfits and a freshly made crib (light/ordered)",
|
||||
"sceneVariants": [
|
||||
"Sunlight patterns on a pastel mobile",
|
||||
"A row of tiny outfits hung like little flags",
|
||||
"A freshly laundered blanket folded on a shelf",
|
||||
"A labeled basket of diapers and wipes",
|
||||
"A window with a view of a garden"
|
||||
],
|
||||
"actions": [
|
||||
"Careful folding and arranging of outfits for the day",
|
||||
"A parent checks the diaper stock and writes a note",
|
||||
"A small toy placed into an easy reach bin",
|
||||
"A soft playful pat to the mattress before dressing the baby"
|
||||
],
|
||||
"camera": "Wide clean composition with occasional macro on hands and labels",
|
||||
"accents": [
|
||||
"fabric fold micro-crease detail and sunlight micro-dust motes",
|
||||
"label micro-text clarity on storage bins"
|
||||
],
|
||||
"mood": "prepared serenity",
|
||||
"lighting": "bright morning daylight with soft diffusion",
|
||||
"style": "practical domestic portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim evening when a parent assembles a new mobile over the crib following instructions (dark/focused)",
|
||||
"sceneVariants": [
|
||||
"Parts laid out in a neat pattern on the floor",
|
||||
"A small Allen key and packet of screws nearby",
|
||||
"Soft background playlist providing calm focus",
|
||||
"A manual page pinned to a lamp for reference",
|
||||
"An empty bottle cooling on the counter"
|
||||
],
|
||||
"actions": [
|
||||
"Following step-by-step instructions with careful hands",
|
||||
"Tightening screws and aligning the mobile axis",
|
||||
"Testing rotation and adjusting balance",
|
||||
"A satisfied nod and a small celebratory hum"
|
||||
],
|
||||
"camera": "Close overhead of the mobile assembly with shallow depth",
|
||||
"accents": [
|
||||
"metal micro-thread on fasteners and mobile paint micro-finish",
|
||||
"manual paper micro-fiber detail under lamp glow"
|
||||
],
|
||||
"mood": "attentive accomplishment",
|
||||
"lighting": "single warm lamp with deep surrounding shadow",
|
||||
"style": "small craftsmanship vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright daytime play corner where a baby practices reaching for colorful hanging toys (light/playful)",
|
||||
"sceneVariants": [
|
||||
"High-contrast soft toys dangling just above tiny hands",
|
||||
"A parent coaxing with animated faces",
|
||||
"A mat patterned with developmental cues",
|
||||
"A mirror reflecting curious expressions",
|
||||
"A soft rattle prompting grasp attempts"
|
||||
],
|
||||
"actions": [
|
||||
"Reaching attempts rewarded with cheer and a soft clap",
|
||||
"Parent names colors to stimulate recognition",
|
||||
"Toy is repositioned to encourage stretching",
|
||||
"A short rest and a gentle snack break"
|
||||
],
|
||||
"camera": "Low-angle close to mat capturing tiny movements",
|
||||
"accents": [
|
||||
"toy fabric micro-loop detail and reflection micro-glint on the mirror",
|
||||
"sunbeam micro-motes around reaching hands"
|
||||
],
|
||||
"mood": "encouraging delight",
|
||||
"lighting": "clear daylight with soft reflectors",
|
||||
"style": "developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Nighttime soothing ritual with a parent singing to a baby while walking slowly around the room (dark/musical)",
|
||||
"sceneVariants": [
|
||||
"A soft tune hummed quietly while pacing",
|
||||
"Footsteps softened by a rug to avoid waking the baby",
|
||||
"A dim projector creating tiny stars on the ceiling",
|
||||
"A parent pausing to kiss the baby's forehead",
|
||||
"A gently swinging rocker in the corner"
|
||||
],
|
||||
"actions": [
|
||||
"Slow circular walking to create rhythmic motion",
|
||||
"Alternating lines of the lullaby with gentle hums",
|
||||
"A pause to check blankets and temperature",
|
||||
"A final tuck and soft closing of the door"
|
||||
],
|
||||
"camera": "Steady slow tracking following the parent with intimate close-ups",
|
||||
"accents": [
|
||||
"vocal breath micro-threads in soft audio and projector micro-glow",
|
||||
"rug fiber micro-texture underfoot"
|
||||
],
|
||||
"mood": "lulling tenderness",
|
||||
"lighting": "very low warm projection with cool rim contrast",
|
||||
"style": "musical domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright organizational day where labels are printed and a schedule board is mounted (light/efficient)",
|
||||
"sceneVariants": [
|
||||
"A corkboard with color-coded cards",
|
||||
"A label printer spitting out adhesive name tags",
|
||||
"A weekly schedule with feeding and nap times",
|
||||
"Small baskets arranged by category on shelves",
|
||||
"A calendar sticker marking immunization dates"
|
||||
],
|
||||
"actions": [
|
||||
"Designing and affixing labels to bins",
|
||||
"Writing a clear schedule and pinning it in place",
|
||||
"Folding tiny clothes into labeled stacks",
|
||||
"Taking a photo of the finished organization for reference"
|
||||
],
|
||||
"camera": "Top-down shots of the board with macro on label text",
|
||||
"accents": [
|
||||
"label micro-edge and printed text micro-ink clarity",
|
||||
"paper micro-tooth on the schedule cards"
|
||||
],
|
||||
"mood": "orderly calm",
|
||||
"lighting": "bright midday sun with neutral fill",
|
||||
"style": "practical domestic documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim emergency night when a parent fetches medicine and consults a small instruction leaflet (dark/urgent but calm)",
|
||||
"sceneVariants": [
|
||||
"A small torch app on a phone lighting the way",
|
||||
"A medicine cabinet opened with measured doses",
|
||||
"A calm parent reading dosage instructions aloud",
|
||||
"A soft hum of a monitor in the background",
|
||||
"A hand on the baby's chest checking warmth"
|
||||
],
|
||||
"actions": [
|
||||
"Careful dose measurement with a syringe",
|
||||
"A reassuring murmur to the baby while administering",
|
||||
"Logging the time and dosage in a notebook",
|
||||
"A slow check-in with an on-call nurse via phone"
|
||||
],
|
||||
"camera": "Close macro on the syringe and notes with medium reaction shots",
|
||||
"accents": [
|
||||
"liquid micro-viscosity detail and syringe micro-scale marks",
|
||||
"phone screen micro-pixel clarity in dim light"
|
||||
],
|
||||
"mood": "practical vigilance",
|
||||
"lighting": "very low phone torch and small bedside lamp",
|
||||
"style": "medical domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright midday photoshoot for a growth milestone with a small backdrop and simple props (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"A soft neutral backdrop hung behind a basket",
|
||||
"A small chalkboard showing the baby's age in weeks",
|
||||
"A parent placing a tiny prop hat carefully",
|
||||
"A reflector used to soften shadows",
|
||||
"A few favorite toys arranged for candid shots"
|
||||
],
|
||||
"actions": [
|
||||
"Delicate positioning for comfort and aesthetic",
|
||||
"Parent coaxes a smile or coo for the shot",
|
||||
"Quick captures with variations in pose and prop placement",
|
||||
"A celebratory cheer and a favorite snack post-shoot"
|
||||
],
|
||||
"camera": "Macro feature shots intercut with medium family portraits",
|
||||
"accents": [
|
||||
"fabric micro-weave on backdrop and chalk micro-powder detail",
|
||||
"reflector micro-glint softening skin tones"
|
||||
],
|
||||
"mood": "proud warmth",
|
||||
"lighting": "soft studio daylight with reflectors",
|
||||
"style": "intimate portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim late-night monitoring where a parent reviews sleep-tracker data on a tablet (dark/analytic)",
|
||||
"sceneVariants": [
|
||||
"Graph lines showing sleep and wake cycles",
|
||||
"A tablet glow illuminating a tired but focused face",
|
||||
"A small pen to annotate notes",
|
||||
"A coffee mug half-empty on a side table",
|
||||
"A faint sound from the baby monitor speaker"
|
||||
],
|
||||
"actions": [
|
||||
"Comparing last night's data to previous charts",
|
||||
"Making a note of anomalies and planning tweaks",
|
||||
"Setting a gentle alarm reminder for the next check",
|
||||
"A small relieved exhale at a stable pattern"
|
||||
],
|
||||
"camera": "Over-the-shoulder tablet insert with reaction cutaways",
|
||||
"accents": [
|
||||
"screen micro-pixel grid and pen micro-ink pooling",
|
||||
"tablet micro-gloss under low lamp"
|
||||
],
|
||||
"mood": "concerned diligence",
|
||||
"lighting": "tablet-dominated cool glow with minimal ambient",
|
||||
"style": "modern parental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright afternoon sensory corner where textured books and gentle lights encourage quiet exploration (light/curious)",
|
||||
"sceneVariants": [
|
||||
"A texture wall with soft patches and ribbons",
|
||||
"Low shelves with board books and tactile toys",
|
||||
"A soft lamp casting a warm sandbox glow",
|
||||
"A small basket of teething rings",
|
||||
"A rug sectioned with contrasting patterns"
|
||||
],
|
||||
"actions": [
|
||||
"Parent demonstrates texture exploration and naming",
|
||||
"Baby reaches and reacts to new sensations",
|
||||
"Short guided play sessions followed by rest",
|
||||
"Rotation of toys to maintain novelty"
|
||||
],
|
||||
"camera": "Close macro on tactile interactions and medium for parent-child interplay",
|
||||
"accents": [
|
||||
"fabric micro-fuzz and paper edge micro-layering",
|
||||
"lamp micro-glow emphasizing textures"
|
||||
],
|
||||
"mood": "engaged curiosity",
|
||||
"lighting": "soft controlled daylight with warm accents",
|
||||
"style": "developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim twilight ritual where a parent reads a short picture book in a cozy corner (dark/storybook)",
|
||||
"sceneVariants": [
|
||||
"Softly illustrated pages turned slowly",
|
||||
"A plush chair and warm throw for shared reading",
|
||||
"A bookmark peeking from an unfinished tale",
|
||||
"Quiet hum of a distant dishwasher",
|
||||
"A child's small yawn timed with the last page"
|
||||
],
|
||||
"actions": [
|
||||
"Expressive reading with animated voices and gentle pacing",
|
||||
"Pointing out pictures and asking small questions",
|
||||
"A brief pause for the child to mimic a character sound",
|
||||
"Closing the book and a calming transition to sleep"
|
||||
],
|
||||
"camera": "Intimate close-ups on page illustrations and faces",
|
||||
"accents": [
|
||||
"paper fiber micro-detail and throw knit micro-weave",
|
||||
"lamplight micro-halo on page edges"
|
||||
],
|
||||
"mood": "gentle closure",
|
||||
"lighting": "low warm lamp with soft vignette",
|
||||
"style": "quiet domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright midday supply inventory where parents restock diapers, wipes and check expiry dates (light/organized)",
|
||||
"sceneVariants": [
|
||||
"Open boxes with sealed packages stacked neatly",
|
||||
"A marker used to note expiry or best-by dates",
|
||||
"A small shopping list app open on a phone",
|
||||
"A parent comparing brands and features",
|
||||
"A donation bag set aside for excess items"
|
||||
],
|
||||
"actions": [
|
||||
"Checking stock levels and moving items to accessible bins",
|
||||
"Making a grouped shopping list for replenishment",
|
||||
"Labeling replacement dates and priorities",
|
||||
"Setting aside goods for donation or backup"
|
||||
],
|
||||
"camera": "Top-down wide of shelves with macro on package labels",
|
||||
"accents": [
|
||||
"packaging micro-print clarity and adhesive micro-edge on labels",
|
||||
"phone micro-screen reflection under daylight"
|
||||
],
|
||||
"mood": "practical readiness",
|
||||
"lighting": "clear bright daylight, neutral fill",
|
||||
"style": "domestic logistics vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim late-night bonding where a parent and baby practice gentle massage techniques (dark/soothing)",
|
||||
"sceneVariants": [
|
||||
"A soft massage oil warmed in hands",
|
||||
"Slow guided strokes on tiny limbs",
|
||||
"A parent watching the baby's calm cues",
|
||||
"A small playlist with soft rhythm",
|
||||
"A plush towel awaiting for a final wrap"
|
||||
],
|
||||
"actions": [
|
||||
"Measured strokes following taught patterns",
|
||||
"A subtle coaxing to encourage digestion and calm",
|
||||
"A quiet dialog of murmured encouragement",
|
||||
"A final cuddle then swaddle for sleep"
|
||||
],
|
||||
"camera": "Macro on hands and skin with medium reaction shots",
|
||||
"accents": [
|
||||
"oil micro-sheen on skin and blanket micro-pile",
|
||||
"vocal micro-breath threads in low audio"
|
||||
],
|
||||
"mood": "nurturing calm",
|
||||
"lighting": "very low amber lamp with soft directional fill",
|
||||
"style": "care ritual vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright early-morning temperature and comfort check with a parent using a gentle forehead touch and thermometer (light/careful)",
|
||||
"sceneVariants": [
|
||||
"A digital thermometer showing a reassuring reading",
|
||||
"A blanket half-folded back for airflow",
|
||||
"A window with cool morning light",
|
||||
"A small chart noting any previous temperature spikes",
|
||||
"A calming herbal tea cooling nearby"
|
||||
],
|
||||
"actions": [
|
||||
"Forehead checks and thermometer verification",
|
||||
"Adjustment of room temperature or blanket layers",
|
||||
"A note written if any anomaly appears",
|
||||
"A quick consult call to a pediatrician if needed"
|
||||
],
|
||||
"camera": "Close on thermometer and parent's concerned face, then relief",
|
||||
"accents": [
|
||||
"thermometer micro-digits and fabric micro-weave of blankets",
|
||||
"morning micro-rim on skin"
|
||||
],
|
||||
"mood": "attentive reassurance",
|
||||
"lighting": "soft morning daylight with neutral fill",
|
||||
"style": "healthcare-adjacent domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim pre-bedtime light test where smart bulbs cycle through warm hues to find a soothing setting (dark/technical comfort)",
|
||||
"sceneVariants": [
|
||||
"A phone app adjusting color temperature in realtime",
|
||||
"Bulbs dimming to a warm amber tint",
|
||||
"A parent watching color change and judging reactions",
|
||||
"A small timer scheduling night mode activation",
|
||||
"A soft nod of approval at the final hue"
|
||||
],
|
||||
"actions": [
|
||||
"Cycling through presets to observe baby's response",
|
||||
"Scheduling an automated nighttime routine",
|
||||
"Saving the preferred setting to a favorites list",
|
||||
"Turning off extraneous lights to confirm low-light comfort"
|
||||
],
|
||||
"camera": "Over-the-shoulder app inserts and pull-back to room ambiance",
|
||||
"accents": [
|
||||
"LED micro-color gradation and screen micro-pixel clarity",
|
||||
"lamp micro-halo adjustments on crib edges"
|
||||
],
|
||||
"mood": "calm experimentation",
|
||||
"lighting": "low adaptive warm LED tones",
|
||||
"style": "modern domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright weekend family clean where toys are sorted, washed and rotated for hygiene (light/refreshing)",
|
||||
"sceneVariants": [
|
||||
"A sink filled with warm soapy water for soft toys",
|
||||
"A sunlit balcony used for drying items",
|
||||
"A labeled rotation box marked 'wash' and 'play'",
|
||||
"A child helping tidy by passing items",
|
||||
"A gentle spray bottle used for spot cleaning"
|
||||
],
|
||||
"actions": [
|
||||
"Hand-washing soft toys with careful rinsing",
|
||||
"Air-drying in the sun to freshen linens",
|
||||
"Re-stocking cleaned toys into an accessible bin",
|
||||
"A final inspection and approval before playtime resumes"
|
||||
],
|
||||
"camera": "Action montage of washes, dries and sorting with tidy close-ups",
|
||||
"accents": [
|
||||
"water micro-bead and fabric micro-fiber swelling under soak",
|
||||
"sun micro-reflection on drying toys"
|
||||
],
|
||||
"mood": "refreshed order",
|
||||
"lighting": "bright daylight with high-key fill",
|
||||
"style": "domestic maintenance vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim midnight feeding log where a weary parent inputs times into an app and glances at stored notes (dark/responsive)",
|
||||
"sceneVariants": [
|
||||
"An app showing feeding intervals and sleep windows",
|
||||
"A parent tapping small on-screen icons with one hand",
|
||||
"A half-drunk cup of tea cooling on the nightstand",
|
||||
"A small sticky note with emergency contacts",
|
||||
"A soft sigh of relief when entry is saved"
|
||||
],
|
||||
"actions": [
|
||||
"Entering feeding and diaper data into an app",
|
||||
"Reviewing prior entries to spot patterns",
|
||||
"Setting a quiet alarm for the next scheduled feed",
|
||||
"Putting the phone aside and resettling to bed"
|
||||
],
|
||||
"camera": "Close screen insert then pull to parent's exhausted but content face",
|
||||
"accents": [
|
||||
"screen micro-pixel structure and app micro-icon clarity",
|
||||
"cup micro-steam threads in dim light"
|
||||
],
|
||||
"mood": "practical tenderness",
|
||||
"lighting": "cool app glow with a warm bedside accent",
|
||||
"style": "modern caregiving vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Bright afternoon DIY craft where parents paint a custom name plaque for the nursery wall (light/creative)",
|
||||
"sceneVariants": [
|
||||
"Small wooden letters laid out and pre-primed",
|
||||
"Paint pots with pastel pigments lined up",
|
||||
"A protective sheet covering the floor",
|
||||
"A child handing brushes with enthusiastic flair",
|
||||
"A drying rack with evolving designs"
|
||||
],
|
||||
"actions": [
|
||||
"Priming, painting and fine-detail brushwork on letters",
|
||||
"Testing color on scrap wood before final application",
|
||||
"Affixing a hanging ribbon and final varnish stroke",
|
||||
"Mounting the finished plaque and stepping back to admire"
|
||||
],
|
||||
"camera": "Macro on brush strokes and medium reveal of the mounted plaque",
|
||||
"accents": [
|
||||
"paint micro-bristle stroke detail and wood micro-grain",
|
||||
"sun micro-rim on newly varnished edges"
|
||||
],
|
||||
"mood": "personalized pride",
|
||||
"lighting": "bright craft-room daylight with soft fill",
|
||||
"style": "homecraft vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Nursery",
|
||||
"scene": "Dim late-night hush where a parent rehearses a soft bedtime script to soothe the baby during illness (dark/ritual comfort)",
|
||||
"sceneVariants": [
|
||||
"A small humidifier producing a thin vapor",
|
||||
"A bowl of mild broth cooling nearby",
|
||||
"A parent practicing a repeating phrase of reassurance",
|
||||
"A thermometer and medicine organizer on a tray",
|
||||
"A soft scarf used to prop the parent's voice closer to the baby"
|
||||
],
|
||||
"actions": [
|
||||
"Soft repeated refrains to calm feverish restlessness",
|
||||
"Gentle upright positioning to ease congestion",
|
||||
"Quiet checks of temperature and hydration",
|
||||
"A final restful hush as breathing evens"
|
||||
],
|
||||
"camera": "Close on parent's mouth and hands with wide for context",
|
||||
"accents": [
|
||||
"humidifier micro-vapor threads and broth micro-steam",
|
||||
"thermometer micro-digits under lamp glow"
|
||||
],
|
||||
"mood": "tender vigilance",
|
||||
"lighting": "very low amber lamp and humidifier glow",
|
||||
"style": "comfort ritual vignette"
|
||||
}
|
||||
]
|
||||
477
src/data/childhood_and_family_parent_teacher_meetings.json
Normal file
477
src/data/childhood_and_family_parent_teacher_meetings.json
Normal file
@ -0,0 +1,477 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Quiet classroom after school where a parent and teacher sit at a small table reviewing a school folder (light/formal)",
|
||||
"sceneVariants": [
|
||||
"Stacks of graded worksheets with colorful stickers",
|
||||
"A classroom poster on reading strategies behind them",
|
||||
"A calm teacher offering a warm smile and a pen poised",
|
||||
"A parent holding a travel mug and a notepad",
|
||||
"A small nameplate on the desk indicating the teacher's grade"
|
||||
],
|
||||
"actions": [
|
||||
"Teacher explains progress with reference to specific assignments",
|
||||
"Parent asks clarifying questions and notes action items",
|
||||
"Both plan a simple at-home support routine",
|
||||
"A handshake and a scheduling of a follow-up"
|
||||
],
|
||||
"camera": "Medium two-shot with occasional cut-in to papers and annotations",
|
||||
"accents": [
|
||||
"paper micro-fiber and pen micro-ink gleam",
|
||||
"poster micro-print texture in soft focus"
|
||||
],
|
||||
"mood": "constructive calm",
|
||||
"lighting": "soft natural window light with warm interior fill",
|
||||
"style": "professional domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Evening open house where multiple parents rotate through short check-ins at decorated student desks (light/communal)",
|
||||
"sceneVariants": [
|
||||
"Student projects displayed on walls like a mini-gallery",
|
||||
"A sign-up sheet on a clipboard for extracurricular activities",
|
||||
"Parents smiling and whispering while teachers circulate",
|
||||
"Name tags and classroom-themed snacks on a table",
|
||||
"A projector showing a brief class highlight reel"
|
||||
],
|
||||
"actions": [
|
||||
"Brief three-minute catch-ups focused on strengths and next steps",
|
||||
"Teacher points to a student's project as an example",
|
||||
"Parents exchange contact details for carpooling",
|
||||
"A brief teacher announcement to the whole group"
|
||||
],
|
||||
"camera": "Wide panning to show classroom atmosphere with quick reaction close-ups",
|
||||
"accents": [
|
||||
"project micro-texture and sticker micro-sheen",
|
||||
"clipboard micro-edge and pen micro-scratch"
|
||||
],
|
||||
"mood": "friendly bustle",
|
||||
"lighting": "even fluorescent classroom light softened by warm practicals",
|
||||
"style": "community school reportage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim one-on-one special education meeting with careful, private tone (dark/serious)",
|
||||
"sceneVariants": [
|
||||
"A quiet meeting room with tissue box and water carafe",
|
||||
"An individualized education plan (IEP) printed and highlighted",
|
||||
"A therapist or support specialist present for context",
|
||||
"Parent eyes focused, sometimes tearful, listening intently",
|
||||
"A teacher using a calm reassuring tone and notes"
|
||||
],
|
||||
"actions": [
|
||||
"Careful review of strengths, accommodations and measurable goals",
|
||||
"Collaborative problem solving and scheduling of supports",
|
||||
"Clarifying language and immediate reassurances given",
|
||||
"Agreement on a support timeline and next check-in date"
|
||||
],
|
||||
"camera": "Tight medium insert on documents and close facial reaction shots",
|
||||
"accents": [
|
||||
"printed highlight micro-ink and tissue micro-fiber",
|
||||
"soft voice micro-waveform implied in scene"
|
||||
],
|
||||
"mood": "sober collaboration",
|
||||
"lighting": "low warm table lamp with deep peripheral shadow",
|
||||
"style": "sensitive institutional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright parent-teacher coffee morning with informal seating and large windows (light/open)",
|
||||
"sceneVariants": [
|
||||
"A circular seating plan to encourage sharing",
|
||||
"A coffee urn and pastries on a side table",
|
||||
"A teacher facilitating a brief presentation on curriculum",
|
||||
"Parents with infants in carriers joining casually",
|
||||
"A display board showing learning objectives"
|
||||
],
|
||||
"actions": [
|
||||
"A short teacher presentation followed by Q&A",
|
||||
"Parents exchange tips and form informal support groups",
|
||||
"Sign-ups for volunteer rosters and field trips",
|
||||
"A relaxed mingle as children play under supervision"
|
||||
],
|
||||
"camera": "Wide warm coverage capturing multiple small conversations",
|
||||
"accents": [
|
||||
"cup micro-steam trails and pastry micro-flake detail",
|
||||
"window micro-reflection softening the scene"
|
||||
],
|
||||
"mood": "engaged openness",
|
||||
"lighting": "bright daylight with warm indoor fill",
|
||||
"style": "friendly community vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim evening virtual meeting projected on a classroom screen as parents join from home (dark/connected)",
|
||||
"sceneVariants": [
|
||||
"A grid of parent tiles on a projected video call",
|
||||
"A teacher sharing the screen with slides and examples",
|
||||
"A classroom empty of students and lit by the projector",
|
||||
"A parent at home taking notes beside a lamp",
|
||||
"A muted child noise heard faintly in one tile"
|
||||
],
|
||||
"actions": [
|
||||
"Teacher narrates progress while sharing annotated work",
|
||||
"Parents ask practical questions via chat or voice",
|
||||
"Shared digital resources are posted and bookmarked",
|
||||
"A follow-up email with action points is promised"
|
||||
],
|
||||
"camera": "Over-the-shoulder shot of projected screen with inset of teacher at podium",
|
||||
"accents": [
|
||||
"screen micro-pixel grid and chat micro-text legibility",
|
||||
"projector micro-glow on nearby surfaces"
|
||||
],
|
||||
"mood": "practical connectivity",
|
||||
"lighting": "cool projector glow with minimal ambient",
|
||||
"style": "modern hybrid vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright outdoor school fair meeting point where teachers briefly update parents while children run activities nearby (light/energetic)",
|
||||
"sceneVariants": [
|
||||
"Colorful tents hosting different grade-level booths",
|
||||
"A teacher with a clipboard passing notes to a parent",
|
||||
"Sound of kids performing a short skit on a makeshift stage",
|
||||
"Volunteer banners and PTA stand nearby",
|
||||
"A display of class art and craftwork"
|
||||
],
|
||||
"actions": [
|
||||
"Quick point-to-point updates focused on class highlights",
|
||||
"A teacher hands a printed progress summary",
|
||||
"Parents coordinate volunteer slots and field trips",
|
||||
"A shared laugh about a student anecdote"
|
||||
],
|
||||
"camera": "Wide festival coverage with tight hand-off and paper insert shots",
|
||||
"accents": [
|
||||
"tent fabric micro-weave and printed flyer micro-gloss",
|
||||
"marker micro-stroke detail on whiteboards"
|
||||
],
|
||||
"mood": "lively collaboration",
|
||||
"lighting": "bright midday sun with soft fill",
|
||||
"style": "community engagement vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim afterschool intervention meeting in a small resource room (dark/intense)",
|
||||
"sceneVariants": [
|
||||
"One-way mirror to the corridor for discretion",
|
||||
"A chart showing intervention frequency and metrics",
|
||||
"A specialist making handwritten notes on a pad",
|
||||
"A parent with a focused expression asking clarifying questions",
|
||||
"A small shelf of therapeutic toys visible"
|
||||
],
|
||||
"actions": [
|
||||
"Data-driven discussion of progress and adjustments",
|
||||
"Agreement on short-term measurable targets",
|
||||
"Scheduling of home-based practice tasks",
|
||||
"A calm closing with gratitude for partnership"
|
||||
],
|
||||
"camera": "Close macro on charts and slow pull to engaged faces",
|
||||
"accents": [
|
||||
"chart micro-grid lines and pen micro-ink clarity",
|
||||
"toy micro-fabric texture in shallow focus"
|
||||
],
|
||||
"mood": "intent focus",
|
||||
"lighting": "low practical fixture with focused desk lamp",
|
||||
"style": "clinical educational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright workshop night where many parents attend a curriculum-preview session followed by breakout meetings (light/informative)",
|
||||
"sceneVariants": [
|
||||
"A projector screen with colorful curriculum maps",
|
||||
"Tables with handouts and sticky notes for brainstorming",
|
||||
"Teacher leaders rotating to small groups",
|
||||
"A volunteer flipping through a resource binder",
|
||||
"A whiteboard filled with suggested home activities"
|
||||
],
|
||||
"actions": [
|
||||
"A short presentation outlines learning goals",
|
||||
"Breakout groups discuss implementation and support",
|
||||
"Teachers collect feedback via sticky-note voting",
|
||||
"A wrap-up summarizes next steps and contacts"
|
||||
],
|
||||
"camera": "Wide-room coverage with quick close-ups on discussion groups",
|
||||
"accents": [
|
||||
"paper micro-ink textures and sticky-note micro-edge curl",
|
||||
"projector micro-pixel clarity on slides"
|
||||
],
|
||||
"mood": "collaborative energy",
|
||||
"lighting": "bright overhead with accent lamp on facilitator",
|
||||
"style": "educational workshop vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim disciplinary meeting with measured, calm tone addressing behavioral concerns (dark/serious)",
|
||||
"sceneVariants": [
|
||||
"A private meeting table set away from the hallway",
|
||||
"Teacher and principal present with clear documentation",
|
||||
"Parent looking intent with a protective posture",
|
||||
"A typed behavior log on the table",
|
||||
"A short list of next steps printed in formal language"
|
||||
],
|
||||
"actions": [
|
||||
"Presentation of observed behaviors with dates and context",
|
||||
"Jointly forming a clear, respectful behavioral support plan",
|
||||
"Clarifying roles and expectations for school and home",
|
||||
"Scheduling a near-term review meeting"
|
||||
],
|
||||
"camera": "Tight medium with document close-ins and reaction cuts",
|
||||
"accents": [
|
||||
"typed micro-font clarity and stapled micro-edge on reports",
|
||||
"table micro-grain under focused light"
|
||||
],
|
||||
"mood": "respectful gravity",
|
||||
"lighting": "low warm desk lamp with soft falloff",
|
||||
"style": "formal institutional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright early-morning brief corridor check where a teacher gives a quick update during drop-off (light/brief)",
|
||||
"sceneVariants": [
|
||||
"Parents balancing coffee and backpacks as they chat",
|
||||
"A teacher leaning against a classroom door with a friendly wave",
|
||||
"Children hugging parents before joining class",
|
||||
"A small poster with 'today's focus' by the door",
|
||||
"A lost-lunch call scribbled on a clipboard"
|
||||
],
|
||||
"actions": [
|
||||
"Two-minute check-in about mood and any urgent items",
|
||||
"Teacher passes a quick note about lunch or homework",
|
||||
"Parent confirms pick-up arrangements or symptoms to watch",
|
||||
"A smile and wave as the child steps into class"
|
||||
],
|
||||
"camera": "Quick handheld corridor inserts with close face reaction shots",
|
||||
"accents": [
|
||||
"backpack micro-fabric and coffee micro-steam detail",
|
||||
"poster micro-print clarity catching edge light"
|
||||
],
|
||||
"mood": "efficient warmth",
|
||||
"lighting": "soft morning entry light with practical interior fill",
|
||||
"style": "slice-of-day school vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim alumni-parent informational night where school leaders present long-term plans (dark/formal)",
|
||||
"sceneVariants": [
|
||||
"A small auditorium with rows of folding chairs",
|
||||
"A headmaster at a podium with slides behind",
|
||||
"Parents and alumni in attentive listening posture",
|
||||
"Printed strategic plan booklets handed out",
|
||||
"A Q&A microphone passed through the audience"
|
||||
],
|
||||
"actions": [
|
||||
"Presentation of school improvement projects and outcomes",
|
||||
"Parents ask strategic questions about pedagogy and resources",
|
||||
"School leaders note and promise to follow-up",
|
||||
"A formal reception with brief networking afterward"
|
||||
],
|
||||
"camera": "Medium wide of stage with reaction close-ups and slide inserts",
|
||||
"accents": [
|
||||
"print micro-gloss on booklets and microphone micro-mesh texture",
|
||||
"podium micro-wood grain under stage light"
|
||||
],
|
||||
"mood": "measured seriousness",
|
||||
"lighting": "stage spotlights with dim audience ambient",
|
||||
"style": "institutional presentation vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright PTA volunteer sign-up meeting with snacks and hands-on table stations (light/active)",
|
||||
"sceneVariants": [
|
||||
"Clipboards with rotating roles listed",
|
||||
"A bake sale table doubling as a sign-in area",
|
||||
"Parents swapping calendar availability and contact info",
|
||||
"A volunteer coordinator wearing a bright badge",
|
||||
"A printed map of event locations pinned to a board"
|
||||
],
|
||||
"actions": [
|
||||
"Parents sign up for roles and exchange preferences",
|
||||
"Coordinator clarifies commitments and quick training notes",
|
||||
"A logistical planning huddle for an upcoming event",
|
||||
"A friendly group photo of volunteers to post in the newsletter"
|
||||
],
|
||||
"camera": "Energetic wide with close hands signing and smiling faces",
|
||||
"accents": [
|
||||
"clipboard micro-clip shine and pastry micro-crumble",
|
||||
"badge micro-print and pen micro-gloss"
|
||||
],
|
||||
"mood": "organized goodwill",
|
||||
"lighting": "bright community hall daylight with warm fill",
|
||||
"style": "practical community vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim evening subject-specific consult (math/literacy) with targeted examples and practice tips (dark/instructional)",
|
||||
"sceneVariants": [
|
||||
"A sample worksheet annotated with teacher notes",
|
||||
"A small whiteboard demonstrating a teaching trick",
|
||||
"A parent and teacher practicing an example aloud",
|
||||
"A suggestion sheet for at-home practice routines",
|
||||
"A small stack of leveled readers or manipulatives"
|
||||
],
|
||||
"actions": [
|
||||
"Teacher models a technique and observes parent trying it",
|
||||
"Parent asks about scaffolding and pacing",
|
||||
"A short practice plan is co-created for daily minutes",
|
||||
"Teacher offers resources and checks comprehension"
|
||||
],
|
||||
"camera": "Tight instructional cuts between demo, practice and notes",
|
||||
"accents": [
|
||||
"marker micro-stroke detail and paper micro-ink emphasis",
|
||||
"manipulative micro-texture in shallow focus"
|
||||
],
|
||||
"mood": "empowered instruction",
|
||||
"lighting": "warm desk lamp with focused practicals",
|
||||
"style": "hands-on pedagogical vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright open plan learning hub discussion where multiple teachers host rotating topic tables (light/resourceful)",
|
||||
"sceneVariants": [
|
||||
"Several small round tables each labeled by topic",
|
||||
"Parents rotate every 15 minutes to talk with a specialist",
|
||||
"Resource handouts and sample activities at each table",
|
||||
"A central coordinator announces transitions",
|
||||
"Children engaged in supervised crafts in an adjacent area"
|
||||
],
|
||||
"actions": [
|
||||
"Focused micro-workshops on technology, literacy, and behavior",
|
||||
"Parents gather takeaway resources and ask targeted questions",
|
||||
"Teachers collect feedback for curriculum refinement",
|
||||
"A final plenary shares key takeaways and contact points"
|
||||
],
|
||||
"camera": "Fluid tracking with keyed inserts for each table's materials",
|
||||
"accents": [
|
||||
"handout micro-paper stock and table micro-fabric textures",
|
||||
"name-tag micro-print and pen micro-ink clarity"
|
||||
],
|
||||
"mood": "resourceful collaboration",
|
||||
"lighting": "even bright hub lighting with accent lamps on materials",
|
||||
"style": "practical educational resource vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim emergency-call meeting where a rapid consult is held to address a sudden concern (dark/urgent)",
|
||||
"sceneVariants": [
|
||||
"A principal, teacher and concerned parent in a closed office",
|
||||
"A short timeline printed of recent incidents",
|
||||
"A calm timer used to keep the meeting focused",
|
||||
"A plan-of-action sheet with immediate next steps",
|
||||
"A phone on speaker for a remote specialist"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid fact-finding and immediate safety planning",
|
||||
"Assignment of responsibilities for temporary measures",
|
||||
"A calm assurance and scheduling of a next review in 48-72 hours",
|
||||
"Documentation of agreed steps and signatures"
|
||||
],
|
||||
"camera": "Tight, procedural shots of documents and deliberate faces",
|
||||
"accents": [
|
||||
"timeline micro-print detail and signature micro-pen stroke",
|
||||
"phone micro-speaker grille texture under light"
|
||||
],
|
||||
"mood": "urgent competence",
|
||||
"lighting": "focused desk lamp with dark surrounding for confidentiality",
|
||||
"style": "procedural crisis vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright early-morning bilingual-parent meeting with translators present to ensure clarity (light/inclusive)",
|
||||
"sceneVariants": [
|
||||
"A translator at the table with headset",
|
||||
"Printed materials in two languages arranged",
|
||||
"Parents nodding as phrases are carefully interpreted",
|
||||
"Children waving from a nearby window",
|
||||
"A cultural artifact placed to honor community background"
|
||||
],
|
||||
"actions": [
|
||||
"Teacher speaks slowly while translator ensures understanding",
|
||||
"Parents ask culturally specific questions and learn practical tips",
|
||||
"Printed bilingual takeaways provided for at-home use",
|
||||
"A mutual signing of a communications agreement"
|
||||
],
|
||||
"camera": "Medium two-shot with translation insert and printed material close-ups",
|
||||
"accents": [
|
||||
"paper bilingual micro-font clarity and headset micro-grille",
|
||||
"artifact micro-fabric detail"
|
||||
],
|
||||
"mood": "inclusive reassurance",
|
||||
"lighting": "bright natural light with neutral fill",
|
||||
"style": "culturally attentive vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim awards-night parent briefing where teachers prep parents ahead of a recognition ceremony (dark/anticipatory)",
|
||||
"sceneVariants": [
|
||||
"A backstage room with certificates and small trophies",
|
||||
"A teacher aligning name cards and rehearsal notes",
|
||||
"Parents instructed on seating and arrival times",
|
||||
"A small staging area where students practice bows",
|
||||
"A checklist with photo release consent forms"
|
||||
],
|
||||
"actions": [
|
||||
"Teachers distribute speaking notes and schedule",
|
||||
"Parents sign consent forms and coordinate photos",
|
||||
"A quick run-through of the ceremony flow",
|
||||
"A closing gratitude handshake and camera-ready pause"
|
||||
],
|
||||
"camera": "Tight prep shots with certificate detail close-ups and reaction cuts",
|
||||
"accents": [
|
||||
"certificate micro-emboss and trophy micro-polish",
|
||||
"printed checklist micro-type and pen micro-gloss"
|
||||
],
|
||||
"mood": "excited preparedness",
|
||||
"lighting": "low backstage lamp with controlled highlights",
|
||||
"style": "ceremony prep vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Bright parent-led curriculum showcase where families demonstrate at-home projects (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"Tables lined with student-created projects and model displays",
|
||||
"Parents narrate their child's learning journey to other parents",
|
||||
"Teachers moderate and highlight connections to standards",
|
||||
"A small award for most creative take-home project",
|
||||
"Children proudly demonstrating interactive elements"
|
||||
],
|
||||
"actions": [
|
||||
"Parents explain methods used and outcomes achieved",
|
||||
"Teachers provide reinforcing commentary and curriculum linkages",
|
||||
"Attendees vote informally for inspiration-sharing awards",
|
||||
"A final meet-and-greet with shared resource exchange"
|
||||
],
|
||||
"camera": "Wide showcase coverage with project macro inserts and candid reactions",
|
||||
"accents": [
|
||||
"project material micro-grain and handwritten micro-ink",
|
||||
"display micro-clip shine under light"
|
||||
],
|
||||
"mood": "celebratory sharing",
|
||||
"lighting": "bright exhibition light with soft fill",
|
||||
"style": "community showcase vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Parent-Teacher Meetings",
|
||||
"scene": "Dim evening reflective meeting for gifted-program placement discussion (dark/considered)",
|
||||
"sceneVariants": [
|
||||
"A talent portfolio with samples of advanced work",
|
||||
"A rubric explaining assessment criteria",
|
||||
"A psychologist or specialist present for consultation",
|
||||
"Parent and teacher exchanging observed development examples",
|
||||
"A calm window showing late dusk outside"
|
||||
],
|
||||
"actions": [
|
||||
"Review of evidence supporting placement candidacy",
|
||||
"Discussion of appropriate enrichment and pacing",
|
||||
"Agreement on trial period and monitoring metrics",
|
||||
"A respectful closing with resources for support"
|
||||
],
|
||||
"camera": "Tight portfolio inserts and muted reaction close-ups",
|
||||
"accents": [
|
||||
"portfolio paper micro-weight and rubric micro-type clarity",
|
||||
"lamp micro-halo on documents"
|
||||
],
|
||||
"mood": "thoughtful advocacy",
|
||||
"lighting": "soft focused desk lamp with subdued ambient",
|
||||
"style": "evaluative educational vignette"
|
||||
}
|
||||
]
|
||||
127
src/data/childhood_and_family_picnics.json
Normal file
127
src/data/childhood_and_family_picnics.json
Normal file
@ -0,0 +1,127 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Picnics",
|
||||
"scene": "Sunlit meadow with a checked blanket and wicker basket (day/relaxed)",
|
||||
"sceneVariants": [
|
||||
"A red-and-white blanket spread beneath a lone oak",
|
||||
"A basket half-open with sandwiches and a bottle of lemonade",
|
||||
"A frisbee resting on the grass nearby",
|
||||
"A small radio playing soft tunes",
|
||||
"A thermos steaming near a stack of paper plates"
|
||||
],
|
||||
"actions": [
|
||||
"Family spreads out food and passes plates in a circle",
|
||||
"Children chase butterflies and race to a tree",
|
||||
"A sibling shares a secret treat with a friend",
|
||||
"A lazy conversation drifts into quiet naps on the blanket"
|
||||
],
|
||||
"camera": "Low picnic-level wide with tactile food macro inserts",
|
||||
"accents": [
|
||||
"woven basket micro-texture and linen weave close-up",
|
||||
"sunlit crumb micro-speculars on sandwiches"
|
||||
],
|
||||
"mood": "leisurely contentment",
|
||||
"lighting": "warm golden daylight with soft shadows",
|
||||
"style": "pastoral family vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Picnics",
|
||||
"scene": "Riverside picnic with fishing rods and pebble-skipping kids (day/serene)",
|
||||
"sceneVariants": [
|
||||
"Pebble-strewn bank with small rippling current",
|
||||
"A folding chair and blanket near the water",
|
||||
"Children launching pebbles and counting skips",
|
||||
"A cooler with iced fruit and foil-wrapped snacks",
|
||||
"A canoe pulled up nearby with paddles stacked"
|
||||
],
|
||||
"actions": [
|
||||
"A child skips stones and celebrates a long skip",
|
||||
"A parent fishes while chatting softly with a friend",
|
||||
"A shared fruit is offered and politely declined by a picky eater",
|
||||
"A small canoe ride is proposed and unanimously approved"
|
||||
],
|
||||
"camera": "Gentle lateral river-tracking with splash macro",
|
||||
"accents": [
|
||||
"water ripple micro-detail and wet stone micro-sheen",
|
||||
"foil crinkle micro-texture on snack wrap"
|
||||
],
|
||||
"mood": "calm togetherness",
|
||||
"lighting": "clear daylight with reflective water highlights",
|
||||
"style": "riverside leisure vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Picnics",
|
||||
"scene": "Urban rooftop picnic with skyline views and picnic-friendly finger food (light/modern)",
|
||||
"sceneVariants": [
|
||||
"Rooftop planters and string lights creating a cozy urban oasis",
|
||||
"Small platters with finger sandwiches and skewers",
|
||||
"A portable Bluetooth speaker and low stools",
|
||||
"City skyline in late-afternoon glow",
|
||||
"Neighbors waving from adjacent terraces"
|
||||
],
|
||||
"actions": [
|
||||
"Friends arrange a sharing platter and pass small bites",
|
||||
"A rooftop toast to a milestone is delivered",
|
||||
"Laughter echoes as a breeze rearranges napkins",
|
||||
"A quick cleanup bundles disposables for recycling"
|
||||
],
|
||||
"camera": "High-angle city establish with intimate food close-ups",
|
||||
"accents": [
|
||||
"polished tray micro-reflections and skyline glass micro-caustics",
|
||||
"napkin fiber micro-detail"
|
||||
],
|
||||
"mood": "urban conviviality",
|
||||
"lighting": "golden-hour sunset with warm rim-light",
|
||||
"style": "modern picnic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Picnics",
|
||||
"scene": "Forest picnic during a nature walk with mushroom identification (day/earthy)",
|
||||
"sceneVariants": [
|
||||
"Mossy clearing with tree trunks forming a natural canopy",
|
||||
"A low blanket and a guidebook open to fungus pages",
|
||||
"A basket with hearty stews in thermos containers",
|
||||
"Boot prints and small field notebooks scattered",
|
||||
"A fallen log used as an informal bench"
|
||||
],
|
||||
"actions": [
|
||||
"A guide points out edible vs. poisonous species with careful notes",
|
||||
"Soup is ladled into cups and passed around for warmth",
|
||||
"Children taste a safe-foraging sample and react",
|
||||
"A small conservation message encourages leave-no-trace"
|
||||
],
|
||||
"camera": "Close natural texture macros and overhead canopy establishes",
|
||||
"accents": [
|
||||
"moss micro-fuzz and leaf venation micro-detail",
|
||||
"thermos metal micro-reflection"
|
||||
],
|
||||
"mood": "curious reverence",
|
||||
"lighting": "dappled forest light with cool patches",
|
||||
"style": "nature-learning vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Picnics",
|
||||
"scene": "Sunset picnic with acoustic guitar and small campfire (evening/romantic)",
|
||||
"sceneVariants": [
|
||||
"Low campfire circle with gentle ember glow",
|
||||
"A guitar case open for late-song accompaniment",
|
||||
"A single lantern casting warm pockets of light",
|
||||
"S'mores supplies laid out on a tray",
|
||||
"A horizon line melting into deep sunset colors"
|
||||
],
|
||||
"actions": [
|
||||
"A soft acoustic song accompanies the last bites",
|
||||
"A marshmallow is toasted and shared between two",
|
||||
"Conversations slow as stars begin to appear",
|
||||
"Blankets are wrapped tighter as the temperature drops"
|
||||
],
|
||||
"camera": "Warm close firelight inserts with wide twilight establishes",
|
||||
"accents": [
|
||||
"ember micro-glow and charred marshmallow micro-detail",
|
||||
"guitar wood grain micro-texture"
|
||||
],
|
||||
"mood": "intimate warmth",
|
||||
"lighting": "low warm fire and lantern light with twilight",
|
||||
"style": "romantic outdoor vignette"
|
||||
}
|
||||
]
|
||||
427
src/data/childhood_and_family_pregnancy.json
Normal file
427
src/data/childhood_and_family_pregnancy.json
Normal file
@ -0,0 +1,427 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Late-night kitchen where a mother-to-be craves a small slice of cake and her partner offers comfort (dark/intimate)",
|
||||
"sceneVariants": [
|
||||
"Moonlight through the window and a half-eaten cake on the counter",
|
||||
"Two mugs warming on the stove and soft conversation",
|
||||
"Hands resting gently on a visible baby bump",
|
||||
"A small note left on the fridge with a loving message",
|
||||
"Bare feet on cool tile as they move slowly"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet negotiation of indulgence and reassurance",
|
||||
"Partner fetches a fork and shares the first bite",
|
||||
"Soft laughter about silly cravings and future memories",
|
||||
"A tender forehead-to-bump touch to seal the moment"
|
||||
],
|
||||
"camera": "Tight two-shot over the counter with shallow depth on hands and faces",
|
||||
"accents": [
|
||||
"plate glaze micro-reflection and cake crumb micro-detail",
|
||||
"moonlit rim-light on hair edges"
|
||||
],
|
||||
"mood": "tender intimacy",
|
||||
"lighting": "cool moonlight with a warm kitchen halo",
|
||||
"style": "domestic late-night vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Sunlit prenatal yoga class in a community studio with expectant mothers moving slowly (light/calm)",
|
||||
"sceneVariants": [
|
||||
"Mat rows and soft pastel accents in the studio",
|
||||
"An instructor guiding breathing through each pose",
|
||||
"A small water bottle and towel beside each mat",
|
||||
"Soft instrumental music floating in the background",
|
||||
"Windows showing leafy trees outside"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated breath work and gentle stretching",
|
||||
"A shared smile between participants during a balancing pose",
|
||||
"An instructor offering an adjustment with care",
|
||||
"Collective exhale and relaxation at cool-down"
|
||||
],
|
||||
"camera": "Wide coverage with occasional slow push-ins to hands on bellies",
|
||||
"accents": [
|
||||
"mat rubber micro-texture and sunlight dust motes micro-detail",
|
||||
"soft fabric micro-weave in clothing"
|
||||
],
|
||||
"mood": "centered serenity",
|
||||
"lighting": "soft morning sunlight with clean diffuse fill",
|
||||
"style": "community wellness documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Quiet midnight as a mother-to-be records a voice message describing the first fetal kick (dark/aural)",
|
||||
"sceneVariants": [
|
||||
"Phone screen glow illuminating an eager, sleepy face",
|
||||
"A bedside lamp dimmed to a low amber setting",
|
||||
"A pillow propped to support a rounded belly",
|
||||
"A handwritten list of names peeking from under the phone",
|
||||
"A soft blanket patterned with small icons"
|
||||
],
|
||||
"actions": [
|
||||
"Soft whispering into the phone capturing the memory",
|
||||
"A brief laugh and a hiccup of surprise when a second kick arrives",
|
||||
"A pause to press the phone gently to the bump",
|
||||
"A final sigh and promise to replay the message later"
|
||||
],
|
||||
"camera": "Intimate close-up on face then cut to hand resting on bump",
|
||||
"accents": [
|
||||
"phone screen micro-pixel bloom and blanket fiber micro-detail",
|
||||
"eyelash micro-shadow from device glow"
|
||||
],
|
||||
"mood": "private wonder",
|
||||
"lighting": "very low device glow with warm bedside accent",
|
||||
"style": "personal memory vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Bright clinic waiting room where an expecting couple reads brochures before an ultrasound appointment (light/anticipatory)",
|
||||
"sceneVariants": [
|
||||
"Educational posters about prenatal care on the walls",
|
||||
"A plastic model of a fetus on a small stand",
|
||||
"A gaggle of brightly colored pamphlets in a rack",
|
||||
"Chairs arranged in rows with calming upholstery",
|
||||
"A receptionist smiling in the background"
|
||||
],
|
||||
"actions": [
|
||||
"Quiet flipping through brochures and exchanging hopeful glances",
|
||||
"A partner tying a shoelace, nervous energy apparent",
|
||||
"A breathing exercise between two hands clasped together",
|
||||
"A call of a name and an excited stand-up"
|
||||
],
|
||||
"camera": "Medium two-shot with shallow focus on pamphlet text and faces",
|
||||
"accents": [
|
||||
"paper gloss micro-sheen and clinic tile micro-grain",
|
||||
"soft specular on a fountain pen or keys"
|
||||
],
|
||||
"mood": "expectant hope",
|
||||
"lighting": "clear daylight through clinic glass with neutral fill",
|
||||
"style": "informational documentary moment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Dim birthing-class room where couples practice pushing breath techniques with a mock doll (dark/focused)",
|
||||
"sceneVariants": [
|
||||
"A circle of partners assisting each other in supportive holds",
|
||||
"A certified instructor demonstrating gentle coaching phrases",
|
||||
"A soft mat and practice doll with labeled parts",
|
||||
"A whiteboard with breathing diagrams sketched",
|
||||
"A small clock marking intervals"
|
||||
],
|
||||
"actions": [
|
||||
"Guided breathing cycles timed with instructor cues",
|
||||
"Partners practicing supportive touch and verbal encouragement",
|
||||
"Corrective, gentle coaching with humor to reduce tension",
|
||||
"A final group applause for progress"
|
||||
],
|
||||
"camera": "Medium coverage with focused close-ups on breathing patterns and hands",
|
||||
"accents": [
|
||||
"mat micro-rubber texture and marker stroke micro-detail",
|
||||
"soft shadow-edge underlining facial expression"
|
||||
],
|
||||
"mood": "practical focus",
|
||||
"lighting": "low warm classroom lamps against a darkened room",
|
||||
"style": "instructional intimate vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "A sunlit gender-reveal picnic in a park where family gathers with colored confetti cannons (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"A banner strung between trees with tiny bunting",
|
||||
"Checkered blankets and picnic baskets loaded with treats",
|
||||
"A table with closed boxes and a single covered cake",
|
||||
"Children wearing themed shirts waiting to shout",
|
||||
"Balloons tethered to a central weight"
|
||||
],
|
||||
"actions": [
|
||||
"A synchronized countdown followed by an explosive color reveal",
|
||||
"Cheering and embraced congratulations between family members",
|
||||
"A parent wiping playful cake frosting on the other's nose",
|
||||
"Photo-taking of surprised expressions and confetti rain"
|
||||
],
|
||||
"camera": "Wide dolly capture of the reveal with reaction close-ups in slow motion",
|
||||
"accents": [
|
||||
"confetti micro-reflective flakes and picnic cloth fiber micro-detail",
|
||||
"sun micro-glares glinting on celebratory balloons"
|
||||
],
|
||||
"mood": "joyful exuberance",
|
||||
"lighting": "bright midday sun with warm natural fill",
|
||||
"style": "festive family reportage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Late-night nursery painting where two partners mix colors and test swatches under a single lamp (dark/creative)",
|
||||
"sceneVariants": [
|
||||
"Paint-stained hands and a ladder leaning nearby",
|
||||
"Small sample swatches taped to the wall",
|
||||
"A soft playlist humming from a nearby speaker",
|
||||
"A hot cup of tea cooling on a ladder step",
|
||||
"Paint cans labeled with whimsical names"
|
||||
],
|
||||
"actions": [
|
||||
"Careful mixing of pastel hues and playful disagreements about tones",
|
||||
"Testing brushes and rolling an accent strip for effect",
|
||||
"A gentle hand on the belly as a color is approved",
|
||||
"A final push-off to clean brushes and step back to view"
|
||||
],
|
||||
"camera": "Close insert on brush strokes and medium composition showing staged swatches",
|
||||
"accents": [
|
||||
"paint micro-stroke texture and ladder wood micro-grain",
|
||||
"lamp micro-halo on glossed swatch"
|
||||
],
|
||||
"mood": "collaborative creativity",
|
||||
"lighting": "focused lamp warm glow with deep room shadows",
|
||||
"style": "intimate decorative vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Bright weekend baby-shower brunch hosted in a backyard with bunting and handwritten advice cards (light/festive)",
|
||||
"sceneVariants": [
|
||||
"A long table set with pastel plates and a floral centerpiece",
|
||||
"Guests writing advice notes and filling a memory jar",
|
||||
"A gift table wrapped in colorful papers",
|
||||
"A photo wall with polaroids and well-wishes",
|
||||
"Children playing tag near the hedgerow"
|
||||
],
|
||||
"actions": [
|
||||
"Passing around a book for guests to write hopes for the baby",
|
||||
"Opening gifts with laughter and surprised delight",
|
||||
"A toast raised in quiet gratitude to the expecting parents",
|
||||
"A group photo capturing the assembled loving circle"
|
||||
],
|
||||
"camera": "Overhead wide composition with inserted reaction close-ups",
|
||||
"accents": [
|
||||
"paper lace micro-detail and floral petal micro-texture",
|
||||
"champagne micro-bubble highlights on glasses"
|
||||
],
|
||||
"mood": "celebratory warmth",
|
||||
"lighting": "clear afternoon sun with soft fill from reflectors",
|
||||
"style": "uplifting family event vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Night ultrasound room where a technician points out tiny limbs on the monitor as parents hold hands (dark/wondrous)",
|
||||
"sceneVariants": [
|
||||
"Faint blue monitor glow reflected on hopeful faces",
|
||||
"Gel cooling on the mother's belly and gentle pressure of the probe",
|
||||
"A printout slowly ejected from the machine",
|
||||
"A quiet hum of machinery and muffled hallway sounds",
|
||||
"A small stuffed toy placed nearby for future memory"
|
||||
],
|
||||
"actions": [
|
||||
"Technician narrates visible anatomy with calm description",
|
||||
"Partners whisper and laugh softly at shapes that resemble family traits",
|
||||
"A printed photo is immediately shown like a prized possession",
|
||||
"A final signal of health that allows for relieved smiles"
|
||||
],
|
||||
"camera": "Tight monitor-to-face cutting that emphasizes reaction and detail",
|
||||
"accents": [
|
||||
"monitor pixel micro-grid and gel micro-sheen",
|
||||
"soft skin micro-texture in low ambient light"
|
||||
],
|
||||
"mood": "sacred wonder",
|
||||
"lighting": "monitor-dominated cool glow with minimal ambient fill",
|
||||
"style": "medical-emotional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "A bright maternity photoshoot in a meadow with flowing dress and wind-swept hair (light/ethereal)",
|
||||
"sceneVariants": [
|
||||
"Long flowing fabrics catching breeze",
|
||||
"Wildflowers braided into hair and crown",
|
||||
"A partner silhouetted off to the side framing the moment",
|
||||
"A gentle path leading to a sunlit tree",
|
||||
"A blanket laid for close-up seated portraits"
|
||||
],
|
||||
"actions": [
|
||||
"Slow turns and soft gaze down to the bump",
|
||||
"Partner placing hands in a heart over the belly",
|
||||
"A whispered direction from the photographer to capture a candid laugh",
|
||||
"A final gentle walk away holding hands"
|
||||
],
|
||||
"camera": "Wide golden-hour coverage with occasional low-angle close-ups",
|
||||
"accents": [
|
||||
"backlight micro-rim on fabric and flower petal micro-detail",
|
||||
"grass micro-blade texture in shallow depth"
|
||||
],
|
||||
"mood": "celebratory reverence",
|
||||
"lighting": "golden-hour sunlight with warm diffusion",
|
||||
"style": "cinematic portraiture"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Dim hospital bag-packing at midnight where checklist items are methodically placed into a suitcase (dark/preparatory)",
|
||||
"sceneVariants": [
|
||||
"A printed checklist with highlighted items",
|
||||
"Toiletries and a favorite pillow being considered",
|
||||
"A quiet hum of a refrigerator and distant traffic",
|
||||
"A last-minute call to a sibling for moral support",
|
||||
"Handwritten notes with emergency numbers tucked into a small pocket"
|
||||
],
|
||||
"actions": [
|
||||
"Methodical checking and packing with occasional hesitation",
|
||||
"A partner folds and packs while reading off items",
|
||||
"A quick practice of breathing exercises together",
|
||||
"A final zip and a dramatic thumbs-up signaling readiness"
|
||||
],
|
||||
"camera": "Close macro on checklist tick marks and medium shot of the bag being closed",
|
||||
"accents": [
|
||||
"fabric zip micro-teeth and paper micro-fiber on the list",
|
||||
"soft lamp rim micro-glow on items"
|
||||
],
|
||||
"mood": "practical calm",
|
||||
"lighting": "low bedside lamp with cool window contrast",
|
||||
"style": "pre-labor documentary vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Sunlit neighborhood walk where partners count steps and talk about baby names (light/ordinary joy)",
|
||||
"sceneVariants": [
|
||||
"Strollers parked at a neighbor's door as they stroll together",
|
||||
"Tree-lined sidewalks and small playground laughter ahead",
|
||||
"A coffee cup traded between hands for intermittent sips",
|
||||
"Sun glittering on a water puddle left from last night's rain",
|
||||
"A small store window displaying baby clothes that elicits smiles"
|
||||
],
|
||||
"actions": [
|
||||
"Casual conversation about names and future plans",
|
||||
"Pause to point at a small outfit and brainstorm ideas",
|
||||
"A gentle hand on the bump during a reflective comment",
|
||||
"Returning home with a small purchase made impulsively"
|
||||
],
|
||||
"camera": "Steadicam side-tracking with reaction close-ins on gestures",
|
||||
"accents": [
|
||||
"leaf micro-dapple patterns and fabric strap micro-stitch",
|
||||
"coffee cup micro-steam in cooler air"
|
||||
],
|
||||
"mood": "everyday contentment",
|
||||
"lighting": "bright morning sun with crisp shadows",
|
||||
"style": "slice-of-life observational vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Late-night support-group call projected on a laptop where mothers exchange tips and encouragement (dark/connected)",
|
||||
"sceneVariants": [
|
||||
"Multiple small video tiles with warm, familiar faces",
|
||||
"Text chat scrolling with shared resources and links",
|
||||
"A notebook on the desk filled with notes and highlighted passages",
|
||||
"A mug cooling beside the laptop and a soft blanket",
|
||||
"A baby mobile silhouette in the background suggesting preparation"
|
||||
],
|
||||
"actions": [
|
||||
"Sharing a personal anecdote that prompts supportive messages",
|
||||
"Reading resources aloud and bookmarking useful tips",
|
||||
"A collective laugh that lightens fears and anxiety",
|
||||
"A closing collective affirmation to end the call positively"
|
||||
],
|
||||
"camera": "Screen-to-face composition with shallow focus on written notes and reactions",
|
||||
"accents": [
|
||||
"screen micro-pixel structure and notebook paper micro-fiber detail",
|
||||
"keyboard micro-gloss from frequent use"
|
||||
],
|
||||
"mood": "mutual reassurance",
|
||||
"lighting": "cool laptop glow with warm desk lamp accent",
|
||||
"style": "modern communal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Bright DIY nursery organization day where shelves are assembled and labels added (light/organized)",
|
||||
"sceneVariants": [
|
||||
"Color-coded bins and carefully folded tiny outfits",
|
||||
"A measuring tape and level ensuring perfect placement",
|
||||
"A wall decal partially installed showing whimsical animals",
|
||||
"A reward snack on the table for finishing a shelf",
|
||||
"A small stool for easy reach during assembly"
|
||||
],
|
||||
"actions": [
|
||||
"Measuring and leveling shelves with deliberate care",
|
||||
"Folding tiny clothes and labeling each bin methodically",
|
||||
"Playful debates about where to hang a mobile",
|
||||
"A final reveal of an organized corner celebrated with a quick photo"
|
||||
],
|
||||
"camera": "Medium wide of the nursery with detail inserts on labels and fabric",
|
||||
"accents": [
|
||||
"paper label micro-edge and shelf fastener micro-thread detail",
|
||||
"soft cotton micro-weave on tiny garments"
|
||||
],
|
||||
"mood": "productive calm",
|
||||
"lighting": "bright house daylight with soft fill",
|
||||
"style": "practical domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Nighttime partner massage ritual with warm oil and guided relaxation for prenatal comfort (dark/comforting)",
|
||||
"sceneVariants": [
|
||||
"A diffuser releasing a faint scent of lavender",
|
||||
"Soft background music and a dim lamp low on the dresser",
|
||||
"A plush robe nearby and a thermometer showing calm room temperature",
|
||||
"Hands focusing on lower back and shoulder relief",
|
||||
"A clock showing late hour but restful atmosphere"
|
||||
],
|
||||
"actions": [
|
||||
"Slow steady massage strokes focused on comfort zones",
|
||||
"Gentle reminders about breathing and pelvic relaxation",
|
||||
"Brief pause to adjust pillows for better support",
|
||||
"Final tuck-in and shared gratitude exchanged"
|
||||
],
|
||||
"camera": "Intimate close-ups on hands and gentle wide to show room composition",
|
||||
"accents": [
|
||||
"oil micro-sheen on skin and fabric micro-pile of the robe",
|
||||
"diffuser micro-vapor threads in low light"
|
||||
],
|
||||
"mood": "soothing reassurance",
|
||||
"lighting": "very low amber lamp with soft directional fill",
|
||||
"style": "tender bedside ritual vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Bright educational appointment where a midwife discusses birth plans using a printed diagram (light/informative)",
|
||||
"sceneVariants": [
|
||||
"Charts and diagrams pinned to a wall",
|
||||
"A pamphlet detailing stages of labor on the table",
|
||||
"A friendly midwife using simple language and gestures",
|
||||
"A checklist of preferences being annotated",
|
||||
"A calm water pitcher and cup placed for hydration"
|
||||
],
|
||||
"actions": [
|
||||
"Explaining options and risks with empathy and clarity",
|
||||
"Marking a personalized birth plan and noting preferences",
|
||||
"Answering direct questions with supportive evidence",
|
||||
"Confirming next steps and scheduling follow-up appointments"
|
||||
],
|
||||
"camera": "Documentary-style medium shots with close-ups on annotated plan",
|
||||
"accents": [
|
||||
"paper micro-fiber on forms and pen micro-ink gloss",
|
||||
"clipboard micro-edge under soft clinic lighting"
|
||||
],
|
||||
"mood": "empowered preparedness",
|
||||
"lighting": "clean clinical daylight with neutral fill",
|
||||
"style": "informational care vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Pregnancy",
|
||||
"scene": "Late-night reflective journal entry where a parent writes hopes and fears beside a dim lamp (dark/reflective)",
|
||||
"sceneVariants": [
|
||||
"A leather-bound journal and a fountain pen",
|
||||
"A small stack of ultrasound photos nearby",
|
||||
"A cup of tea cooling and a folded note in the corner",
|
||||
"A clock showing past midnight with a calm hush",
|
||||
"A gentle rain audible on the windowpane"
|
||||
],
|
||||
"actions": [
|
||||
"Scribbling heartfelt promises and dreams into the page",
|
||||
"Rereading old entries to observe the emotional journey",
|
||||
"A small tear dried then transformed into a smile",
|
||||
"Tucking the journal away with a sense of resolve"
|
||||
],
|
||||
"camera": "Close macro on handwriting and medium pull-back to show posture",
|
||||
"accents": [
|
||||
"ink micro-pooling and paper micro-tooth texture",
|
||||
"lamp micro-halo and rain micro-ripple on glass"
|
||||
],
|
||||
"mood": "intimate contemplation",
|
||||
"lighting": "very low desk lamp with cool exterior contrast",
|
||||
"style": "personal documentary vignette"
|
||||
}
|
||||
]
|
||||
227
src/data/childhood_and_family_school_activities.json
Normal file
227
src/data/childhood_and_family_school_activities.json
Normal file
@ -0,0 +1,227 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Class science fair with projects spread across folding tables (light/educational)",
|
||||
"sceneVariants": [
|
||||
"Tri-fold boards with colorful charts and glued photos",
|
||||
"A student demonstrating a vinegar-and-baking-soda volcano",
|
||||
"Judges walking the aisles asking thoughtful questions",
|
||||
"A small trophy table and participation ribbons",
|
||||
"Parent volunteers shepherding groups and taking notes"
|
||||
],
|
||||
"actions": [
|
||||
"A student confidently explains hypothesis and results",
|
||||
"Judges probe methods and encourage next steps",
|
||||
"A camera documents a proud smile for a school newsletter",
|
||||
"A cautious cleanup of spilled materials follows practical demonstrations"
|
||||
],
|
||||
"camera": "Table-level glide with close inserts on hands and annotated charts",
|
||||
"accents": [
|
||||
"poster board paper grain micro-detail and marker ink micro-bleed",
|
||||
"small LED desk lamp caustics on project models"
|
||||
],
|
||||
"mood": "curious accomplishment",
|
||||
"lighting": "bright school hall lighting with practical desk lamps",
|
||||
"style": "educational showcase vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Field trip to a local museum where students sketch artifacts (day/inquisitive)",
|
||||
"sceneVariants": [
|
||||
"A docent pointing to an exhibit and explaining context",
|
||||
"Children with clipboards drawing quick observational sketches",
|
||||
"A museum gallery with labeled artifacts and protective glass",
|
||||
"A quiet corner where a child carefully copies a pattern",
|
||||
"Chaperones checking lists and guiding small groups"
|
||||
],
|
||||
"actions": [
|
||||
"Students ask targeted questions and note observations",
|
||||
"A sketch is compared with a reference card for accuracy",
|
||||
"A docent highlights a surprising historical detail",
|
||||
"A group photo marks the end of the guided tour"
|
||||
],
|
||||
"camera": "Quiet lateral moves with close pencil-and-paper macro shots",
|
||||
"accents": [
|
||||
"antiqued surface micro-texture and label micro-type detail",
|
||||
"soft museum spotlight caustics"
|
||||
],
|
||||
"mood": "thoughtful discovery",
|
||||
"lighting": "controlled gallery lighting with soft fill",
|
||||
"style": "field-trip documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "After-school club meeting building robots and coding small devices (light/technical)",
|
||||
"sceneVariants": [
|
||||
"Workbenches with microcontrollers, wires, and sensors",
|
||||
"Students soldering with adult supervision and safety glasses",
|
||||
"A laptop showing serial output and simple control loops",
|
||||
"A small testing track for robot runs",
|
||||
"A whiteboard with task breakdown and sprint goals"
|
||||
],
|
||||
"actions": [
|
||||
"A sensor calibration yields stable readings for navigation",
|
||||
"A team iterates on a chassis design after a test run",
|
||||
"A mentor introduces a new control concept with a quick demo",
|
||||
"A successful run triggers enthusiastic high-fives"
|
||||
],
|
||||
"camera": "Close tool-level macros blended with wide team establishes",
|
||||
"accents": [
|
||||
"PCB trace micro-sheen and connector pin micro-detail",
|
||||
"small LED indicator micro-glow"
|
||||
],
|
||||
"mood": "applied curiosity",
|
||||
"lighting": "bright workshop task lighting",
|
||||
"style": "youth STEM vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "School play rehearsal with costume quick-changes and blocking (light/creative)",
|
||||
"sceneVariants": [
|
||||
"A gym transformed into a stage with taped positions",
|
||||
"Children practicing lines under a director's guidance",
|
||||
"Quick-change station with labeled costume racks",
|
||||
"A parent running lines with an anxious performer",
|
||||
"A cue-sheet taped to the wall with prop notes"
|
||||
],
|
||||
"actions": [
|
||||
"An actor nails a tricky line and the group applauds",
|
||||
"A costume mishap is handled with improvised repair",
|
||||
"Stage manager times a scene change and calls cues",
|
||||
"A run-through concludes with constructive director notes"
|
||||
],
|
||||
"camera": "Stage-side perspective with candid backstage inserts",
|
||||
"accents": [
|
||||
"fabric seam micro-detail and stage-tape texture",
|
||||
"script page micro-print and pencil margin notes"
|
||||
],
|
||||
"mood": "nervous excitement",
|
||||
"lighting": "bright rehearsal hall light with directional stage tests",
|
||||
"style": "creative school theatre profile"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Sports day with relay races and medal ceremonies (day/energetic)",
|
||||
"sceneVariants": [
|
||||
"Track lanes with cones and baton handoffs",
|
||||
"A long scoreboard listing events and heat numbers",
|
||||
"Parents clustered in the stands cheering",
|
||||
"A finish line with tape and timekeepers with stopwatches",
|
||||
"A podium area with medals and a school banner"
|
||||
],
|
||||
"actions": [
|
||||
"Runners execute smooth baton handoffs at the exchange zones",
|
||||
"An underdog sprinter surprises with a fast finish",
|
||||
"Medals are pinned and a team photo captures the moment",
|
||||
"A hydration and cooling station supports recovery"
|
||||
],
|
||||
"camera": "High-speed tracking of sprint exchanges with podium close-ins",
|
||||
"accents": [
|
||||
"track rubber micro-grain and stopwatch micro-text",
|
||||
"medal metal micro-glint under sun"
|
||||
],
|
||||
"mood": "competitive joy",
|
||||
"lighting": "sunny outdoor sports lighting",
|
||||
"style": "school athletic day documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Classroom reading circle where each student shares a favorite book (light/reflective)",
|
||||
"sceneVariants": [
|
||||
"Carpeted circle with a teacher facilitating discussion",
|
||||
"A student holding a well-thumbed picture book",
|
||||
"A 'reading corner' with cushions and soft lamps",
|
||||
"A small display with student-recommended titles",
|
||||
"A reading log chart tracking minutes read"
|
||||
],
|
||||
"actions": [
|
||||
"A student reads aloud with expressive phrasing while peers listen",
|
||||
"The class asks thoughtful questions about character choices",
|
||||
"A teacher links the book to a follow-up writing prompt",
|
||||
"A quiet reflection is written in each student's reading journal"
|
||||
],
|
||||
"camera": "Intimate circle-level framing with book-and-face close-ups",
|
||||
"accents": [
|
||||
"paper edge texture micro-detail and colored pencil micro-markings",
|
||||
"soft lamp caustics on cover illustrations"
|
||||
],
|
||||
"mood": "gentle engagement",
|
||||
"lighting": "soft classroom daylight",
|
||||
"style": "literacy-circle vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Community service day where students plant trees and clean a park (day/communal)",
|
||||
"sceneVariants": [
|
||||
"Shovels and saplings lined up in neat rows",
|
||||
"Students in matching volunteer T-shirts",
|
||||
"A local official offering a short thanks and photo-op",
|
||||
"Trash bags and recycling bins filling gradually",
|
||||
"A hydration and snack tent staged for volunteers"
|
||||
],
|
||||
"actions": [
|
||||
"Teams dig holes, plant saplings, and stake protective tubes",
|
||||
"Litter is collected, sorted, and bagged for disposal",
|
||||
"A debrief highlights environmental impact and next steps",
|
||||
"A small celebratory snack marks completion"
|
||||
],
|
||||
"camera": "Wide park establishes with close planting and hand-in-soil macros",
|
||||
"accents": [
|
||||
"soil micro-grain and sapling leaf micro-venation",
|
||||
"printed volunteer badge micro-text"
|
||||
],
|
||||
"mood": "responsible pride",
|
||||
"lighting": "clear outdoor worklight",
|
||||
"style": "service-learning vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Art showcase with student canvases hung in a corridor gallery (light/aesthetic)",
|
||||
"sceneVariants": [
|
||||
"Corridor walls lined with diverse student works",
|
||||
"Small placards with artist statement and medium listed",
|
||||
"Parents and peers circulating with appreciative murmurs",
|
||||
"An art teacher guiding a visitor through notable techniques",
|
||||
"A small signing area for guest comments"
|
||||
],
|
||||
"actions": [
|
||||
"Students stand by their pieces explaining intent and process",
|
||||
"A visitor leaves a thoughtful comment on a guest card",
|
||||
"A judge selects merit recognition based on craft and concept",
|
||||
"A final closing handshake thanks volunteers and organizers"
|
||||
],
|
||||
"camera": "Slow glide along the gallery wall with intimate art close-ups",
|
||||
"accents": [
|
||||
"canvas weave micro-texture and brushstroke micro-detail",
|
||||
"printed placard micro-type and pin shadow caustics"
|
||||
],
|
||||
"mood": "proud exhibition",
|
||||
"lighting": "soft gallery-style track lighting",
|
||||
"style": "school art exhibition vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "School Activities",
|
||||
"scene": "Language club conversation exchange with pen-pals via video link (light/global)",
|
||||
"sceneVariants": [
|
||||
"A classroom set up with a large display and headphones",
|
||||
"Pairs practicing short dialogues in a foreign language",
|
||||
"A live video call with a partner classroom abroad",
|
||||
"Cultural artifacts and small snacks from other countries on a table",
|
||||
"A teacher moderating pronunciation and polite forms"
|
||||
],
|
||||
"actions": [
|
||||
"Students take turns practicing introductions and simple questions",
|
||||
"A cross-cultural exchange highlights a surprising local custom",
|
||||
"A short bilingual skit is performed for the remote class",
|
||||
"Language learning goals are set for the next exchange"
|
||||
],
|
||||
"camera": "Over-the-shoulder screen captures and two-shot conversation framing",
|
||||
"accents": [
|
||||
"screen pixel micro-grid and handwritten phrase micro-text",
|
||||
"table artifact texture micro-detail"
|
||||
],
|
||||
"mood": "connected curiosity",
|
||||
"lighting": "bright classroom light with screen glow",
|
||||
"style": "global learning vignette"
|
||||
}
|
||||
]
|
||||
577
src/data/childhood_and_family_siblings.json
Normal file
577
src/data/childhood_and_family_siblings.json
Normal file
@ -0,0 +1,577 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Two siblings building a blanket fort in the living room after dusk (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Blankets draped between chairs creating a small private world",
|
||||
"A flashlight used for secret maps and whispered plans",
|
||||
"A string of fairy lights barely illuminating smiling faces",
|
||||
"A pile of cushions forming a throne for the 'fort king'",
|
||||
"A pet curled at the entrance as guardian"
|
||||
],
|
||||
"actions": [
|
||||
"Whispered conspiracies and shared jokes passed between them",
|
||||
"A quiet disagreement about fort rules resolved with a trade",
|
||||
"One sibling reads a hand-drawn map while the other pretends to scout",
|
||||
"A parent peers in, smiles, and gently closes the door"
|
||||
],
|
||||
"camera": "Low-angle intimate handheld inside-fort close-ups with occasional slow push-outs",
|
||||
"accents": [
|
||||
"warm fairy-light micro-glow along blanket seams",
|
||||
"fabric weave micro-detail on cushions"
|
||||
],
|
||||
"mood": "secretive warmth",
|
||||
"lighting": "soft interior fairy-lamp with deep surrounding shadows",
|
||||
"style": "intimate domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Older sibling guiding a toddler across the backyard for a first small race at twilight (dark/hopeful)",
|
||||
"sceneVariants": [
|
||||
"Tiny shoes lined up at the starting mark",
|
||||
"An encouraging high-five before the run",
|
||||
"Parents cheering from a distance like proud spectators",
|
||||
"A setting sun just below the horizon outlining hopeful silhouettes",
|
||||
"A ribbon tied as a makeshift finish line"
|
||||
],
|
||||
"actions": [
|
||||
"Older sibling crouches to explain steps patiently",
|
||||
"Toddler stumbles and is gently helped up to continue",
|
||||
"A triumphant finish with shared laughter",
|
||||
"A congratulatory hug that lingers in the twilight"
|
||||
],
|
||||
"camera": "Wide shallow dolly from low ground-level to capture movement and small figures",
|
||||
"accents": [
|
||||
"golden rim-light on hair edges",
|
||||
"dirt and grass blade micro-textures on knees"
|
||||
],
|
||||
"mood": "tender encouragement",
|
||||
"lighting": "twilight rim-light with cool ambient shadow",
|
||||
"style": "heartfelt family snapshot"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Late-night kitchen raid where siblings whisper and share secret snacks (dark/playful)",
|
||||
"sceneVariants": [
|
||||
"Kitchen lit only by a small fridge light",
|
||||
"Two silhouettes passing a cookie plate between them",
|
||||
"Sticky crumbs on small fingers",
|
||||
"A quiet giggle suppressed behind a hand",
|
||||
"Footsteps muffled on tile as they sneak back to bed"
|
||||
],
|
||||
"actions": [
|
||||
"Careful tiptoeing and exaggerated hushes",
|
||||
"A sibling pretends to be guard while the other fetches treats",
|
||||
"A stolen piece is shared with a theatrical nod",
|
||||
"After the raid, they blow crumbs into the sink and scurry away"
|
||||
],
|
||||
"camera": "Close fridge-to-hand inserts with a slow track back to reveal both faces",
|
||||
"accents": [
|
||||
"cold fridge LED micro-caustics",
|
||||
"crumb detail on fingertips and lips"
|
||||
],
|
||||
"mood": "mischievous intimacy",
|
||||
"lighting": "isolated cold LED spot with deep kitchen shadows",
|
||||
"style": "small nocturnal caper"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Morning sunlight floods a shared bedroom where siblings trade toys and stories (light/cheerful)",
|
||||
"sceneVariants": [
|
||||
"Sunbeams crossing a carpet of scattered toys",
|
||||
"A window with fluttering curtains and a chorus of birds",
|
||||
"Two beds parallel with a small table of shared treasures",
|
||||
"A hand-painted sign above the beds reading 'No Adults Allowed'",
|
||||
"A calendar with stickers marking sibling adventures"
|
||||
],
|
||||
"actions": [
|
||||
"Laughter as one sibling performs a silly skit with a toy",
|
||||
"An exchange of treasured stickers and small bargains",
|
||||
"A shared snack at a tiny table discussing today's plans",
|
||||
"A brief squabble over a prized toy resolved with compromise"
|
||||
],
|
||||
"camera": "Soft wide-angle with periodic slow push-ins to capture facial reactions",
|
||||
"accents": [
|
||||
"sunbeam dust motes micro-detail",
|
||||
"toy plastic micro-scratches and sticker edge detail"
|
||||
],
|
||||
"mood": "sunny camaraderie",
|
||||
"lighting": "bright morning light with soft diffuse fill",
|
||||
"style": "nostalgic family slice-of-life"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A competitive board-game afternoon with playful rivalry and cheering (light/energetic)",
|
||||
"sceneVariants": [
|
||||
"Colorful board and scattered cards on a low coffee table",
|
||||
"Siblings leaning in, eyes alight with strategy",
|
||||
"An over-exuberant celebration for a small victory",
|
||||
"A sibling pretending dramatic despair after a loss",
|
||||
"A parent capturing the moment on a phone"
|
||||
],
|
||||
"actions": [
|
||||
"Animated negotiation of rules with mock indignation",
|
||||
"A successful cunning move followed by triumphant high-fives",
|
||||
"Teasing banter evolving into shared jokes",
|
||||
"Game ended with both siblings collapsing into giggles"
|
||||
],
|
||||
"camera": "Overhead flatlay alternating with tight reaction close-ups",
|
||||
"accents": [
|
||||
"card edge micro-fray and game piece micro-surface detail",
|
||||
"table wood grain micro-texture under the pieces"
|
||||
],
|
||||
"mood": "playful rivalry",
|
||||
"lighting": "warm afternoon window light with soft fill",
|
||||
"style": "lively domestic scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Older sibling patiently teaching the younger one to tie shoes on a sunny front porch (light/teaching)",
|
||||
"sceneVariants": [
|
||||
"Shoelace loops patiently demonstrated step-by-step",
|
||||
"A small statue of a garden gnome watching nearby",
|
||||
"A breeze stirring a child's loose hair",
|
||||
"A neighbor waving across the street as a quiet backdrop",
|
||||
"A little applause after the first successful knot"
|
||||
],
|
||||
"actions": [
|
||||
"Stepwise demonstration with slow, reassuring voice",
|
||||
"Young sibling's focused attempts and a triumphant smile",
|
||||
"A gentle high-five and a proud show-off lap around the porch",
|
||||
"Older sibling smoothing an errant lace with a playful scold"
|
||||
],
|
||||
"camera": "Close macro on hands and laces, cut to medium wide for reaction",
|
||||
"accents": [
|
||||
"lace fiber micro-detail and sunlight rim micro-flares",
|
||||
"porch wood micro-grain and chipped paint micro-texture"
|
||||
],
|
||||
"mood": "proud mentorship",
|
||||
"lighting": "clear daylight with warm highlights",
|
||||
"style": "small instructional slice-of-life"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A rain-day kingdom where siblings transform furniture into castles in a cozy living room (dark/stormy but warm)",
|
||||
"sceneVariants": [
|
||||
"Raindrops streaking down a living-room window",
|
||||
"Cushion turrets with a blanket flag fluttering inside",
|
||||
"A table turned into a castle gate with strings of colored lights",
|
||||
"Mismatched robes and cardboard crowns donned for ceremony",
|
||||
"A tea ceremony with mismatched mugs for royal guests"
|
||||
],
|
||||
"actions": [
|
||||
"Siblings dramatically assign roles and invent rituals",
|
||||
"An impromptu puppet court using sock puppets for mock judgments",
|
||||
"A sudden blackout leads to storytelling by lantern",
|
||||
"The kingdom declares snack-time peace treaties"
|
||||
],
|
||||
"camera": "Warm static medium shots with occasional close-ups on expressive faces",
|
||||
"accents": [
|
||||
"window rain streak micro-detail and blanket fiber micro-texture",
|
||||
"lamp warm filament micro-glow"
|
||||
],
|
||||
"mood": "cozy imagination",
|
||||
"lighting": "warm interior lamps against cool rainy window",
|
||||
"style": "playful domestic fantasy"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "First shared bicycle ride in a sunlit neighborhood where the older sibling leads and protects (light/adventurous)",
|
||||
"sceneVariants": [
|
||||
"Training wheels left behind in a proud pile",
|
||||
"A triumphant ring of a small bell as they pass",
|
||||
"Neighbors smiling from porches",
|
||||
"A lemonade stand in the distance beckoning as a goal",
|
||||
"Sun filtering through tree canopies over the path"
|
||||
],
|
||||
"actions": [
|
||||
"Older sibling steadying the younger one with a protective hand",
|
||||
"A brief wobble followed by encouraging words and correction",
|
||||
"A short victorious parade down the block",
|
||||
"A shared treat at destination with an exchanged high-five"
|
||||
],
|
||||
"camera": "Side-tracking dolly capturing steady pedaling and smiles",
|
||||
"accents": [
|
||||
"tire tread micro-dust and chain micro-lubricant sheen",
|
||||
"leaf dapple micro-light patterns on helmets"
|
||||
],
|
||||
"mood": "protective freedom",
|
||||
"lighting": "bright morning/afternoon sun with crisp shadows",
|
||||
"style": "warm neighborhood documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A quiet late-night bedroom where an older sibling comforts a younger one after a nightmare (dark/soothing)",
|
||||
"sceneVariants": [
|
||||
"Nightlight painting gentle shapes on the ceiling",
|
||||
"An embrace that lasts longer than usual",
|
||||
"Soft whispered assurances cataloged like a lullaby",
|
||||
"A small stuffed toy moved into the younger child's arms",
|
||||
"Slow breathing returning to an even rhythm"
|
||||
],
|
||||
"actions": [
|
||||
"Older sibling recounts a silly story to replace scary images",
|
||||
"Humming and gentle stroking of hair until sleep returns",
|
||||
"Careful rearrangement of blankets for comfort",
|
||||
"A promise of morning pancakes or special plans for reassurance"
|
||||
],
|
||||
"camera": "Tight close-ups on faces and hands, with a slow pull-back",
|
||||
"accents": [
|
||||
"nightlight micro-halo and blanket micro-weave detail",
|
||||
"eyelash and forehead micro-skin texture in soft light"
|
||||
],
|
||||
"mood": "protective tenderness",
|
||||
"lighting": "very low bedside glow with soft fill",
|
||||
"style": "quiet emotional close-up"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Sunday morning backyard soccer where siblings captain opposing teams and compete playfully (light/competitive)",
|
||||
"sceneVariants": [
|
||||
"Makeshift goalposts formed with backpacks",
|
||||
"A patchy lawn with bright painted cones",
|
||||
"Sweaty hair, dusty knees and bright grins",
|
||||
"A parent referee with a handkerchief whistle",
|
||||
"A small trophy made from tin foil for the winner"
|
||||
],
|
||||
"actions": [
|
||||
"Fast-paced passing and gleeful scoring",
|
||||
"Minor scuffles resolved with handshake deals",
|
||||
"A dramatic last-minute goal with group celebration",
|
||||
"Post-game shared water bottles and mutual bragging"
|
||||
],
|
||||
"camera": "Dynamic handheld following the ball with periodic slow-mo for goals",
|
||||
"accents": [
|
||||
"sweat bead micro-detail and grass stain micro-texture",
|
||||
"sunlight micro-flares on moving limbs"
|
||||
],
|
||||
"mood": "energetic joy",
|
||||
"lighting": "bright outdoor sun with hard shadows",
|
||||
"style": "vibrant family sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Quiet afternoon arts-and-crafts where siblings collaborate on a giant paper mural (light/creative)",
|
||||
"sceneVariants": [
|
||||
"Paint-splattered table covered in colored paper and glue sticks",
|
||||
"Hands reaching for scissors and glitter",
|
||||
"A long mural taped to a wall showcasing their combined story",
|
||||
"A proud display with labels marking each sibling's contribution",
|
||||
"A small tear mended with a shared smile"
|
||||
],
|
||||
"actions": [
|
||||
"One sibling sketches, the other colors, trading tools and compliments",
|
||||
"Experimentation with texture and mixed media leading to surprises",
|
||||
"Temporary disagreements over color choices resolved by compromise",
|
||||
"A final collaborative signature and celebratory ritual"
|
||||
],
|
||||
"camera": "Top-down wide table shots with close macro on brush strokes and glue drips",
|
||||
"accents": [
|
||||
"paint brush stroke micro-detail and paper fiber micro-texture",
|
||||
"glitter micro-specular highlights"
|
||||
],
|
||||
"mood": "playful creativity",
|
||||
"lighting": "soft diffuse daylight from a large window",
|
||||
"style": "crafty documentary vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A dusk ritual of watering a small shared garden patch where siblings tend plants together (dark/serene)",
|
||||
"sceneVariants": [
|
||||
"Shovels and small watering cans lined up",
|
||||
"Hands covered in soil and a faint smell of earth",
|
||||
"A tin can bird feeder swinging nearby",
|
||||
"A small handmade sign with their names beside the bed",
|
||||
"Crickets starting their evening chorus"
|
||||
],
|
||||
"actions": [
|
||||
"Careful transplanting and whispering gentle encouragements to seedlings",
|
||||
"Comparing plant growth and making plans for vegetables to harvest",
|
||||
"Small disagreements about watering frequency negotiated with timers",
|
||||
"A later celebratory sharing of first micro-harvest"
|
||||
],
|
||||
"camera": "Low naturalistic tracking with close macro on soil and root detail",
|
||||
"accents": [
|
||||
"moist soil micro-granularity and leaf vein micro-detail",
|
||||
"dew micro-bead reflections at dusk"
|
||||
],
|
||||
"mood": "patient stewardship",
|
||||
"lighting": "soft dusk with cool ambient and a warm porch light accent",
|
||||
"style": "quiet nature vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A sunlit school morning where siblings walk together to the bus, backpacks swinging in rhythm (light/routine)",
|
||||
"sceneVariants": [
|
||||
"Backpacks zipped and lunch boxes neatly labeled",
|
||||
"A sidewalk chalk drawing they pause to admire",
|
||||
"Neighbors waving as the siblings pass by",
|
||||
"A dog that insists on escorting them a few yards",
|
||||
"A bus approaching with its warm yellow paint gleaming"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized steps and shared jokes about the day's lessons",
|
||||
"A quick exchange of a forgotten crayon or note",
|
||||
"One sibling nudging the other to board with confidence",
|
||||
"A final wave to parents before climbing the steps"
|
||||
],
|
||||
"camera": "Wide street-level tracking with tight reaction inserts",
|
||||
"accents": [
|
||||
"fabric strap micro-stitch detail and morning breath micro-fog in cooler climates",
|
||||
"chalk dust micro-particles near shoes"
|
||||
],
|
||||
"mood": "steady companionship",
|
||||
"lighting": "clear morning light with crisp contrasts",
|
||||
"style": "slice-of-life neighborhood scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A nighttime town parade where siblings hold small lanterns and march together (dark/festive)",
|
||||
"sceneVariants": [
|
||||
"Lantern glow reflected in excited eyes",
|
||||
"A crowd hums with distant music",
|
||||
"Paper confetti sticks to small shoulders",
|
||||
"An elder nodding proudly from the sidelines",
|
||||
"Siblings exchange secretive glances during a solemn part of the procession"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized walking with careful handling of their lanterns",
|
||||
"A brief stop to watch a performer, fingertips lightly touching",
|
||||
"The exchange of whispered observations about costumes",
|
||||
"Lighting of a final candle together as a small rite"
|
||||
],
|
||||
"camera": "Slow tracking with wide aperture to isolate faces against bokeh",
|
||||
"accents": [
|
||||
"lantern filament micro-glow and paper micro-fiber detail",
|
||||
"confetti micro-reflective highlights"
|
||||
],
|
||||
"mood": "communal wonder",
|
||||
"lighting": "warm point light sources with deep night contrast",
|
||||
"style": "intimate festival vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A lazy rainy afternoon in pajamas where siblings binge-watch cartoons and build snack towers (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Blankets and pillows arranged like a nest on the couch",
|
||||
"Sticky fingers reaching for popcorn and fruit snacks",
|
||||
"A cartoon reflected in wide eyes",
|
||||
"A tower of snacks collapsing to theatrical groans",
|
||||
"A sleepy nod as contentment settles in"
|
||||
],
|
||||
"actions": [
|
||||
"Shared commentary and synchronized laughter at favorite scenes",
|
||||
"Strategic snack division negotiated with playful allegations of theft",
|
||||
"A spontaneous sing-along to a familiar theme song",
|
||||
"Slow eyelids drooping until both fall asleep mid-episode"
|
||||
],
|
||||
"camera": "Close intimate medium shots with warm soft-focus and occasional quick cuts to snacks",
|
||||
"accents": [
|
||||
"screen micro-pixel bloom and snack crumb micro-detail",
|
||||
"blanket knit micro-texture in soft focus"
|
||||
],
|
||||
"mood": "comforting laziness",
|
||||
"lighting": "cool ambient from window with warm TV glow",
|
||||
"style": "cozy family vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A backyard science experiment afternoon where siblings get messy learning volcano chemistry (light/curious)",
|
||||
"sceneVariants": [
|
||||
"Baking soda and vinegar arranged in a small handmade crater",
|
||||
"Protective goggles askew on excited faces",
|
||||
"A parent capturing the eruption on a phone",
|
||||
"Handmade scorecards for each experiment attempt",
|
||||
"A later cleanup spree with shared chores"
|
||||
],
|
||||
"actions": [
|
||||
"Measuring, stirring, and dramatic narration of chemical 'eruptions'",
|
||||
"One sibling volunteers as 'reporter' while the other mixes the ingredients",
|
||||
"Laughter and shocked expressions during the first fizzing overflow",
|
||||
"Lessons turned into jokes and plans for the next experiment"
|
||||
],
|
||||
"camera": "Macro bubbling inserts with medium reactions and quick pans to measurements",
|
||||
"accents": [
|
||||
"foam bubble micro-structure and powder micro-granularity",
|
||||
"goggle scratch micro-texture and sunlight micro-sheen"
|
||||
],
|
||||
"mood": "energetic curiosity",
|
||||
"lighting": "bright outdoor light with crisp highlights",
|
||||
"style": "educational play vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Twilight storytelling circle where siblings trade tales and dare each other gently (dark/mysterious)",
|
||||
"sceneVariants": [
|
||||
"An outdoor campfire replaced by a small lantern ring",
|
||||
"Shadow-play against a nearby wall as stories come alive",
|
||||
"A 'scariest line' contest with exaggerated reactions",
|
||||
"A brave sibling purposely delivering the funniest punchline",
|
||||
"A pact to share the best secret the next night"
|
||||
],
|
||||
"actions": [
|
||||
"Dramatic voice modulation to heighten suspense",
|
||||
"A synchronized gasp and then a burst of laughter to break tension",
|
||||
"A daring challenge accepted with mock solemnity",
|
||||
"A conclusion with a reassuring moral and group clap"
|
||||
],
|
||||
"camera": "Tight circle compositions with dynamic close-ups on expressions",
|
||||
"accents": [
|
||||
"lantern ember micro-glow and camp blanket micro-weave",
|
||||
"shadow-edge micro-definition on faces"
|
||||
],
|
||||
"mood": "playful spine-tingling",
|
||||
"lighting": "soft lantern glow with deep ambient black",
|
||||
"style": "miniature oral tradition"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "Sunny beach day where siblings build a massive sandcastle and guard it from tide (light/epic play)",
|
||||
"sceneVariants": [
|
||||
"Bucket and spade fleets lining the shore",
|
||||
"Elaborate moat and tower architecture crowning their castle",
|
||||
"Seagulls circling overhead as unsolicited judges",
|
||||
"A neighbor child recruited into the grand project",
|
||||
"A final ceremonial flag planted triumphantly"
|
||||
],
|
||||
"actions": [
|
||||
"Cooperative digging and precision sculpting with improvised tools",
|
||||
"A dramatic rescue when waves threaten a turret",
|
||||
"A contender arising and a negotiated truce declared",
|
||||
"A victorious photograph taken to commemorate the building"
|
||||
],
|
||||
"camera": "Low-angle cinematic wide with occasional close-ups on wet sand textures",
|
||||
"accents": [
|
||||
"wet sand micro-granularity and shell micro-detail embedded in walls",
|
||||
"sun glares micro-reflection on wet surfaces"
|
||||
],
|
||||
"mood": "expansive collaboration",
|
||||
"lighting": "bright high-noon sun with strong contrast",
|
||||
"style": "sunny adventure vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A late evening homework session where older sibling tutors the younger under a desk lamp (dark/studious)",
|
||||
"sceneVariants": [
|
||||
"Papers and colored pens scattered across the table",
|
||||
"An earnest explanation diagrammed with crayons",
|
||||
"A sleepy head propped on a hand during long problem-solving",
|
||||
"A small reward chart promising stickers for milestones",
|
||||
"A satisfied stamp of completion placed with ceremony"
|
||||
],
|
||||
"actions": [
|
||||
"Patient step-by-step coaching with repetition and mnemonic tricks",
|
||||
"Practice problems attempted and corrected with encouragement",
|
||||
"A short break filled with whispered jokes to revive focus",
|
||||
"Completing the final problem with celebratory applause"
|
||||
],
|
||||
"camera": "Tight over-the-shoulder educational inserts with slow lateral moves",
|
||||
"accents": [
|
||||
"paper fiber micro-texture and pencil stroke micro-detail",
|
||||
"lamp warm micro-glow and shadow softening"
|
||||
],
|
||||
"mood": "focused support",
|
||||
"lighting": "single warm desk lamp against darker room",
|
||||
"style": "quiet instructional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A backyard talent show where siblings perform and judge each other with playful seriousness (light/performative)",
|
||||
"sceneVariants": [
|
||||
"A broomstick microphone and a cardboard stage",
|
||||
"Homemade costume pieces and glitter face paint",
|
||||
"An audience of stuffed animals and neighborhood kids",
|
||||
"A 'judges' table with funny scorecards",
|
||||
"A final bow with a shared bouquet of daisies"
|
||||
],
|
||||
"actions": [
|
||||
"Siblings rehearse lines and choreography with dramatic flair",
|
||||
"A comedic slip turned into a running gag that gets bigger each performance",
|
||||
"Friendly rivalry about who gets the loudest applause",
|
||||
"Shared backstage hugs and shared snacks after the curtain call"
|
||||
],
|
||||
"camera": "Playful wide-stage coverage with reaction close-ups and quick cutaways",
|
||||
"accents": [
|
||||
"costume fabric micro-stitched detail and glitter specular highlights",
|
||||
"cardboard stage micro-flake texture under foot"
|
||||
],
|
||||
"mood": "boisterous creativity",
|
||||
"lighting": "bright afternoon with playful spotlighting from household lamps",
|
||||
"style": "home-made theater vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A dusk chore routine where siblings collaborate to clean and organize toys before bedtime (dark/rhythmic)",
|
||||
"sceneVariants": [
|
||||
"Toy bins labeled with hand-drawn tags",
|
||||
"A quick game of who-can-pick-up-fastest instituted to speed work",
|
||||
"A victory dance after the last piece is shelved",
|
||||
"A reward chart tallying helpful deeds",
|
||||
"A short negotiation over who dusts shelves"
|
||||
],
|
||||
"actions": [
|
||||
"Synchronized pickup with playful counting and cheering",
|
||||
"Gentle teasing about missed spots followed by thorough correction",
|
||||
"A final inspection by a parent awarding a theatrical ribbon",
|
||||
"Settling into clean beds with satisfied smiles"
|
||||
],
|
||||
"camera": "Fast-paced montage cuts with rhythmic transitions to music",
|
||||
"accents": [
|
||||
"shelf dust micro-particulates in lamplight and toy plastic micro-detail",
|
||||
"wood floor micro-reflective sheen under cleaning motion"
|
||||
],
|
||||
"mood": "cooperative satisfaction",
|
||||
"lighting": "soft evening lamps with small hotspots",
|
||||
"style": "energetic domestic montage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A late afternoon kitchen baking lesson where siblings measure, mix, and sneak tastes (light/homely)",
|
||||
"sceneVariants": [
|
||||
"Flour-dusted countertops and tiny handprints on the oven door",
|
||||
"Cookie cutters lined in playful shapes",
|
||||
"A timer set and watched with exaggerated anticipation",
|
||||
"A cooling rack with steaming treats and a token 'chefs' hat'",
|
||||
"A scribbled recipe card with notes in both handwriting styles"
|
||||
],
|
||||
"actions": [
|
||||
"Measuring with careful hands and deliberate dramatic flair",
|
||||
"Taste-testing with exaggerated approval or mock disgust",
|
||||
"A competitive race to decorate the most creative cookie",
|
||||
"Shared triumph when the batch comes out golden"
|
||||
],
|
||||
"camera": "Macro flour motes and batter swirl inserts with medium shoulder-level interaction shots",
|
||||
"accents": [
|
||||
"flour micro-powder haze and sugar crystal micro-detail",
|
||||
"oven heat micro-distortion near freshly baked edges"
|
||||
],
|
||||
"mood": "hearty collaboration",
|
||||
"lighting": "warm kitchen afternoon light with oven glow accents",
|
||||
"style": "nostalgic culinary vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Siblings",
|
||||
"scene": "A star-gazing night where siblings lie on a rooftop counting constellations and sharing secrets (dark/expansive)",
|
||||
"sceneVariants": [
|
||||
"Blankets spread on a flat roof with thermos of cocoa",
|
||||
"A faint hum of distant city lights below",
|
||||
"A map of constellations annotated in childish handwriting",
|
||||
"A satellite streaking across as a shared wonder",
|
||||
"A promise sealed with a quiet handshake"
|
||||
],
|
||||
"actions": [
|
||||
"Pointing out shapes and inventing family-based constellations",
|
||||
"A quiet exchange of small future promises under the sky",
|
||||
"A whispered question answered with kind reassurance",
|
||||
"A sleepy retreat back inside with pockets of contentment"
|
||||
],
|
||||
"camera": "Slow wide with deep focus and gentle push-ins to faces",
|
||||
"accents": [
|
||||
"star micro-point sparkle and blanket micro-fiber detail",
|
||||
"cocoa steam micro-threading in cold air"
|
||||
],
|
||||
"mood": "quiet wonder",
|
||||
"lighting": "very low natural starlight with a small warm lantern accent",
|
||||
"style": "contemplative family vignette"
|
||||
}
|
||||
]
|
||||
527
src/data/childhood_and_family_sports_with_kids.json
Normal file
527
src/data/childhood_and_family_sports_with_kids.json
Normal file
@ -0,0 +1,527 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Dusk soccer practice on a neighborhood field with coach whistles and small teams (dark/organized)",
|
||||
"sceneVariants": [
|
||||
"Floodlights turning on as the sun fades",
|
||||
"Makeshift cones marking drills on worn grass",
|
||||
"Children in mixed jerseys practicing passing",
|
||||
"A parent in a folding chair applauding encouragements",
|
||||
"A stray dog watching from the fence"
|
||||
],
|
||||
"actions": [
|
||||
"Warm-up laps with exaggerated high-knee drills",
|
||||
"Passing patterns executed in timed intervals",
|
||||
"Coach demonstrates a move then lets a child try",
|
||||
"High-fives and water breaks between sets"
|
||||
],
|
||||
"camera": "Side-tracking on low angle to capture movement and small feet",
|
||||
"accents": [
|
||||
"floodlight micro-glare and wet grass micro-reflections",
|
||||
"jersey fabric micro-weave and ball scuff micro-detail"
|
||||
],
|
||||
"mood": "focused camaraderie",
|
||||
"lighting": "cool floodlights with warm sideline lamp accents",
|
||||
"style": "documentary youth sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Nighttime backyard swim where kids splash under string lights and parents chat poolside (dark/playful)",
|
||||
"sceneVariants": [
|
||||
"Tiki lights strung above a small pool",
|
||||
"Inflatable floats bobbing gently",
|
||||
"Children practicing kicking along the shallow edge",
|
||||
"A parent warming towels on a chair",
|
||||
"Sparse music and laughter drifting in the air"
|
||||
],
|
||||
"actions": [
|
||||
"Practicing breathing and kicking drills supervised by an adult",
|
||||
"Synchronized splash games initiated by a child",
|
||||
"Towel-off and warming rituals after short rounds in water",
|
||||
"A parent timers short sets with a stopwatch"
|
||||
],
|
||||
"camera": "Low pool-level shots alternating with sideline reaction close-ups",
|
||||
"accents": [
|
||||
"water micro-caustics and towel pile micro-fiber detail",
|
||||
"string light micro-bokeh in shallow depth"
|
||||
],
|
||||
"mood": "playful energy",
|
||||
"lighting": "warm string lights and pool LED cool fill",
|
||||
"style": "playful family sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Late-evening indoor basketball practice in a community gym with echoing dribbles (dark/intense)",
|
||||
"sceneVariants": [
|
||||
"Echoing bounce of basketballs on polished hardwood",
|
||||
"Parents watching from bleachers under dim house lights",
|
||||
"A coach diagramming plays on a clipboard",
|
||||
"Sweatbands and taped ankles visible up close",
|
||||
"A scoreboard glowing idle in the background"
|
||||
],
|
||||
"actions": [
|
||||
"Dribbling drills and lay-up lines with repetition",
|
||||
"Defensive shuffling taught and corrected patiently",
|
||||
"A small scrimmage at the end with rotating teams",
|
||||
"Cooldown stretches and thank-you huddle"
|
||||
],
|
||||
"camera": "Handheld medium shots with occasional quick cutting for energy",
|
||||
"accents": [
|
||||
"hardwood micro-reflect and ball leather micro-pebble texture",
|
||||
"sweat micro-bead highlights under lights"
|
||||
],
|
||||
"mood": "determined focus",
|
||||
"lighting": "overhead gym lights with sharp contrast",
|
||||
"style": "energetic instructional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Nighttime family run with headlamps along a quiet riverside path (dark/serene exercise)",
|
||||
"sceneVariants": [
|
||||
"Headlamp cones cutting through mist",
|
||||
"A parent running with a stroller adapted for nightly jogs",
|
||||
"Rhythmic footfalls on a gravel trail",
|
||||
"A distant city light reflection on the river",
|
||||
"A child pointing at a passing bat or moth"
|
||||
],
|
||||
"actions": [
|
||||
"Paced steady running with alternating walk breaks",
|
||||
"Parent cues on cadence and breathing for a child runner",
|
||||
"Stopping to hydrate and check shoelaces",
|
||||
"A finish-line cheer when the planned distance is met"
|
||||
],
|
||||
"camera": "Side dolly low-profile to show silhouette against river reflections",
|
||||
"accents": [
|
||||
"headlamp micro-beam and river micro-reflection",
|
||||
"sneaker tread micro-dust capture"
|
||||
],
|
||||
"mood": "quiet resolve",
|
||||
"lighting": "portable headlamps with deep ambient night",
|
||||
"style": "intimate outdoor fitness vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Evening martial arts class in a dojo where kids practice form and bow respectfully (dark/disciplined)",
|
||||
"sceneVariants": [
|
||||
"A line of young students in matching gis",
|
||||
"A senior student demonstrating slow kata",
|
||||
"Parents watching from a small glass lobby",
|
||||
"Belts tied in careful knots of varied colors",
|
||||
"A gentle click of wooden training boards"
|
||||
],
|
||||
"actions": [
|
||||
"Repetition of stances, blocks and controlled kicks",
|
||||
"One-on-one correction by an instructor with a soft voice",
|
||||
"A demonstration culminating in a group synchronized kata",
|
||||
"A closing bow and a quiet round of applause"
|
||||
],
|
||||
"camera": "Wide dojo framing with close-in hand and stance macro shots",
|
||||
"accents": [
|
||||
"gi fabric micro-fiber and polished floor micro-reflect",
|
||||
"belt micro-stitch and breath micro-pulse in silence"
|
||||
],
|
||||
"mood": "respectful concentration",
|
||||
"lighting": "soft warm overhead lamps with deep peripheral shadow",
|
||||
"style": "ceremonial instructional vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright weekend soccer tournament with small goals and cheering families (light/competitive)",
|
||||
"sceneVariants": [
|
||||
"Multiple small pitches side-by-side with color-coded teams",
|
||||
"A concession stand and portable tents lining the perimeter",
|
||||
"Kids swapping stickers in the shade",
|
||||
"Medal ribbons placed on a small table",
|
||||
"A volunteer ref pacing between fields"
|
||||
],
|
||||
"actions": [
|
||||
"Short high-energy matches with substitutions often",
|
||||
"Parents coordinate water and shade for young players",
|
||||
"Post-game handshakes and coach feedback sessions",
|
||||
"An award ceremony with proud beaming smiles"
|
||||
],
|
||||
"camera": "Wide festival-like coverage with reaction close-ups and slow-mo for goals",
|
||||
"accents": [
|
||||
"grass micro-blade detail and medal ribbon micro-fiber",
|
||||
"sun micro-glares and cap brim micro-shadow"
|
||||
],
|
||||
"mood": "celebratory rivalry",
|
||||
"lighting": "midday sun with high-key natural fill",
|
||||
"style": "community sports reportage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright swimming lesson at an outdoor pool teaching float and kick drills (light/educational)",
|
||||
"sceneVariants": [
|
||||
"Colorful lane ropes and instructor holding a noodle",
|
||||
"Small goggles and swim diapers arranged on a bench",
|
||||
"Parents clapping from the shallow end",
|
||||
"Pool deck wet footprints and sun hats",
|
||||
"A whistle used to start and stop sets"
|
||||
],
|
||||
"actions": [
|
||||
"Assisted floating with hands on the back",
|
||||
"Kickboard practice using small focused sets",
|
||||
"Encouragement and playful games to reduce fear",
|
||||
"A final practiced glide into parent's arms"
|
||||
],
|
||||
"camera": "Underwater inserts alternating with poolside reaction shots",
|
||||
"accents": [
|
||||
"water micro-bubble trails and goggle strap micro-rivet",
|
||||
"deck tile micro-texture with wet sheen"
|
||||
],
|
||||
"mood": "confident learning",
|
||||
"lighting": "bright sun with water sparkle highlights",
|
||||
"style": "instructional aquatic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright family bike ride in a park where toddlers practice balance on training wheels (light/joyful)",
|
||||
"sceneVariants": [
|
||||
"Colorful helmets and bell chimes along the path",
|
||||
"Parents running beside small bikes offering steady hands",
|
||||
"A picnic blanket awaiting after the ride",
|
||||
"Birdsong and children racing to a tree",
|
||||
"A small obstacle course of cones for skill building"
|
||||
],
|
||||
"actions": [
|
||||
"Balance drills with parent support and release attempts",
|
||||
"Short timed races for playful competition",
|
||||
"Celebratory ring of the bell at the finish line",
|
||||
"Cool-down stretches and shared snacks"
|
||||
],
|
||||
"camera": "Side-tracking steady cam with low-angle bike captures",
|
||||
"accents": [
|
||||
"tire tread micro-dust and helmet strap micro-stitch",
|
||||
"sun micro-rim on spokes"
|
||||
],
|
||||
"mood": "exuberant freedom",
|
||||
"lighting": "clear afternoon sun with warm fill",
|
||||
"style": "family activity vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright kids' gymnastics class where tiny hands grip a balance beam and mats cushion attempts (light/structured)",
|
||||
"sceneVariants": [
|
||||
"Low foam beam and colorful mats",
|
||||
"A line of kids waiting their turn with focused faces",
|
||||
"A coach demonstrating a safe dismount",
|
||||
"Parents filming a proud moment from the viewing area",
|
||||
"A small medal box near the reception desk"
|
||||
],
|
||||
"actions": [
|
||||
"Assisted balance holds and supported forward rolls",
|
||||
"Skill progressions using spotters and blocks",
|
||||
"Group coordination games for motor control",
|
||||
"A final star turn performed with audience applause"
|
||||
],
|
||||
"camera": "Low-level beam inserts and medium wide for group choreography",
|
||||
"accents": [
|
||||
"foam micro-cell structure and mat compression micro-detail",
|
||||
"grip chalk micro-powder and tiny hair elastic micro-thread"
|
||||
],
|
||||
"mood": "encouraging determination",
|
||||
"lighting": "bright indoor studio lights with soft diffusion",
|
||||
"style": "instructional developmental vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Dim evening skate park session where older kids teach younger ones to roll safely (dark/urban)",
|
||||
"sceneVariants": [
|
||||
"Graffiti walls and a low urban skyline",
|
||||
"A gentle line of ramps and tiny scooters nearby",
|
||||
"Parents on the benches with thermos cups",
|
||||
"Knee pads and helmets swapped in a quick exchange",
|
||||
"A small first-aid kit placed centrally"
|
||||
],
|
||||
"actions": [
|
||||
"Basic push-off and glide coaching with hands-on spot",
|
||||
"Helmet-checks and quick safety demonstrations",
|
||||
"A gentle run through turning technique on low ramps",
|
||||
"A celebratory group cheer after a successful first glide"
|
||||
],
|
||||
"camera": "Wide low-angle ramps coverage with slow-motion glides",
|
||||
"accents": [
|
||||
"concrete micro-grit and wheel micro-scuff marks",
|
||||
"helmet micro-vent detail with reflective stickers"
|
||||
],
|
||||
"mood": "streetwise mentorship",
|
||||
"lighting": "cool dusk with sporadic streetlight accents",
|
||||
"style": "urban youth sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright Saturday morning tennis lesson at a local court teaching rally basics (light/technical)",
|
||||
"sceneVariants": [
|
||||
"Freshly swept court lines and a basket of balls",
|
||||
"Mini racquets sized for small hands",
|
||||
"A string of enthusiastic 'ready' calls",
|
||||
"Parents draped along the fence chatting and cheering",
|
||||
"A scoreboard marking simple points"
|
||||
],
|
||||
"actions": [
|
||||
"Forehand and backhand swing drills with a soft toss",
|
||||
"Short mini-rally practice in pairs",
|
||||
"Footwork ladder exercises to improve agility",
|
||||
"A final fun tournament with rotated partners"
|
||||
],
|
||||
"camera": "Court-level lateral tracking with overhead rally intermittents",
|
||||
"accents": [
|
||||
"tennis string micro-vibration and court micro-granular texture",
|
||||
"ball micro-fuzz and racquet grip micro-wrap"
|
||||
],
|
||||
"mood": "focused progression",
|
||||
"lighting": "bright morning sun with crisp shadows",
|
||||
"style": "youth coaching vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright community baseball clinic where coaches teach batting stance and throws (light/nostalgic)",
|
||||
"sceneVariants": [
|
||||
"Dirt infield with chalked base lines",
|
||||
"Tiny mitts and batting helmets lined up",
|
||||
"A wooden tee and soft plastic bats for beginners",
|
||||
"A scoreboard with friendly sponsor ads",
|
||||
"A water cooler and snack box near the dugout"
|
||||
],
|
||||
"actions": [
|
||||
"Tee-ball hitting practice with gentle cueing",
|
||||
"Underhand soft toss drills to improve eye-hand coordination",
|
||||
"Throwing technique with glove catch basics",
|
||||
"A celebratory snack-circle after rotational practice"
|
||||
],
|
||||
"camera": "Low infield angle with close-ups on bat-to-ball contact",
|
||||
"accents": [
|
||||
"dirt micro-granule spray at impact and glove leather micro-fiber",
|
||||
"chalk micro-edge on baseline"
|
||||
],
|
||||
"mood": "sunny tradition",
|
||||
"lighting": "clear midday sun with long shadows",
|
||||
"style": "community sports nostalgia"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Dim twilight family frisbee session where accuracy and fun are prioritized over competition (dark/relaxed)",
|
||||
"sceneVariants": [
|
||||
"A wide grassy meadow with frisbee arcs traced against the sky",
|
||||
"Blankets and a small picnic cooler nearby",
|
||||
"A parent coaching gentle underhand throws to a child",
|
||||
"A dog chasing after errant discs with joyous abandon",
|
||||
"Crickets beginning to chirp as light fades"
|
||||
],
|
||||
"actions": [
|
||||
"Basic throwing grip coaching and short-distance catches",
|
||||
"Passing drills in a small circle for accuracy",
|
||||
"A cooperative game to keep score only for laughs",
|
||||
"A concluding group cuddle and small treat"
|
||||
],
|
||||
"camera": "Side-tracking with slow focus pulls on disc arcs",
|
||||
"accents": [
|
||||
"disc micro-edge sheen and grass micro-fiber detail",
|
||||
"blanket micro-weave and cooler micro-condensation"
|
||||
],
|
||||
"mood": "easygoing play",
|
||||
"lighting": "soft twilight with warm last-light accents",
|
||||
"style": "laid-back family sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright children’s running club meeting where kids are coached on form and short sprints (light/energetic)",
|
||||
"sceneVariants": [
|
||||
"A park track loop with colored bibs for identification",
|
||||
"A stretching line with playful warm-up songs",
|
||||
"Small cones marking sprint distances",
|
||||
"A volunteer coach timing kids with a whistle",
|
||||
"A water station and fruit bowls at the finish"
|
||||
],
|
||||
"actions": [
|
||||
"Dynamic warm-ups with guided form correction",
|
||||
"Short sprint intervals with encouraging shouts",
|
||||
"Technique drills focusing on arm swing and posture",
|
||||
"A fun relay that ends with group celebration"
|
||||
],
|
||||
"camera": "Dynamic handheld tracker with slow-mo finishing shots",
|
||||
"accents": [
|
||||
"sneaker sole micro-tread and ribbon micro-flutter at finish",
|
||||
"sweat micro-bead and sunlight micro-rim on faces"
|
||||
],
|
||||
"mood": "buoyant drive",
|
||||
"lighting": "early morning sun with crisp contrast",
|
||||
"style": "youth fitness vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Dim evening parent-child yoga in a community hall focusing on bonding poses (dark/quiet)",
|
||||
"sceneVariants": [
|
||||
"Soft mats arranged in paired formations",
|
||||
"Candles (LED) creating a gentle circle glow",
|
||||
"An instructor guiding partner stretches with calm cues",
|
||||
"Parents and kids matching slow breaths",
|
||||
"A little corner with warm tea for after-class wind-down"
|
||||
],
|
||||
"actions": [
|
||||
"Gentle partner poses with mutual support and laughter",
|
||||
"Rhythmic breathing and slow surrender poses",
|
||||
"Guided relaxation with light touch adjustments",
|
||||
"A communal closing circle with gratitude statements"
|
||||
],
|
||||
"camera": "Soft static wide with close-ups on synchronized breathing and handholds",
|
||||
"accents": [
|
||||
"mat micro-texture and candle micro-halo soft bokeh",
|
||||
"fabric micro-weave on yoga clothing"
|
||||
],
|
||||
"mood": "connected calm",
|
||||
"lighting": "low warm LED candle simulation with soft fill",
|
||||
"style": "contemplative family wellness vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright community climbing wall for kids with harnesses and belayers teaching trust (light/adventurous)",
|
||||
"sceneVariants": [
|
||||
"Colorful handholds mapped into a beginner route",
|
||||
"Harnessed small climbers trying short verticals",
|
||||
"Belayers kneeling below offering calm cues",
|
||||
"A scoreboard showing top attempts and personal records",
|
||||
"A parent cheering after each successful top-out"
|
||||
],
|
||||
"actions": [
|
||||
"Belay safety checks and knot confirmations",
|
||||
"Guided foot placement and reach coaching",
|
||||
"Encouragement from below for weight-shift and trust",
|
||||
"A celebratory descent and quick debrief"
|
||||
],
|
||||
"camera": "Low-angle upward tracking to emphasize height and effort",
|
||||
"accents": [
|
||||
"chalk micro-powder and handhold micro-grit texture",
|
||||
"harness micro-strap weave and carabiner micro-shine"
|
||||
],
|
||||
"mood": "brave play",
|
||||
"lighting": "bright indoor climbing gym lights with clear fill",
|
||||
"style": "adventure learning vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright neighborhood obstacle course set up for a playful fitness day with timed runs (light/creative)",
|
||||
"sceneVariants": [
|
||||
"Cardboard tunnels and small hurdles painted by kids",
|
||||
"Parents timing with enthusiastic whistles",
|
||||
"A prize ribbon and silly trophies for effort",
|
||||
"A decorated finish arch made of balloons",
|
||||
"A refreshment table offering fruit and water"
|
||||
],
|
||||
"actions": [
|
||||
"Child runs the course with parents cheering at each station",
|
||||
"Careful crawling and jumping with safety spotters",
|
||||
"A scoreboard recording best attempts for fun",
|
||||
"Group stretch and cool-down games to end"
|
||||
],
|
||||
"camera": "Playful over-the-course coverage with POV obstacle inserts",
|
||||
"accents": [
|
||||
"cardboard micro-flake from scuffs and paint micro-brush strokes",
|
||||
"balloon micro-sheen and ribbon micro-fiber"
|
||||
],
|
||||
"mood": "inventive joy",
|
||||
"lighting": "bright outdoor sun with warm festival tone",
|
||||
"style": "community creative sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Dim evening family boxing fitness session using gloves and pads for safe drills (dark/energetic)",
|
||||
"sceneVariants": [
|
||||
"Soft-padded gloves and focus pads held by a parent",
|
||||
"A short skipping warm-up in a corner",
|
||||
"Coach correcting stance with careful demonstrations",
|
||||
"A wall mirror reflecting practiced jabs",
|
||||
"Music keeping the rhythm upbeat"
|
||||
],
|
||||
"actions": [
|
||||
"Basic jab-cross combos with gentle impact on pads",
|
||||
"Footwork rhythm drills to music",
|
||||
"Controlled breathing cues and safety reminders",
|
||||
"A playful 'best combo' contest at the end"
|
||||
],
|
||||
"camera": "Close punch-to-pad inserts and medium wide for footwork",
|
||||
"accents": [
|
||||
"glove micro-leather grain and pad micro-foam cell texture",
|
||||
"sweat micro-beads and mirror micro-reflection"
|
||||
],
|
||||
"mood": "empowered play",
|
||||
"lighting": "low gym lighting with spotlight accents",
|
||||
"style": "dynamic family fitness vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright school field-day relay with colorful batons and cheering classmates (light/communal)",
|
||||
"sceneVariants": [
|
||||
"Lane markers on a grassy field and teacher whistles",
|
||||
"Hand-painted team banners fluttering in the breeze",
|
||||
"Kids rehearsing baton handoffs behind the start line",
|
||||
"A loudspeaker announcing playful commentary",
|
||||
"A group photo area with class mascot"
|
||||
],
|
||||
"actions": [
|
||||
"Practice baton handoffs in pairs and small groups",
|
||||
"Short sprint segments with teacher-timed intervals",
|
||||
"A final relay race with rotating team members",
|
||||
"A podium-like cheer session in the end celebrating everyone"
|
||||
],
|
||||
"camera": "Wide field coverage with close-up handoff inserts and crowd reaction",
|
||||
"accents": [
|
||||
"baton micro-gloss and banner micro-fabric detail",
|
||||
"grass micro-blade and shoe micro-dust"
|
||||
],
|
||||
"mood": "schoolyard exuberance",
|
||||
"lighting": "bright midday field light with high-key fill",
|
||||
"style": "nostalgic community vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Bright skate-safety workshop for toddlers with plastic ramps and soft flooring (light/safe)",
|
||||
"sceneVariants": [
|
||||
"Bright foam mats with small learning ramps",
|
||||
"Tiny helmets and elbow pads hung on a low rack",
|
||||
"Instructors kneeling to demonstrate balance",
|
||||
"Stickers awarded for completing safety drills",
|
||||
"Parents guiding first steps with scooters"
|
||||
],
|
||||
"actions": [
|
||||
"Helmet fitting and gear adjustment with patient checks",
|
||||
"Guided balancing exercises with gentle pushes",
|
||||
"Slow supervised glide assisted by an instructor",
|
||||
"A small certificate awarded at the end"
|
||||
],
|
||||
"camera": "Kid-eye-level wide with macro on safety strap buckles",
|
||||
"accents": [
|
||||
"helmet micro-vent and foam mat micro-cell detail",
|
||||
"sticker micro-gloss and strap micro-stitch"
|
||||
],
|
||||
"mood": "secure encouragement",
|
||||
"lighting": "bright indoor play center lights with soft diffusion",
|
||||
"style": "instructional safety vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Sports with Kids",
|
||||
"scene": "Dim twilight parkour basics class where teens teach younger kids safe rolls and vaults (dark/exhilarating)",
|
||||
"sceneVariants": [
|
||||
"Low wooden obstacles set on a grassy knoll",
|
||||
"A watched demo of a safe roll on soft turf",
|
||||
"Parents observing at a careful distance",
|
||||
"Glow markers outlining safe landing zones",
|
||||
"A coach clapping rhythmically to time runs"
|
||||
],
|
||||
"actions": [
|
||||
"Drills emphasizing safe rolls and falls",
|
||||
"Vault progression using low-height obstacles with spotters",
|
||||
"Confidence-building small challenges scaled to age",
|
||||
"A closing cool-down and reflection circle"
|
||||
],
|
||||
"camera": "Low fast-moving tracking to emphasize motion and safe landings",
|
||||
"accents": [
|
||||
"turf micro-fiber and obstacle micro-wear marks",
|
||||
"glow marker micro-edge in dusk light"
|
||||
],
|
||||
"mood": "adventurous focus",
|
||||
"lighting": "soft twilight with glow marker accents",
|
||||
"style": "urban youth skill vignette"
|
||||
}
|
||||
]
|
||||
227
src/data/childhood_and_family_toys.json
Normal file
227
src/data/childhood_and_family_toys.json
Normal file
@ -0,0 +1,227 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "A living room floor strewn with colorful building blocks (light/creative)",
|
||||
"sceneVariants": [
|
||||
"A ramp and bridge built across a carpeted patch",
|
||||
"Instruction cards half-followed and half-ignored",
|
||||
"A small tower teetering dangerous and tall",
|
||||
"A parent peeking from a sofa with a cup of tea",
|
||||
"A pet sniffing the newly erected fortress"
|
||||
],
|
||||
"actions": [
|
||||
"A child carefully slots a final piece and cheers erupt",
|
||||
"Blocks are repurposed into a garage for toy cars",
|
||||
"A sibling knocks a tower and both pause before laughter",
|
||||
"A quick rebuild session experiments with new structural ideas"
|
||||
],
|
||||
"camera": "Low tabletop dolly along the block course with close joint macros",
|
||||
"accents": [
|
||||
"plastic sheen micro-reflections and carpet fiber micro-detail",
|
||||
"bright primary-color pop against neutral room tones"
|
||||
],
|
||||
"mood": "inventive play",
|
||||
"lighting": "soft daylight with warm interior fill",
|
||||
"style": "domestic creative vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "A tea party with dolls on a small table set in the garden (light/whimsical)",
|
||||
"sceneVariants": [
|
||||
"Porcelain cups and mismatched saucers arranged neatly",
|
||||
"A circle of plush dolls and one very bossy action figure",
|
||||
"A hand-painted 'reserved' sign for the favorite doll",
|
||||
"A miniature cake made from playdough",
|
||||
"A hay-woven placemat under the set"
|
||||
],
|
||||
"actions": [
|
||||
"A host invites a stuffed guest to 'pour' imaginary tea",
|
||||
"A polite exchange of crumbs and stuffed titles occurs",
|
||||
"A sudden ant invasion is handled with heroic swats and giggles",
|
||||
"A polite goodbye is staged before nap-time"
|
||||
],
|
||||
"camera": "Child-eye level with soft bokeh on foliage and doll faces",
|
||||
"accents": [
|
||||
"fabric plush micro-fuzz and ceramic glaze micro-speculars",
|
||||
"hand-painted toy detail micro-texture"
|
||||
],
|
||||
"mood": "gentle domestic fantasy",
|
||||
"lighting": "dappled garden sunlight with soft fill",
|
||||
"style": "storybook domestic scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "Remote-control car race across a backyard obstacle course (day/energetic)",
|
||||
"sceneVariants": [
|
||||
"Tiny ramps fashioned from cardboard and sticks",
|
||||
"A launch line with tape and start-count shouts",
|
||||
"Spectator siblings behind a cardboard grandstand",
|
||||
"A finish-line flag on a broomstick",
|
||||
"A pit-stop table with spare batteries and tools"
|
||||
],
|
||||
"actions": [
|
||||
"Cars roar and slide through improvised turns",
|
||||
"A battery swap and quick tune adjust performance mid-race",
|
||||
"An upset winner is celebrated with a victory lap",
|
||||
"A crash leads to cooperative repairs and shared lessons"
|
||||
],
|
||||
"camera": "Low, fast-paced tracking with occasional slo-mo jumps",
|
||||
"accents": [
|
||||
"wheel tread micro-dust and controller LED micro-glow",
|
||||
"cardboard corrugation micro-detail"
|
||||
],
|
||||
"mood": "competitive delight",
|
||||
"lighting": "bright daylight with crisp shadows",
|
||||
"style": "playground sports vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "A shelf of classic wooden toys in a quiet nursery (light/timeless)",
|
||||
"sceneVariants": [
|
||||
"Stacking rings in graduated hues",
|
||||
"A wooden pull-toy with a painted face",
|
||||
"Simple geometric puzzles arranged by color",
|
||||
"A handcrafted rocking horse with gentle wear",
|
||||
"Labels with maker's name handwritten on the underside"
|
||||
],
|
||||
"actions": [
|
||||
"A toddler reaches for a ring and learns size order",
|
||||
"A parent demonstrates gentle push-and-pull motion",
|
||||
"Small hands drum gentle rhythms on a wooden block",
|
||||
"A quiet bedtime ritual places one toy under a pillow"
|
||||
],
|
||||
"camera": "Soft still-frame closeups highlighting grain and joinery",
|
||||
"accents": [
|
||||
"wood grain micro-fiber and worn paint micro-chips",
|
||||
"soft cloth and knit micro-texture nearby"
|
||||
],
|
||||
"mood": "calm, enduring warmth",
|
||||
"lighting": "soft morning nursery light with warm fill",
|
||||
"style": "heritage child vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "A chaotic board-game night with family and animated rules disputes (light/nostalgic)",
|
||||
"sceneVariants": [
|
||||
"Cards mid-flight as a surprise dice roll upends plans",
|
||||
"A well-loved board with taped corners and faded print",
|
||||
"A timer and scorecards scribbled with colored pencils",
|
||||
"Snack bowls and a knocked-over juice cup near the table",
|
||||
"A delighted grandparent remembering rule variations"
|
||||
],
|
||||
"actions": [
|
||||
"Players trade playful taunts and good-natured bargains",
|
||||
"A strategic move flips the leaderboard and sparks gasps",
|
||||
"A rule is debated and house tradition is invoked",
|
||||
"A final laugh and handshake close the night"
|
||||
],
|
||||
"camera": "Overhead table establish with quick cut-in reaction inserts",
|
||||
"accents": [
|
||||
"card stock micro-curl and dice face micro-detail",
|
||||
"pencil graphite micro-marking on score sheets"
|
||||
],
|
||||
"mood": "warm rivalry",
|
||||
"lighting": "cozy evening lamp with warm shadows",
|
||||
"style": "family game-night documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "A worktable of art-and-craft toys with paints, glue and tiny scissors (light/creative)",
|
||||
"sceneVariants": [
|
||||
"Paint-splattered smocks and a drying line of tiny masterpieces",
|
||||
"A glue gun mid-press and small sequins waiting",
|
||||
"Paper templates with pencil outlines and scissor cut paths",
|
||||
"A reward sticker sheet half-used",
|
||||
"A small cardboard stage for puppet performances"
|
||||
],
|
||||
"actions": [
|
||||
"Glueing, painting, and glitter application generate proud displays",
|
||||
"A collaborative mural is taped to the wall after completion",
|
||||
"Careful trimming yields a delicate paper crown for a play",
|
||||
"A parental 'how-to' tip saves a craft from collapse"
|
||||
],
|
||||
"camera": "Macro hand-and-material shots with overhead composition of the worktable",
|
||||
"accents": [
|
||||
"paint micro-splatter and adhesive gloss micro-reflection",
|
||||
"paper fiber micro-tear detail"
|
||||
],
|
||||
"mood": "inventive hands-on joy",
|
||||
"lighting": "bright studio-style desk light",
|
||||
"style": "creative process vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "Electronic learning toy glowing with interactive prompts at a kitchen table (light/educational)",
|
||||
"sceneVariants": [
|
||||
"A tablet-like toy with colorful icons and tactile buttons",
|
||||
"A child responding with voice and clapping to auditory cues",
|
||||
"A progress light showing levels completed",
|
||||
"Sticky notes with words learned over weeks",
|
||||
"A parent timing short play sessions and applauding milestones"
|
||||
],
|
||||
"actions": [
|
||||
"Child completes a letter-sorting mini-game and receives a cheerful chime",
|
||||
"A firmware-like update is mimicked when new content is introduced",
|
||||
"A cooperative parent-child play moment reinforces learning",
|
||||
"A small frustration is soothed by guided encouragement"
|
||||
],
|
||||
"camera": "Close-screen capture with over-shoulder parental inserts",
|
||||
"accents": [
|
||||
"LCD pixel micro-grid and rubber-button micro-texture",
|
||||
"cheerful voice chime micro-waveform details"
|
||||
],
|
||||
"mood": "curious empowerment",
|
||||
"lighting": "neutral table light with screen glow",
|
||||
"style": "edutainment vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "Puzzle corner with jigsaws half-complete on a rainy afternoon (dark/cozy)",
|
||||
"sceneVariants": [
|
||||
"Edge pieces sorted in small bowls by color",
|
||||
"A nearly-finished corner showing a telling landmark",
|
||||
"A cat asleep across a corner of the puzzle",
|
||||
"A cup of tea steaming beside reference picture",
|
||||
"A child's small hands fitting a long-awaited piece"
|
||||
],
|
||||
"actions": [
|
||||
"A triumphant click as the last piece joins and whoops erupt",
|
||||
"A strategic swap of pieces reveals a previously hidden match",
|
||||
"A parent and child exchange hints in soft whispers",
|
||||
"The solved puzzle is admired and set aside to dry"
|
||||
],
|
||||
"camera": "Close tactile puzzle-piece macro with gentle overhead composition",
|
||||
"accents": [
|
||||
"cardboard edge micro-lay and printed image grain micro-detail",
|
||||
"tea steam micro-threads and cozy fabric micro-weave"
|
||||
],
|
||||
"mood": "satisfied calm",
|
||||
"lighting": "soft interior lamp with rainy window contrast",
|
||||
"style": "quiet domestic vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Toys",
|
||||
"scene": "A small collection of action figures staged into a sprawling adventure (light/adventurous)",
|
||||
"sceneVariants": [
|
||||
"Figures perched on toy furniture forming a makeshift city",
|
||||
"Cardboard cutouts serving as mountains and caves",
|
||||
"A makeshift 'rescue' rope spanning two chairs",
|
||||
"A child voicing multiple characters and effects",
|
||||
"A tiny flag planted as a mission accomplished marker"
|
||||
],
|
||||
"actions": [
|
||||
"Dramatic rescues and perilous climbs are whispered across scenes",
|
||||
"A plot twist introduces a sudden ally figure",
|
||||
"Toy parts are combined to create new hybrid characters",
|
||||
"A parent helps with an elaborate set-piece that needed steadiness"
|
||||
],
|
||||
"camera": "Toy-level wide establishing with action close-ups and child's narrating POV",
|
||||
"accents": [
|
||||
"plastic articulation micro-joint detail and paint scuff micro-lines",
|
||||
"paper set texture micro-fibers"
|
||||
],
|
||||
"mood": "heroic imagination",
|
||||
"lighting": "bright playroom daylight",
|
||||
"style": "mini-epic play cinema"
|
||||
}
|
||||
]
|
||||
127
src/data/childhood_and_family_vacations.json
Normal file
127
src/data/childhood_and_family_vacations.json
Normal file
@ -0,0 +1,127 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Vacations",
|
||||
"scene": "Seaside cottage with children building sandcastles at dawn (day/peaceful)",
|
||||
"sceneVariants": [
|
||||
"A small cottage with peeling paint and a beach path",
|
||||
"Early-morning tide pools discovered by curious fingers",
|
||||
"Buckets and spades arranged like a miniature construction crew",
|
||||
"A kettle steaming on the cottage stove after a dawn swim",
|
||||
"A parent pointing out shells and tiny crabs"
|
||||
],
|
||||
"actions": [
|
||||
"Kids collaborate on a grand sandcastle with moat and flags",
|
||||
"A quiet walk along the waterline collects smooth treasures",
|
||||
"A simple breakfast is shared with sea-salted air",
|
||||
"A midday nap in shade after tireless play"
|
||||
],
|
||||
"camera": "Low beach-level tracking with wide coastal establishes and tactile sand macros",
|
||||
"accents": [
|
||||
"salt-spray micro-speculars and wet-sand micro-grain",
|
||||
"woven basket and towel fabric micro-detail"
|
||||
],
|
||||
"mood": "leisurely wonder",
|
||||
"lighting": "soft golden morning sunlight",
|
||||
"style": "nostalgic coastal vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Vacations",
|
||||
"scene": "Mountain cabin retreat with hiking and marshmallow fires (day/adventurous)",
|
||||
"sceneVariants": [
|
||||
"Pine-scented clearing with a small wood cabin",
|
||||
"Kids with tiny backpacks and a map",
|
||||
"A twilight campfire with skewers and marshmallows",
|
||||
"A valley vista visible from a nearby ridge",
|
||||
"Boot prints and a shared thermos near a trailhead"
|
||||
],
|
||||
"actions": [
|
||||
"A short family hike discovers a hidden waterfall",
|
||||
"Trail games teach navigation and observation",
|
||||
"Campfire songs and sticky fingers end the day",
|
||||
"A stargazing moment follows with whispered constellations"
|
||||
],
|
||||
"camera": "Dynamic trail-following with wide panoramas and ember-close macros",
|
||||
"accents": [
|
||||
"needle-litter micro-detail and ember micro-glow",
|
||||
"canvas pack strap micro-weave"
|
||||
],
|
||||
"mood": "rugged togetherness",
|
||||
"lighting": "crisp daylight on ridges, warm firelight at night",
|
||||
"style": "outdoor family documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Vacations",
|
||||
"scene": "City break exploring museums and street food stalls (day/curious)",
|
||||
"sceneVariants": [
|
||||
"Cobblestone lanes with colorful market stalls",
|
||||
"A hands-on museum exhibit with interactive panels",
|
||||
"Street vendors selling local snacks and small treats",
|
||||
"A busker performing near a square",
|
||||
"A rooftop lookout showing city rooftops"
|
||||
],
|
||||
"actions": [
|
||||
"Children sample a new snack and react to unfamiliar flavors",
|
||||
"A family museum scavenger hunt yields laughter and stickers",
|
||||
"Transit rides become mini-adventures with map reading",
|
||||
"An evening ice-cream closes a busy cultural day"
|
||||
],
|
||||
"camera": "Street-level wide with vibrant food close-ups and museum detail shots",
|
||||
"accents": [
|
||||
"vendor canopy micro-texture and glazed pastry micro-shine",
|
||||
"museum exhibit micro-text and tactile interaction macro"
|
||||
],
|
||||
"mood": "stimulated curiosity",
|
||||
"lighting": "varied urban daylight and indoor gallery light",
|
||||
"style": "cultural travel vignette"
|
||||
},
|
||||
{
|
||||
"subGenre": "Vacations",
|
||||
"scene": "Road trip with kids piled into a car, singing and snacking (day/nomadic)",
|
||||
"sceneVariants": [
|
||||
"A packed car trunk with travel games and a cooler",
|
||||
"Map unfolded on a passenger seat with marked stops",
|
||||
"Scenic viewpoints with short photo stops",
|
||||
"A roadside diner with pie and neon signage",
|
||||
"A quirky roadside attraction visited for fun"
|
||||
],
|
||||
"actions": [
|
||||
"Singing along to a playlist and shouting the chorus together",
|
||||
"A spontaneous stop discovers a hidden picnic spot",
|
||||
"Window-drawn crayon drawings mark small milestones",
|
||||
"A shared sundae in a roadside diner becomes a trip highlight"
|
||||
],
|
||||
"camera": "Car-level pans with interior close-ups and roadside establishes",
|
||||
"accents": [
|
||||
"vinyl seat micro-texture and map-paper micro-fiber",
|
||||
"neon sign micro-reflection on windshield"
|
||||
],
|
||||
"mood": "joyful transit",
|
||||
"lighting": "variable daylight through moving windows",
|
||||
"style": "road-trip family cinema"
|
||||
},
|
||||
{
|
||||
"subGenre": "Vacations",
|
||||
"scene": "Camping on an island with small boat access and tide exploration (day/natural)",
|
||||
"sceneVariants": [
|
||||
"A tiny island with scattered boulders and scrub",
|
||||
"A dinghy moored to a makeshift dock",
|
||||
"A tidepool classroom with sea urchins and anemones",
|
||||
"A single tent with a protective breeze line",
|
||||
"A simple stove boiling water for a community meal"
|
||||
],
|
||||
"actions": [
|
||||
"Children explore tide pools with guided care and wonder",
|
||||
"A communal dinner over a camp stove shares small discoveries",
|
||||
"Nighttime lull is punctuated by distant water sounds",
|
||||
"A morning tide charting becomes an early lesson in nature cycles"
|
||||
],
|
||||
"camera": "Aerial establishes of island and close tidepool macros with wet-surface caustics",
|
||||
"accents": [
|
||||
"barnacle-and-shell micro-texture and wet-rock micro-sheen",
|
||||
"small boat rope weave micro-detail"
|
||||
],
|
||||
"mood": "intimate exploration",
|
||||
"lighting": "crisp coastal daylight with reflective highlights",
|
||||
"style": "marine nature vignette"
|
||||
}
|
||||
]
|
||||
577
src/data/cinematic_and_film_styles_action_movies.json
Normal file
577
src/data/cinematic_and_film_styles_action_movies.json
Normal file
@ -0,0 +1,577 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight rooftop chase where a courier leaps between HVAC units as drones cut the sky (dark/high-octane)",
|
||||
"sceneVariants": [
|
||||
"Rain-slick HVAC panels reflecting neon",
|
||||
"A skyline pierced by drone searchlights",
|
||||
"A loose tarpaulin flapping like a flag",
|
||||
"A rooftop water tank with rusted ladder",
|
||||
"A blinking beacon on a distant skyscraper"
|
||||
],
|
||||
"actions": [
|
||||
"Courier vaults a gap, twisting mid-air to avoid a rotating drone rotor",
|
||||
"An assailant fires a grappling hook that snags and causes a near-fall",
|
||||
"Cut to handheld POV down an alley as backup arrives in roaring motorcycles",
|
||||
"A final leap onto a moving crane arm leads to a nail-biting swing to safety"
|
||||
],
|
||||
"camera": "Dynamic gimbal sweeps, crunch cuts, and POV whip-pans to sell vertigo",
|
||||
"accents": [
|
||||
"rain micro-sheen on metal and drone micro-lens flares",
|
||||
"fabric micro-flutter and rooftop micro-grit"
|
||||
],
|
||||
"mood": "adrenalized urgency",
|
||||
"lighting": "high-contrast neon with wet-surface reflections",
|
||||
"style": "contemporary parkour action set-piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Sunrise desert convoy ambush where armored transports roll and dust explodes into combat (light/brutal)",
|
||||
"sceneVariants": [
|
||||
"A line of matte-armored trucks cutting a wake of dust",
|
||||
"Heat shimmer distorting the horizon",
|
||||
"Hidden berms and improvised roadblocks",
|
||||
"A crate of supplies thrown open revealing tactical gear",
|
||||
"A satellite dish picking up distant chatter"
|
||||
],
|
||||
"actions": [
|
||||
"Ambush unfolds with simultaneous IED bursts and turret suppressive fire",
|
||||
"A protagonist leaps from a moving truck to disable a harpoon launcher",
|
||||
"Cut to split-screen of driver fighting steering while rear gunners return fire",
|
||||
"A final controlled explosion seals a breach and forces retreat"
|
||||
],
|
||||
"camera": "Telephoto compression for compressed chaos, intercut with in-vehicle POV",
|
||||
"accents": [
|
||||
"dust micro-particulate arcs and metal micro-pitting on vehicle panels",
|
||||
"explosive micro-debris and fabric micro-ash"
|
||||
],
|
||||
"mood": "raw survival",
|
||||
"lighting": "hot dawn sun with blown highlights and deep silhouettes",
|
||||
"style": "military-grade action sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dusk subway takedown where hand-to-hand combats erupt between closing doors and screeching brakes (dark/contained)",
|
||||
"sceneVariants": [
|
||||
"Fluorescent carriage tubes flickering",
|
||||
"A train sliding into a tunnel with sparks",
|
||||
"A crowd pressed against carriage windows",
|
||||
"Overhead route maps with blinking sections",
|
||||
"Seats stained with spilled coffee and scuff marks"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonist fights through a corridor, using poles and straps as improvised weapons",
|
||||
"Opponents slide and leverage momentum as car decelerates, each exchange punctuated by a screech",
|
||||
"Cut to a dramatic shove that sends an antagonist into a closing door with clang",
|
||||
"A final lunge into the driver cabin halts the train just before a wall"
|
||||
],
|
||||
"camera": "Tight handheld choreography, ramped frame rates for impact, and snappy inserts",
|
||||
"accents": [
|
||||
"metal micro-scratch on poles and seat micro-fabric tear",
|
||||
"glass micro-vibration and brake micro-spark details"
|
||||
],
|
||||
"mood": "claustrophobic intensity",
|
||||
"lighting": "harsh practical fluorescents with emergency reds",
|
||||
"style": "urban kinetic action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight bank vault infiltration where lasers and sensors force silent acrobatics (dark/stealth)",
|
||||
"sceneVariants": [
|
||||
"A polished vault door with intricate tumblers",
|
||||
"Reflective marble floors and minimalist lighting",
|
||||
"A server rack tucked in a secure room",
|
||||
"Laser grids crisscrossing a display chamber",
|
||||
"A rooftop access hatch with rain dripping in"
|
||||
],
|
||||
"actions": [
|
||||
"Acrobat maneuvers through laser grids using mirrored panels and slow precision",
|
||||
"Tech operator times floor vibrations to bypass pressure mats",
|
||||
"Cut to micro-inserts of lock tumblers rotating with satisfying clicks",
|
||||
"A silent escape cloaked by a simultaneous power outage creates a tense near-miss"
|
||||
],
|
||||
"camera": "Silent glide cams, micro-focus inserts on gear and subtle wide reveals",
|
||||
"accents": [
|
||||
"steel micro-polish and laser micro-beam clarity",
|
||||
"marble micro-vein details and cable micro-wrap"
|
||||
],
|
||||
"mood": "tense elegance",
|
||||
"lighting": "cold minimal top-lights with sharp laser highlights",
|
||||
"style": "slick heist action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn mountain monastery siege where monks and mercenaries collide in a vertical assault (light/epic)",
|
||||
"sceneVariants": [
|
||||
"Terraced stone courtyards clinging to sheer cliffs",
|
||||
"Prayer flags snapping along ridgelines",
|
||||
"A rope bridge taut with travelers",
|
||||
"A bell tower looming above weathered stone",
|
||||
"Carved reliefs worn by centuries of wind"
|
||||
],
|
||||
"actions": [
|
||||
"Mercenaries rappel from helicopters, monks counter with improvised traps",
|
||||
"A protagonist engages in vertical combat along a cliff face using improvised holds",
|
||||
"Cut to a sweeping crane pull showing the scale of the assault",
|
||||
"A final collapse of a bridge under controlled charges splits the battlefield"
|
||||
],
|
||||
"camera": "Epic crane and helicopter plates mixed with tight climbing POV",
|
||||
"accents": [
|
||||
"stone micro-erosion and rope micro-fray under tension",
|
||||
"bell micro-harmonic ripple and flag micro-thread"
|
||||
],
|
||||
"mood": "grand peril",
|
||||
"lighting": "crisp mountain daylight with harsh shadows",
|
||||
"style": "adventure-action set-piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Night embassy extraction where protocol and politics clash as extraction goes hot (dark/political action)",
|
||||
"sceneVariants": [
|
||||
"Diplomatic compounds with high security fences",
|
||||
"A black SUV with darkened windows idling",
|
||||
"Security cameras surveilling landscaped gardens",
|
||||
"A cigarette-smoked diplomatic envelope delivered in haste",
|
||||
"A backup helicopter lined up on a nearby lawn"
|
||||
],
|
||||
"actions": [
|
||||
"Operatives escort a VIP through multi-layered checkpoints while under sudden fire",
|
||||
"A diplomatic cover is shredded as a shootout erupts; rules of engagement are tested",
|
||||
"Cut to a tense rooftop extraction with rope-fastened evacuations",
|
||||
"A final moral standoff where the protagonist chooses to stay behind to create a path"
|
||||
],
|
||||
"camera": "Tactical medium shots with incursive handheld during firefights and strategic wide extractions",
|
||||
"accents": [
|
||||
"glass micro-reflection on embassy windows and car micro-paint micro-sheen",
|
||||
"smoke micro-haze and rotor micro-dust"
|
||||
],
|
||||
"mood": "tense moral complexity",
|
||||
"lighting": "mixed architectural practicals with emergency strobes",
|
||||
"style": "espionage-action thriller"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Sunlit highway pile-up where a protagonist uses a car as a makeshift weapon to stop a convoy (light/brutal)",
|
||||
"sceneVariants": [
|
||||
"Skid marks across hot tarmac",
|
||||
"Cars scattered with shattered glass glittering",
|
||||
"A fuel tanker idling with hazard lights",
|
||||
"Emergency flares forming a perimeter",
|
||||
"A roadside diner with a shocked witness crowd"
|
||||
],
|
||||
"actions": [
|
||||
"A ramming sequence uses physics and choreography to create controlled mayhem",
|
||||
"Protagonist leaps between moving vehicles to disable drivers",
|
||||
"Cut to slow-motion ricochets of debris accenting critical beats",
|
||||
"A last-ditch flip of a vehicle blocks a corridor and forces surrender"
|
||||
],
|
||||
"camera": "High-impact crash cams, stabilized car rigs, and handheld pickups on foot pursuits",
|
||||
"accents": [
|
||||
"glass micro-shard sparkles and tire micro-scuff residue",
|
||||
"metal micro-fold and fuel micro-sheen under sun"
|
||||
],
|
||||
"mood": "unrelenting intensity",
|
||||
"lighting": "bright harsh midday with strong specular highlights",
|
||||
"style": "vehicular spectacle action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight data heist in an underground mall where parkour and hacking synchronize (dark/tech-action)",
|
||||
"sceneVariants": [
|
||||
"Escalator voids with flickering advertisement panels",
|
||||
"A closed kiosk with shuttered steel",
|
||||
"A maintenance corridor with low ceilings",
|
||||
"A server closet behind a retail fitting room",
|
||||
"Security dogs pacing at a distant barrier"
|
||||
],
|
||||
"actions": [
|
||||
"Runner navigates mall architecture with wall-runs and silent leaps",
|
||||
"Hacker times door controls to open and close corridors for safe passage",
|
||||
"Cut to a tense cable splice and a heartbeat-synced countdown",
|
||||
"An escape through the parking structure ends in a physical handoff to a waiting motorbike"
|
||||
],
|
||||
"camera": "Fluid parkour gimbals, ceiling-mounted rails and monitor overlay screens",
|
||||
"accents": [
|
||||
"ad micro-pixel bleed and shutter micro-rattle",
|
||||
"concrete micro-texture and cable micro-wrap"
|
||||
],
|
||||
"mood": "slick tension",
|
||||
"lighting": "low retail practicals with emergency exit glows",
|
||||
"style": "urban tech-heist action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn ski-lift showdown where an antagonist uses the slope for tactical advantage (light/wild)",
|
||||
"sceneVariants": [
|
||||
"Snow-blasted ridgelines and chairlift cables",
|
||||
"A small mountain hut with smoke curling",
|
||||
"A line of skis and poles leaning upright",
|
||||
"Goggles frosted with breath",
|
||||
"A maintenance cat track cutting across the slope"
|
||||
],
|
||||
"actions": [
|
||||
"A high-speed downhill pursuit includes ski jumps and near-miss trees",
|
||||
"An antagonist cuts lift cables forcing dramatic collapses",
|
||||
"Cut to an alpine hand-to-hand at the top of a chair as wind whips snow",
|
||||
"A final leap onto a rescue sled saves a key character"
|
||||
],
|
||||
"camera": "Helicopter aerials mixed with on-slope helmet cams and slow-motion powder bursts",
|
||||
"accents": [
|
||||
"snow micro-flake spray and fabric micro-fleece texture",
|
||||
"metal micro-rivet on bindings and cable micro-tension"
|
||||
],
|
||||
"mood": "white-knuckle exhilaration",
|
||||
"lighting": "bright crystalline alpine sun",
|
||||
"style": "extreme-environment action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Night armored train assault where the protagonist infiltrates via hanging from the undercarriage (dark/gritty)",
|
||||
"sceneVariants": [
|
||||
"Riveted steel underbelly with moving pistons",
|
||||
"Low train bleachers with stacked cargo",
|
||||
"Sparks from wheel-rail friction",
|
||||
"A coal-smudged lantern swinging from a coupler",
|
||||
"A map pinned to a crate showing rail nodes"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonist clings to the underside as the train barrels through canyon",
|
||||
"An onboard scuffle erupts in a high-noise confined corridor",
|
||||
"Cut to a daring leap between cars amid exploding shells",
|
||||
"A final sabotage causes the train to roll to a stop at a predetermined canyon"
|
||||
],
|
||||
"camera": "Low-angle undercarriage mounts, high-speed rails and tight interior combat shots",
|
||||
"accents": [
|
||||
"steel micro-oxidation and coal micro-smudge on surfaces",
|
||||
"wheel micro-spark and oil micro-film"
|
||||
],
|
||||
"mood": "grit-fueled suspense",
|
||||
"lighting": "pyro practicals and passing light shafts",
|
||||
"style": "industrial action spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn coastal cliff rescue where explosives and surf dynamics interplay during extraction (light/daring)",
|
||||
"sceneVariants": [
|
||||
"Sheer cliff faces scalloped by waves",
|
||||
"A small rescue zodiac churning foam",
|
||||
"Cave mouth dark against morning glare",
|
||||
"Ropes and pitons hammered into prehistoric hold",
|
||||
"A tossed flare igniting gull alarms"
|
||||
],
|
||||
"actions": [
|
||||
"Extraction rigging is set as waves pound the cliff base",
|
||||
"A timed charge dislodges a boulder to create a safe descent path",
|
||||
"Cut to point-of-view rope ascend with surf spray whipping",
|
||||
"A last-second tow from the zodiac pulls the survivor clear of the undertow"
|
||||
],
|
||||
"camera": "High-angle cliff plates mixed with wet helmet POV and dynamic water picks",
|
||||
"accents": [
|
||||
"rock micro-strata and rope micro-fray under load",
|
||||
"water micro-spray and foam micro-lattice"
|
||||
],
|
||||
"mood": "heroic adrenaline",
|
||||
"lighting": "crisp seaside dawn with high specular highlights",
|
||||
"style": "rescue-action set-piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight carnival heist where a protagonist uses the chaos of rides to slip past guards (dark/masked)",
|
||||
"sceneVariants": [
|
||||
"Carousel lights spinning into bokeh",
|
||||
"A clown mask discarded in a trash bin",
|
||||
"Prize booths with dangling toys",
|
||||
"An underground passage opening under a tent",
|
||||
"A popcorn cart steaming in the humid air"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonist synchronizes movement to ride rhythms and uses crowds as cover",
|
||||
"A daring zip-line from the Ferris wheel allows entry to a locked vault tent",
|
||||
"Cut to a distraction sequence where performers ignite scripted commotion",
|
||||
"An escape through a maze of mirrors confuses pursuit and allows egress"
|
||||
],
|
||||
"camera": "Whip-pans, tilt-shifts, and dizzying ride POVs to mimic carnival vertigo",
|
||||
"accents": [
|
||||
"light micro-bokeh and fabric micro-sheen on prizes",
|
||||
"zip-line micro-cable and mirror micro-smear"
|
||||
],
|
||||
"mood": "playful danger",
|
||||
"lighting": "warm carnival practicals against night",
|
||||
"style": "stylized caper-action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn border standoff where mounted rangers intercept a smuggled convoy during a lightning storm (light/electric)",
|
||||
"sceneVariants": [
|
||||
"Thunderheads rolling in from the plains",
|
||||
"Mounted figures flaring cloaks in wind",
|
||||
"A convoy darting across salt flats",
|
||||
"Lightning arcing to distant pylons",
|
||||
"A smoke plume marking a disabled vehicle"
|
||||
],
|
||||
"actions": [
|
||||
"Rangers coordinate a mounted pincer to trap the convoy",
|
||||
"A sudden lightning strike electrifies a metal fence creating hazard",
|
||||
"Cut to slow-motion as horses vault across a disabled vehicle divide",
|
||||
"A final capture as the storm momentarily masks audio and movement"
|
||||
],
|
||||
"camera": "Dynamic wide storm plates with slowed high-impact cuts during lightning",
|
||||
"accents": [
|
||||
"horse micro-hair in wind and lightning micro-streak detail",
|
||||
"metal micro-arc residue and cloth micro-lash"
|
||||
],
|
||||
"mood": "elemental confrontation",
|
||||
"lighting": "low ambient storm with bright lightning key moments",
|
||||
"style": "weather-driven action set-piece"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight dockyard showdown where container cranes cast monolithic shadows over combat (dark/industrial)",
|
||||
"sceneVariants": [
|
||||
"Towering cranes with dangling hooks",
|
||||
"Stacks of colorful shipping containers",
|
||||
"A waterline reflecting spotlights",
|
||||
"A forklift idling under a lamp",
|
||||
"A crewman whistle left on a hook"
|
||||
],
|
||||
"actions": [
|
||||
"Combatants use container edges to launch themselves like parkour athletes",
|
||||
"A crane operator inadvertently aids one side by swinging cargo",
|
||||
"Cut to a sequence where containers are used as low ceilings, requiring tight CQB",
|
||||
"A final descent into the water separates the adversaries"
|
||||
],
|
||||
"camera": "Crane plates, tight container corner candids and high-indexed POV throws",
|
||||
"accents": [
|
||||
"paint micro-chip on containers and hook micro-rivet",
|
||||
"water micro-lrip and lamp micro-glint"
|
||||
],
|
||||
"mood": "concrete menace",
|
||||
"lighting": "high-contrast industrial night lighting",
|
||||
"style": "urban industrial action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn hidden lab breakout where containment fails and a small team must evacuate a volatile prototype (light/racing)",
|
||||
"sceneVariants": [
|
||||
"A containment dome with crystalline seals",
|
||||
"A coolant line steaming as pressure increases",
|
||||
"Warning panels blinking orange",
|
||||
"A sealed entry corridor with biohazard tape",
|
||||
"A manual release lever tarnished from use"
|
||||
],
|
||||
"actions": [
|
||||
"Team executes a timed extraction while avoiding volatile bursts",
|
||||
"A containment failure causes a localized shockwave and forced reroute",
|
||||
"Cut to frantic manual overrides and improvised shielding",
|
||||
"A final toss-box launches the prototype into a safe remote silo"
|
||||
],
|
||||
"camera": "Tight lab handheld with rapid inserts on gauges and breathing masks",
|
||||
"accents": [
|
||||
"glass micro-crackle and coolant micro-vapor",
|
||||
"panel micro-LED flicker and cable micro-wrap"
|
||||
],
|
||||
"mood": "procedural adrenaline",
|
||||
"lighting": "sterile lab glow with alarm strobe",
|
||||
"style": "science-action thriller"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Night market pursuit where alleyways braid into a labyrinth and the chase becomes a spectacle (dark/elastic)",
|
||||
"sceneVariants": [
|
||||
"Lantern-lit stalls with cloth maps",
|
||||
"A maze of hanging laundry creating tunnels",
|
||||
"A rooftop tile path with narrow gutters",
|
||||
"A chorus of market vendors shouting",
|
||||
"A stray dog weaving through legs"
|
||||
],
|
||||
"actions": [
|
||||
"The protagonist vaults through stalls, using vendor carts as obstacles",
|
||||
"A swift change of disguise confuses pursuers for a heartbeat",
|
||||
"Cut to a rooftop leap across adjacent stalls with a near-slip",
|
||||
"A final stall collapse forms a diversion enabling escape"
|
||||
],
|
||||
"camera": "Nimble shoulder-rig with tight alley inserts and elevated jump plates",
|
||||
"accents": [
|
||||
"cloth micro-weave on stalls and wooden micro-grain on carts",
|
||||
"dust micro-motes kicked in feet and vendor micro-signage"
|
||||
],
|
||||
"mood": "breathless chase joy",
|
||||
"lighting": "warm market practicals with cool shadow",
|
||||
"style": "street-level chase action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Sunlit cliffside monastery confrontation where monks and mercs clash, prayer and gunfire intermix (light/ritual conflict)",
|
||||
"sceneVariants": [
|
||||
"Stone terraces with prayer flags",
|
||||
"A temple bell swinging in gusts",
|
||||
"A long braided rope used as handhold",
|
||||
"Ancient murals flaking with time",
|
||||
"A small shrine with incense smoke"
|
||||
],
|
||||
"actions": [
|
||||
"Monks deflect and redirect attackers using minimalist, efficient movements",
|
||||
"A protagonist disarms multiple adversaries using improvised leverage",
|
||||
"Cut to the sonic contrast of prayer chant swelling against suppressed gunfire",
|
||||
"A final peaceful act de-escalates the immediate violence"
|
||||
],
|
||||
"camera": "Measured dojo-like wide with crisp medium inserts emphasizing technique",
|
||||
"accents": [
|
||||
"incense micro-smoke and stone micro-crackle",
|
||||
"fabric micro-luster on robes and metal micro-finish on weapons"
|
||||
],
|
||||
"mood": "disciplined intensity",
|
||||
"lighting": "clear morning with ritual warm highlights",
|
||||
"style": "philosophical action confrontation"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight ship-to-ship boarding where magnetized gear and zero-G maneuvers define combat (dark/sci-fi action)",
|
||||
"sceneVariants": [
|
||||
"A hull bristling with mooring clamps",
|
||||
"Cargo tendrils laced like nets",
|
||||
"A low-gravity web of tether anchors",
|
||||
"A hull breach glowing against starfield",
|
||||
"Engine vents puffing rhythmically"
|
||||
],
|
||||
"actions": [
|
||||
"Boarding party clamps to hull and breaches via hull-cut tools",
|
||||
"Combatants fight in shifting gravity pockets with magnetized boots",
|
||||
"Cut to a close of a tether snap sending a fighter into a slow tumble",
|
||||
"A hull bulkhead seal slams closed with a pneumatic hiss, sealing fate"
|
||||
],
|
||||
"camera": "Stabilized zero-G rigs, slow rotational cuts and frantic micro-cuts for impact",
|
||||
"accents": [
|
||||
"metal micro-burr and tether micro-knot detail",
|
||||
"engine micro-vent pulse and seal micro-gasket"
|
||||
],
|
||||
"mood": "otherworldly peril",
|
||||
"lighting": "cold starfield with ship practical glows",
|
||||
"style": "spaceborne action thriller"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn bridge demolition chase where protagonist races to stop a collapsing span (light/urgent climax)",
|
||||
"sceneVariants": [
|
||||
"Suspension cables humming under load",
|
||||
"Traffic half-cleared and scattered debris",
|
||||
"Explosive charges with countdown timers attached",
|
||||
"A control van wired to the detonator",
|
||||
"A rescue helicopter circling above"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonist sprints along cables, timing handholds as charges count down",
|
||||
"A mid-run detonation shifts balance and forces improvisation",
|
||||
"Cut to aerial cross-cut of helicopter winch prepping a rider for extraction",
|
||||
"A final heroic cut of a cable redirects the collapse to a safe zone"
|
||||
],
|
||||
"camera": "Wide structural plates mixed with cliffhanger close inserts and aerial POV",
|
||||
"accents": [
|
||||
"cable micro-strand tension and metal micro-shear at clamps",
|
||||
"explosive micro-timer LED pulse and concrete micro-frag"
|
||||
],
|
||||
"mood": "heroic urgency",
|
||||
"lighting": "bright early light with long structural shadows",
|
||||
"style": "architectural climax action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight skyscraper elevator fall where protagonists use the shaft to fight as it freefalls (dark/vertical action)",
|
||||
"sceneVariants": [
|
||||
"Elevator cables snapping and coils swinging",
|
||||
"Floor panels exposed revealing mechanical guts",
|
||||
"A maintenance ladder stuck to a shaft wall",
|
||||
"Sparks raining from severed cables",
|
||||
"A shaft ventilation shaft breathing dust"
|
||||
],
|
||||
"actions": [
|
||||
"Combatants use ladder rungs and cable anchors to move vertically as car plummets",
|
||||
"A makeshift brake is improvised, slowing the descent in a sequence of frantic edits",
|
||||
"Cut to a close of sparks igniting a harness strap creating a tense obstruction",
|
||||
"A final coordinated cut of a cable arrests the fall and leaves survivors gasping"
|
||||
],
|
||||
"camera": "Rotational rigs with vertigo-inducing wide-to-tight edits and slow-motion beats",
|
||||
"accents": [
|
||||
"cable micro-fiber fray and metal micro-spark detail",
|
||||
"panel micro-edge and dust micro-swirl"
|
||||
],
|
||||
"mood": "apex peril",
|
||||
"lighting": "strobing emergency lamps with deep shaft black",
|
||||
"style": "vertical stunt spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn coastal heist where underwater swimmers attach charges to a rogue tanker before surfacing (light/stealthy)",
|
||||
"sceneVariants": [
|
||||
"Bioluminescent algae lining the hull surface",
|
||||
"Swim fins and oxygen packs secured on a rocky alcove",
|
||||
"A remote beach with tide-slick rocks",
|
||||
"Distant silhouette of the tanker anchored offshore",
|
||||
"A tidal pool reflecting moonlight"
|
||||
],
|
||||
"actions": [
|
||||
"Swimmers sneak synchronised to engine noise and attach timed charges",
|
||||
"One diver sacrifices a beacon to distract patrols while others finish the job",
|
||||
"Cut to underwater POV as charges are affixed and a silent ascent begins",
|
||||
"A final wave dynamics sequence launches charges and creates breathable chaos above"
|
||||
],
|
||||
"camera": "Underwater rigs, swim-suit POV and low-angle surface transitions",
|
||||
"accents": [
|
||||
"water micro-caustic and suit micro-seam texture",
|
||||
"charge micro-adhesive and hull micro-scuff"
|
||||
],
|
||||
"mood": "covert ocean tension",
|
||||
"lighting": "filtered moonlight and biolume accents",
|
||||
"style": "maritime stealth-action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Midnight bio-lab sabotage where protagonist must stop a viral release with minutes to spare (dark/biothriller)",
|
||||
"sceneVariants": [
|
||||
"Cold storage units humming with condensation",
|
||||
"A sealed transfer hatch with redundant locks",
|
||||
"A readout showing escalating pressure",
|
||||
"A centrifuge spooling out of control",
|
||||
"A labeled vial glinting under a UV lamp"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonist manually isolates sample lines while avoiding contamination",
|
||||
"A flailing antagonist breaks a containment window, forcing a containment reroute",
|
||||
"Cut to a hazmat-don sequence where suits are pressured on in tense choreography",
|
||||
"A final sub-zero blast neutralizes aerosolized particles"
|
||||
],
|
||||
"camera": "Tight sterile inserts, breathy handheld and monitor overlay urgency",
|
||||
"accents": [
|
||||
"glass micro-condensation and label micro-type clarity",
|
||||
"instrument micro-led flicker and latex micro-texture"
|
||||
],
|
||||
"mood": "clinical panic",
|
||||
"lighting": "cold sterile lab light with urgent red alarms",
|
||||
"style": "biothreat action sequence"
|
||||
},
|
||||
{
|
||||
"subGenre": "Action Movies",
|
||||
"scene": "Dawn cliffside motorcycle leap where a protagonist clears a canyon to save trapped allies (light/daring)",
|
||||
"sceneVariants": [
|
||||
"A sun-bleached canyon lip with loose scree",
|
||||
"Motorcycle skid marks at launch site",
|
||||
"A rope-bridge sagging under weight",
|
||||
"A rescue harness dangling from a cliff",
|
||||
"A distant village bell tolling morning"
|
||||
],
|
||||
"actions": [
|
||||
"A long rev and sprint builds speed for an impossible jump",
|
||||
"Mid-air adjustments keep balance as protagonist trims throttle",
|
||||
"Cut to slow-motion breath and wheel arc before a triumphant landing",
|
||||
"A quick turnaround to secure allies and sprint away under chase"
|
||||
],
|
||||
"camera": "Helicopter wide for jump, helmet-cam for speed and slow-mo arc inserts",
|
||||
"accents": [
|
||||
"tire micro-tread and dust micro-blast",
|
||||
"metal micro-frame and rope micro-weave"
|
||||
],
|
||||
"mood": "audacious confidence",
|
||||
"lighting": "clear dawn with hard canyon contrast",
|
||||
"style": "stunt-heavy action climax"
|
||||
}
|
||||
]
|
||||
502
src/data/cinematic_and_film_styles_animations.json
Normal file
502
src/data/cinematic_and_film_styles_animations.json
Normal file
@ -0,0 +1,502 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Moonlit rooftop chase between two stylized paper-people across chimneys (dark/whimsical)",
|
||||
"sceneVariants": [
|
||||
"Paper figures folding and unfolding as they vault",
|
||||
"A gust of wind flips a rooftop tarpaulin revealing a clue",
|
||||
"Silhouetted city skyline with starlit paper constellations",
|
||||
"A rooftop garden of origami plants rustling",
|
||||
"A rooftop clock tower casting a long shadow"
|
||||
],
|
||||
"actions": [
|
||||
"One paper-person folds into a glider to leap the gap",
|
||||
"Close-up of a tiny paper note slipping into a pocket",
|
||||
"A comedic tumble resolved by a clever origami trick",
|
||||
"Cutaway to a stitched map animation overlaying the chase"
|
||||
],
|
||||
"camera": "Dynamic 2D parallax with quick whip pans and slow push-ins on expressive faces",
|
||||
"accents": [
|
||||
"hand-drawn paper edge micro-creases and soft paper-craft rim-light",
|
||||
"subtle cel-shading micro-texture on silhouetted buildings"
|
||||
],
|
||||
"mood": "playful tension",
|
||||
"lighting": "cool moonlight with warm rooftop practicals",
|
||||
"style": "hand-crafted paper-stop animation with modern 2D polish"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Nighttime neon alley where tiny robot street-performers animate discarded objects (dark/surreal)",
|
||||
"sceneVariants": [
|
||||
"Neon reflections pool on puddles of engine oil",
|
||||
"Cardboard stages improvised from crates",
|
||||
"Tiny audience of mismatched found-object characters",
|
||||
"A streetlamp buzzing in time with the music",
|
||||
"A vending machine playing beatbox samples"
|
||||
],
|
||||
"actions": [
|
||||
"Robots synchronize a percussion routine using cans and pipes",
|
||||
"A discarded umbrella transforms into a soaring prop",
|
||||
"Cut to a montage of audience reactions in stylized wipes",
|
||||
"A prop malfunctions then becomes the invention of the act"
|
||||
],
|
||||
"camera": "Low-angle wide lens with playful tracking, occasional top-down stage cuts",
|
||||
"accents": [
|
||||
"neon micro-refractions and rust micro-patina detail",
|
||||
"small LED micro-flares on robot eye lenses"
|
||||
],
|
||||
"mood": "urban wonder",
|
||||
"lighting": "high-contrast neon with deep colored shadows",
|
||||
"style": "stylized urban 3D-animation with tactile real-world materials"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Twilit forest clearing where animated lantern-fireflies form constellations (dark/magical)",
|
||||
"sceneVariants": [
|
||||
"Bioluminescent flora that blooms when approached",
|
||||
"Pathways lit by lantern-butterflies making patterns",
|
||||
"An ancient stump carved with glowing runes",
|
||||
"Misty ground swirling with floating light ribbons",
|
||||
"A distant silhouette of a travelling caravan"
|
||||
],
|
||||
"actions": [
|
||||
"Fireflies rearrange to spell a lost message",
|
||||
"A character follows a pattern to unlock an ancient door",
|
||||
"Slow reveal of a guardian creature assembled from light",
|
||||
"A sweeping reveal shot dissolves to a map of the journey"
|
||||
],
|
||||
"camera": "Fluid crane-style moves in 2.5D with soft focus transitions",
|
||||
"accents": [
|
||||
"micro-glow haloing on each light particle and high micro-detail on leaf veins",
|
||||
"soft volumetric dust micro-threads in light shafts"
|
||||
],
|
||||
"mood": "awe-struck wonder",
|
||||
"lighting": "warm bioluminescent accents in cold ambient night",
|
||||
"style": "lush painterly 2D with particle-driven effects"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Midnight toyshop where abandoned toys practice performances (dark/charming)",
|
||||
"sceneVariants": [
|
||||
"Rows of wind-up soldiers standing at attention",
|
||||
"A choir of plushies harmonizing under a spotlight",
|
||||
"A clockwork conductor tapping a metronome",
|
||||
"A train set encircling the stage with miniature scenery",
|
||||
"A dusty window with moonbeams catching floating dust"
|
||||
],
|
||||
"actions": [
|
||||
"A ragdoll soloist hits a surprising high note",
|
||||
"Wind-up toys synchronize in a mechanical ballet",
|
||||
"A toy repairs itself mid-performance then bows",
|
||||
"Cut to a close on a handwritten price tag with a name"
|
||||
],
|
||||
"camera": "Intimate close-ups with dollhouse-style wide lenses and gentle dollhouse DOF",
|
||||
"accents": [
|
||||
"fabric micro-weave detail and clockwork micro-gear gloss",
|
||||
"soft moonbeam micro-rim light on plush fur"
|
||||
],
|
||||
"mood": "nostalgic delight",
|
||||
"lighting": "single warm spotlight pockets in cool moonlit shop",
|
||||
"style": "stop-motion inspired 3D animation with tactile textures"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Dawn seaside boardwalk filled with exaggerated cartoon characters selling impossible snacks (light/joyful)",
|
||||
"sceneVariants": [
|
||||
"Colorful stalls with oversized signage",
|
||||
"A ferris wheel with whimsical animal carriages",
|
||||
"Steam from food stands forming playful shapes",
|
||||
"Seagulls wearing tiny hats circling above",
|
||||
"Kites with expressive faces bobbing in the breeze"
|
||||
],
|
||||
"actions": [
|
||||
"Vendor performs a juggling sequence turning ingredients into a finished dish",
|
||||
"Child character chases a mischievous kite into a carousel",
|
||||
"Cut to a montage of customers reacting in exaggerated comic beats",
|
||||
"A comedic pratfall resolves into a tender moment"
|
||||
],
|
||||
"camera": "Broad 2D wides with lively multiplane parallax and snappy jump-cuts",
|
||||
"accents": [
|
||||
"vibrant paint micro-stroke textures and sugary gloss micro-highlights",
|
||||
"sun micro-flares and ocean micro-sparkles"
|
||||
],
|
||||
"mood": "exuberant playfulness",
|
||||
"lighting": "warm morning sun with bright fill and saturated colors",
|
||||
"style": "cartoony 2D animation with modern motion-graphics polish"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Sunlit classroom where animated chalk lines come alive to teach geometry (light/educational)",
|
||||
"sceneVariants": [
|
||||
"Chalk-drawn characters stepping off the blackboard",
|
||||
"Equations physically assembling into shapes",
|
||||
"A teacher's spectacles magnify floating diagrams",
|
||||
"Animated doodles applauding a student's breakthrough",
|
||||
"A clock ticking with animated numbers marching"
|
||||
],
|
||||
"actions": [
|
||||
"Chalk shapes morph into interactive teaching aids",
|
||||
"Student draws an insight and classroom lights up in response",
|
||||
"Graph overlays display playful pop-up facts",
|
||||
"A montage demonstrates concept mastery through visual metaphors"
|
||||
],
|
||||
"camera": "Playful snappy cuts with occasional slow push-ins on the board",
|
||||
"accents": [
|
||||
"chalk micro-dust particles and wooden desk micro-grain",
|
||||
"soft classroom micro-sunbeams through window panes"
|
||||
],
|
||||
"mood": "curious, upbeat",
|
||||
"lighting": "even midday classroom light with warm window fill",
|
||||
"style": "educational 2D/3D hybrid with illustrative assets"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Late-night attic where a tiny animated constellation of lost objects plan an escape (dark/secretive)",
|
||||
"sceneVariants": [
|
||||
"Stacks of trunks casting long silhouettes",
|
||||
"A slatted window letting through a single moonbeam",
|
||||
"A map of the house pinned across a dust sheet",
|
||||
"Old photographs with characters slightly moving within",
|
||||
"A squeaky floorboard signaling a surprise approach"
|
||||
],
|
||||
"actions": [
|
||||
"Objects whisper plans in a silent-movie title-card style",
|
||||
"A daring rope-zip descends from the rafters",
|
||||
"A lookout uses a magnifying glass to signal star patterns",
|
||||
"Cut to a montage of tools being assembled like a Rube Goldberg"
|
||||
],
|
||||
"camera": "Low-angle tracking with gentle vignette and subtle stop-motion jitter",
|
||||
"accents": [
|
||||
"dust micro-motes catching the beam and textured fabric micro-fade",
|
||||
"old-paper micro-crackle on photographs"
|
||||
],
|
||||
"mood": "covert optimism",
|
||||
"lighting": "narrow moonbeam with warm attic practicals",
|
||||
"style": "nostalgic animated fable with tactile artifacts"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Dusk canyon race where anthropomorphic vehicles morph and emote (dark/spectacle)",
|
||||
"sceneVariants": [
|
||||
"Dust trails forming ephemeral shapes in tailwinds",
|
||||
"Solar panels glinting like armor plates",
|
||||
"Spectator drones projecting animated holograms",
|
||||
"Tight switchback passes with canyon murals",
|
||||
"A canyon arch forming a dramatic finish line"
|
||||
],
|
||||
"actions": [
|
||||
"Vehicles transform mid-race to gain an advantage",
|
||||
"A rookie executes an improbable drift that wins applause",
|
||||
"Cut to slow-motion particle trails revealing micro-details",
|
||||
"A victory lap turns into a shared celebration with rivals"
|
||||
],
|
||||
"camera": "Fast multi-angle cuts with sweeping cinematic 3D camera and motion blur",
|
||||
"accents": [
|
||||
"dust micro-grain and metal micro-brushed sheen",
|
||||
"holographic micro-projection noise and rim micro-lighting"
|
||||
],
|
||||
"mood": "adrenaline-fueled excitement",
|
||||
"lighting": "cool dusk with warm exhaust glows",
|
||||
"style": "high-energy 3D animation with stylized physics"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Dawn bakery where animated dough characters knead themselves into shapes (light/comforting)",
|
||||
"sceneVariants": [
|
||||
"Steam curling from ovens in whimsical spirals",
|
||||
"A window display forming a smiley scene of pastries",
|
||||
"Flour falling like soft snow onto a wooden table",
|
||||
"A bell over the door jingling a musical motif",
|
||||
"Baskets lined with patterned cloth and warm light"
|
||||
],
|
||||
"actions": [
|
||||
"Dough characters perform a synchronized kneading dance",
|
||||
"A baker sculpts a hero-shaped pastry for a customer",
|
||||
"Close-up on buttery laminations folding into flakes",
|
||||
"A final pull-back reveals the bustling community morning"
|
||||
],
|
||||
"camera": "Warm wide shop coverage with loving macro inserts on texture",
|
||||
"accents": [
|
||||
"flour micro-powder textures and butter micro-gloss lamination",
|
||||
"oven micro-heat shimmer and warm window micro-glow"
|
||||
],
|
||||
"mood": "comforting, wholesome",
|
||||
"lighting": "soft golden morning light with warm interior fills",
|
||||
"style": "cozy 2D/3D hybrid with tactile food styling"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Midnight library where animated books form a choir and sing forgotten stories (dark/poetic)",
|
||||
"sceneVariants": [
|
||||
"Tall stacks like a cathedral of spines",
|
||||
"A reading lamp haloing a center podium",
|
||||
"Pages fluttering like bird wings in soft gusts",
|
||||
"A ladder moving itself between shelves",
|
||||
"A clock with animated numerals gently tolling"
|
||||
],
|
||||
"actions": [
|
||||
"Books open and project miniature narratives above their covers",
|
||||
"A protagonist book leads a verse while others harmonize",
|
||||
"Cutaways to animated script lines forming illustrated metaphors",
|
||||
"Soft final hush as books close and conserve secrets"
|
||||
],
|
||||
"camera": "Slow dolly-ins with warm practical highlights and theatrical framing",
|
||||
"accents": [
|
||||
"paper micro-fiber detail and leather micro-wear on bindings",
|
||||
"lamp micro-halo and dust micro-motes in the beam"
|
||||
],
|
||||
"mood": "reverent, melancholic",
|
||||
"lighting": "single warm pool of light in deep cool surrounds",
|
||||
"style": "poetic stop-motion inspired 2D with cinematic staging"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Sunlit mountain meadow where cloud-creatures sculpt weather with flutes (light/serene)",
|
||||
"sceneVariants": [
|
||||
"Puffs of cloud forming expressive faces",
|
||||
"A line of wind chimes translating air currents into color",
|
||||
"Meadow flowers opening in musical rhythm",
|
||||
"A distant village with chimneys sending patterned smoke",
|
||||
"A clear sky where animated wind glyphs drift"
|
||||
],
|
||||
"actions": [
|
||||
"Cloud-creatures play a melody and summon a friendly breeze",
|
||||
"A child listens as petals lift into a swirling dance",
|
||||
"Cut to aerial choreographed cloud formations shaping a message",
|
||||
"A final wide shows the valley renewed after the song"
|
||||
],
|
||||
"camera": "Sweeping aerial pano with gentle dolly-ins and soft lens flares",
|
||||
"accents": [
|
||||
"cloud micro-vellum texture and flower micro-petal translucency",
|
||||
"soft sun micro-glow and atmospheric micro-ozone haze"
|
||||
],
|
||||
"mood": "tranquil joy",
|
||||
"lighting": "bright high-key daylight with soft diffusion",
|
||||
"style": "pastoral hand-painted animation with subtle particle FX"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Midnight subway car where commuters' shadows become playful companions (dark/urban) ",
|
||||
"sceneVariants": [
|
||||
"Graffiti murals breathing faint life along tunnels",
|
||||
"Station clocks ticking in exaggerated beats",
|
||||
"Reflections in windows showing alternate animated cities",
|
||||
"A lone street musician with an animated echo",
|
||||
"Train doors framing fleeting tableau of passengers"
|
||||
],
|
||||
"actions": [
|
||||
"Shadows step free and perform a synchronized dance across seats",
|
||||
"A child befriends their shadow and learns a secret",
|
||||
"Cut to a sequence where shadows solve a small mystery aboard",
|
||||
"A final close shows shadow slipping back into alignment at dawn"
|
||||
],
|
||||
"camera": "Handheld-imitating motion with rhythmic cuts synced to train car movement",
|
||||
"accents": [
|
||||
"glass micro-reflection grooves and subway tile micro-grime detail",
|
||||
"faint neon micro-bleed from station signs"
|
||||
],
|
||||
"mood": "quiet wonder",
|
||||
"lighting": "cool underground practicals with directional compartment fills",
|
||||
"style": "urban 2D animation with shadow-play cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Dawn parade of fruit-people across a carnival pier (light/festive)",
|
||||
"sceneVariants": [
|
||||
"Banners made of citrus slices fluttering",
|
||||
"A brass band of vegetable musicians",
|
||||
"Stalls offering improbable fruit-concoctions",
|
||||
"A crowd wearing hand-painted fruit hats",
|
||||
"Gulls above stealing confetti crumbs"
|
||||
],
|
||||
"actions": [
|
||||
"Parade performs choreographed color bursts on every beat",
|
||||
"A romance blossom between two characters over a shared tart",
|
||||
"Cut to wide civic celebration with fireworks of jam",
|
||||
"A whimsical float slowly transforms into a floating orchard"
|
||||
],
|
||||
"camera": "Vibrant wides with colorful pans and single-frame bursts to emphasize beats",
|
||||
"accents": [
|
||||
"fruit micro-flesh translucency and sugar micro-glitter highlights",
|
||||
"pier wood micro-grain and ocean micro-sparkle"
|
||||
],
|
||||
"mood": "joyful exuberance",
|
||||
"lighting": "bright festival daylight with saturated hues",
|
||||
"style": "exuberant character-driven 2D with motion-graphics"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Late-night observatory where animated constellations argue about myths (dark/interpretive)",
|
||||
"sceneVariants": [
|
||||
"Telescopes shaped like quills and brushes",
|
||||
"A dome of moving illustrated star-maps",
|
||||
"Old myth-sheets pinned and fluttering",
|
||||
"A chalkboard filled with constellations morphing into creatures",
|
||||
"A window frame where comet tails paint runes"
|
||||
],
|
||||
"actions": [
|
||||
"Constellations rearrange themselves to dramatize a tale",
|
||||
"Observer sketches a new myth that comes to life briefly",
|
||||
"Cut to stylized animated flashbacks illustrating the dispute",
|
||||
"A quiet reconciliation resolves competing stories into a new map"
|
||||
],
|
||||
"camera": "Slow circular tracking inside the dome with occasional starfield parallax",
|
||||
"accents": [
|
||||
"star micro-glint and paper micro-ink wash on myth-sheets",
|
||||
"telescope micro-metal sheen and glass micro-refraction"
|
||||
],
|
||||
"mood": "contemplative wonder",
|
||||
"lighting": "soft cool observatory glow with pinprick star highlights",
|
||||
"style": "illustrative 2D with celestial motion design"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Dusk market where animated shadows sell memories in jars (dark/mysterious)",
|
||||
"sceneVariants": [
|
||||
"Glass jars with swirling luminescent images on shelves",
|
||||
"Vendors trading in childhood echoes and rainy afternoons",
|
||||
"A narrow alley of stalls backed by murals",
|
||||
"A small boy clutching a jar that hums faintly",
|
||||
"Lanterns strung overhead with mismatched bulbs"
|
||||
],
|
||||
"actions": [
|
||||
"Customer uncorks a memory and briefly lives inside it",
|
||||
"Trader barters a memory for a small lucky stone",
|
||||
"A swap causes an unexpected flashback montage",
|
||||
"A vendor pockets a stolen fragment then shows regret"
|
||||
],
|
||||
"camera": "Moody close-ups with vignette and cinematic tight inserts on jars",
|
||||
"accents": [
|
||||
"glass micro-refraction and memory micro-particle luminescence",
|
||||
"lantern micro-haze and fabric micro-thread detail"
|
||||
],
|
||||
"mood": "wistful curiosity",
|
||||
"lighting": "muted dusk with warm lantern pools",
|
||||
"style": "dark fairytale animation with surreal visual metaphors"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Sunlit inventor's workshop where animated blueprints build themselves (light/ingenious)",
|
||||
"sceneVariants": [
|
||||
"Drawn gears assembling in midair",
|
||||
"A bench cluttered with whimsical prototypes",
|
||||
"A skylight scattering blueprint dust motes",
|
||||
"Tools that hum in anticipation",
|
||||
"A chalkboard filled with half-erased formulas"
|
||||
],
|
||||
"actions": [
|
||||
"Blueprint lines lift and snap into functioning contraptions",
|
||||
"Inventor animates a idea into a working miniature model",
|
||||
"Cut to a montage of iterative prototyping with playful failures",
|
||||
"A triumphant reveal as the contraption performs a small miracle"
|
||||
],
|
||||
"camera": "Inventive montage sequences with playful match-cuts and rotating dolly shots",
|
||||
"accents": [
|
||||
"paper micro-fiber edges and brass micro-patina on parts",
|
||||
"skylight micro-beam dust and soft studio micro-glow"
|
||||
],
|
||||
"mood": "optimistic curiosity",
|
||||
"lighting": "bright studio daylight with warm work-lamp accents",
|
||||
"style": "mechanical wonder 2D/3D hybrid with precise motion design"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Midnight moon-bazaar where lost puns and jokes are traded like currency (dark/quirky)",
|
||||
"sceneVariants": [
|
||||
"Stalls with pun-stitched banners and jokebook ledgers",
|
||||
"A satire merchant weighing jokes on an old balance",
|
||||
"A jester shadow performing silent slapstick",
|
||||
"A hush when a particularly good joke is traded",
|
||||
"A neon sign flickering with a punchline"
|
||||
],
|
||||
"actions": [
|
||||
"A character pays a debt using an old family punchline",
|
||||
"Crowd reacts in kinetic typographic bursts to a zinger",
|
||||
"Cut to animated thought-bubbles illustrating jokes literally",
|
||||
"A final trade reveals an unexpected tender subtext"
|
||||
],
|
||||
"camera": "Fast comedic timing with rhythmic cuts and comic-frame split-screens",
|
||||
"accents": [
|
||||
"ink micro-splash on paper and neon micro-flicker humor highlights",
|
||||
"cloth micro-thread on costuming with subtle stitch detail"
|
||||
],
|
||||
"mood": "mischievous delight",
|
||||
"lighting": "low moody neon with warm accent bulbs",
|
||||
"style": "surreal comedic animation mixing typographic FX"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Dawn rooftop garden where animated seeds argue about which plant to become (light/amusing)",
|
||||
"sceneVariants": [
|
||||
"Tiny seedlings with expressive faces peeking from soil",
|
||||
"A watering can singing a lullaby",
|
||||
"Bees with chalk-sketched wings dancing around blossoms",
|
||||
"A city skyline softened by rooftop greenery",
|
||||
"Labels with botanical names that shift poetically"
|
||||
],
|
||||
"actions": [
|
||||
"Seeds try on personalities, briefly sprouting imagined leaves",
|
||||
"A gardener offers a choice that settles the debate",
|
||||
"Montage of quick growth spurts illustrating different futures",
|
||||
"A final sprout surprises everyone by blooming into an unexpected hybrid"
|
||||
],
|
||||
"camera": "Warm macro shots with playful stop-motion timing and soft focus transitions",
|
||||
"accents": [
|
||||
"soil micro-granularity and petal micro-vein translucency",
|
||||
"morning micro-dew beads and soft sun micro-glare"
|
||||
],
|
||||
"mood": "gentle humor",
|
||||
"lighting": "soft golden dawn with warm fill",
|
||||
"style": "charming 2D micro-animation with tactile natural textures"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Midnight carnival mirror maze where reflections tell alternate lives (dark/reflective)",
|
||||
"sceneVariants": [
|
||||
"Mirrors framing impossible perspectives",
|
||||
"Reflections stepping out to interact then re-enter",
|
||||
"A distant calliope music muffled through glass",
|
||||
"A maze map that redraws itself as you watch",
|
||||
"A coin-operated mirror showing old portraits"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonist confronts a reflection who knows a hidden truth",
|
||||
"A sequence of mirrored vignettes illustrates choices not taken",
|
||||
"Cut to a reveal where mirrors realign to offer escape",
|
||||
"A final reflection returns a piece of memory to the protagonist"
|
||||
],
|
||||
"camera": "Disorienting dolly and mirrored multiplane with deliberate symmetry",
|
||||
"accents": [
|
||||
"glass micro-reflection gradient and varnish micro-smear",
|
||||
"carved frame micro-detail and mirror micro-fingerprint"
|
||||
],
|
||||
"mood": "introspective unease",
|
||||
"lighting": "contrasted pools of warm bulbs amid cool reflective planes",
|
||||
"style": "noir-tinged animated fable with surreal visuals"
|
||||
},
|
||||
{
|
||||
"subGenre": "Animations",
|
||||
"scene": "Sunlit festival of colors where paint-spirits choreograph a city repaint (light/celebratory)",
|
||||
"sceneVariants": [
|
||||
"Buildings receiving streaks of living color",
|
||||
"Windows winking with animated shutters",
|
||||
"A river reflecting kaleidoscopic paint patterns",
|
||||
"Citizens dancing as pigments swirl around them",
|
||||
"A final reveal showing a transformed skyline"
|
||||
],
|
||||
"actions": [
|
||||
"Paint-spirits leap from brushes to trace murals",
|
||||
"A collaborative mural forms depicting community history",
|
||||
"Fast montage of before-and-after city scenes celebrating diversity",
|
||||
"A closing wide shot reveals the city smiling in color"
|
||||
],
|
||||
"camera": "High-energy tracking with vivid color wipes and map-like transitions",
|
||||
"accents": [
|
||||
"pigment micro-grain and wet-paint micro-sheen",
|
||||
"fabric micro-stitch on banners and sun micro-glare"
|
||||
],
|
||||
"mood": "communal joy",
|
||||
"lighting": "bright mid-day with high saturation and even fill",
|
||||
"style": "vibrant 2D animation with painterly texture overlays"
|
||||
}
|
||||
]
|
||||
402
src/data/cinematic_and_film_styles_documentaries.json
Normal file
402
src/data/cinematic_and_film_styles_documentaries.json
Normal file
@ -0,0 +1,402 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Nighttime investigative interview in a dim parking garage about a corporate scandal (dark/gritty)",
|
||||
"sceneVariants": [
|
||||
"Single overhead LED casting hard shadows on a table",
|
||||
"A recorder and a thin packet of documents between two tense figures",
|
||||
"A distant car alarm punctuating the conversation",
|
||||
"A clandestine handoff of a USB drive under the table",
|
||||
"A security camera lens reflected like an eye"
|
||||
],
|
||||
"actions": [
|
||||
"Interview subject pauses and exhales before revealing a key fact",
|
||||
"Interviewer slides a corroborating document and points to a line",
|
||||
"Cutaway to B-roll of office towers at midnight",
|
||||
"Title-card interposes a crucial date and source attribution"
|
||||
],
|
||||
"camera": "Intimate two-camera setup: tight handheld on subject for micro-expressions, fixed wide to show environment and give unease",
|
||||
"accents": [
|
||||
"practical LED micro-flicker and wet concrete micro-reflections",
|
||||
"paper micro-fiber detail on documents and USB gloss"
|
||||
],
|
||||
"mood": "tense, uncompromising",
|
||||
"lighting": "cool hard key from above with deep shadows",
|
||||
"style": "investigative cinéma vérité"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Late-night archival research room where a historian discovers a suppressed film reel (dark/mystery)",
|
||||
"sceneVariants": [
|
||||
"Reel canisters piled on a metal cart",
|
||||
"A single incandescent desk lamp and a projector warming up",
|
||||
"Muffled footsteps in the hallway outside",
|
||||
"Yellowed captions and hand-written marginalia revealed",
|
||||
"A slow dust motes drift through the lamp beam"
|
||||
],
|
||||
"actions": [
|
||||
"Hand carefully opens an archive can, extracting brittle film",
|
||||
"Projector hum builds into image; a gasp as a forgotten face appears",
|
||||
"Cut to flashback stills and slow dissolves to contextualize the discovery",
|
||||
"A researcher makes careful notes and pockets a copied frame"
|
||||
],
|
||||
"camera": "Moody low-light close-ups and slow reveal push-ins on the projected frame",
|
||||
"accents": [
|
||||
"film grain micro-scratch texture and lamp micro-halo",
|
||||
"hand micro-fibers on archival gloves"
|
||||
],
|
||||
"mood": "reverent curiosity",
|
||||
"lighting": "very low warm lamp with projector glow",
|
||||
"style": "archival investigative documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Night patrol with a conservation ranger tracking illegal logging by torchlight (dark/tense)",
|
||||
"sceneVariants": [
|
||||
"Torch beams cutting through dense undergrowth",
|
||||
"Boot prints leading toward freshly cut stumps",
|
||||
"A distant chainsaw muffled behind canopy",
|
||||
"Shadowed figures slipping between trunks",
|
||||
"A confiscated ration pack beside a shallow pit"
|
||||
],
|
||||
"actions": [
|
||||
"Ranger signals team and motions to a hidden camera",
|
||||
"A stealth approach with low whispers and handheld comms",
|
||||
"B-roll of aerial infrared reveals nighttime clear-cuts",
|
||||
"Title-card gives legal context and dates"
|
||||
],
|
||||
"camera": "Handheld night-vision inserts mixed with tight subject interviews after the fact",
|
||||
"accents": [
|
||||
"torch micro-caustics on leaf texture and sweat micro-beads",
|
||||
"infrared micro-noise in aerial inserts"
|
||||
],
|
||||
"mood": "urgent, vigilant",
|
||||
"lighting": "torch and night-vision with minimal ambient",
|
||||
"style": "field-investigative documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Late-night hospital corridor where whistleblower nurses compare notes about malpractice (dark/privileged)",
|
||||
"sceneVariants": [
|
||||
"Sterile floor reflectance with a single overhead fixture",
|
||||
"A sticky note with an anonymous number tucked under a clipboard",
|
||||
"A slow camera move past closed ward doors",
|
||||
"A corridor clock marking ephemeral hours",
|
||||
"A muffled beeping machine behind a double door"
|
||||
],
|
||||
"actions": [
|
||||
"Nurses exchange quiet, urgent details while checking patient charts",
|
||||
"One nurse slips a typed note into a coat pocket for later evidence",
|
||||
"Cutaways to redacted memos and internal emails with highlighted lines",
|
||||
"An intertitle provides regulatory context and subpoena status"
|
||||
],
|
||||
"camera": "Low ambient practical-lit handheld to maintain confidentiality and immediacy",
|
||||
"accents": [
|
||||
"paper micro-redaction texture and plastic clipboard micro-scratch",
|
||||
"fluorescent micro-flicker under sterile light"
|
||||
],
|
||||
"mood": "serious, clandestine",
|
||||
"lighting": "clinical overhead with cool color temperature",
|
||||
"style": "investigative reportage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Overnight city streets with ride-share drivers talking about gig-economy survival (dark/honest)",
|
||||
"sceneVariants": [
|
||||
"Car dashboards lit with app notifications",
|
||||
"Empty late-night diners where drivers swap stories",
|
||||
"Receipts and fuel cards spread on a passenger seat",
|
||||
"A tired passenger dropped at a door under sodium lamps",
|
||||
"A group huddle in a parking lot beneath a billboard"
|
||||
],
|
||||
"actions": [
|
||||
"Driver recounts a tipping story while footage shows GPS traces",
|
||||
"Interior dashcam b-roll overlays commentary with on-screen graphics",
|
||||
"Cut to explanatory titles presenting income stats",
|
||||
"A close of group solidarity with a shared thermos"
|
||||
],
|
||||
"camera": "Interior car close camera and roadside wide B-roll for context; candid handheld for interviews",
|
||||
"accents": [
|
||||
"dashboard micro-LED glow and paper receipt micro-ink",
|
||||
"town micro-sodium lamp micro-halo"
|
||||
],
|
||||
"mood": "authentic, empathetic",
|
||||
"lighting": "practical interior car lights and cool street lamps",
|
||||
"style": "socioeconomic vérité documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Midnight investigative editing session where footage is cross-checked with whistleblower statements (dark/forensic)",
|
||||
"sceneVariants": [
|
||||
"Dual monitors with waveform comparators",
|
||||
"An editor marking timestamps with sticky notes",
|
||||
"A pile of labeled hard drives and encrypted thumbsticks",
|
||||
"A low hum from fans and software render bars",
|
||||
"Redacted lines highlighted in transcribed interviews"
|
||||
],
|
||||
"actions": [
|
||||
"Frame-by-frame comparison of footage to logs",
|
||||
"Creation of a verified timeline with on-screen lower-thirds",
|
||||
"A tense pause as a discrepancy is found and footnote added",
|
||||
"Exporting a locked-down master for legal counsel"
|
||||
],
|
||||
"camera": "Tight insert shots on timeline scrub with reflected monitor fills",
|
||||
"accents": [
|
||||
"monitor micro-pixel grid and render bar micro-gradient",
|
||||
"paper micro-annotation ink halos"
|
||||
],
|
||||
"mood": "meticulous, methodical",
|
||||
"lighting": "monitor-dominant cool glow with minimal ambient",
|
||||
"style": "forensic investigative documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Nighttime shadowed rehearsal of an oral-history dramatization in a small theatre (dark/reverent)",
|
||||
"sceneVariants": [
|
||||
"A single stage lamp picks out a dusty lectern",
|
||||
"Archivists sorting audio reels backstage",
|
||||
"A playwright whispering lines to an actor",
|
||||
"A table of annotated transcripts under a lamp",
|
||||
"A slow pan of audience seats empty before show"
|
||||
],
|
||||
"actions": [
|
||||
"Actor performs a short monologue drawn from archive with title-card context",
|
||||
"Cutaways to original audio with waveform overlay",
|
||||
"Archivist provides metadata in a captioned insert",
|
||||
"A final moment of silence to honor the subject"
|
||||
],
|
||||
"camera": "Intimate stage close with archival audio sync; slow crossfades to audio sources",
|
||||
"accents": [
|
||||
"paper micro-fiber on transcripts and lamp micro-halo",
|
||||
"audio waveform micro-detail overlaid"
|
||||
],
|
||||
"mood": "respectful, reflective",
|
||||
"lighting": "warm spotlight on stage with dark periphery",
|
||||
"style": "oral-history documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Dawn coastal patrol documenting marine debris and local fishermen reactions (light/observational)",
|
||||
"sceneVariants": [
|
||||
"Low tide strewn with plastic lines and nets",
|
||||
"Fishermen hauling small nets at sunrise",
|
||||
"A community beach cleanup table with gloves and bags",
|
||||
"A gull scavenging near debris",
|
||||
"Small hand-scrawled notes about catch variance"
|
||||
],
|
||||
"actions": [
|
||||
"Interviews with fishermen about changing catch with supporting shots",
|
||||
"Close macro on plastic particles and entangled seaweed",
|
||||
"A local volunteer organizes a cleanup with quick assembly shots",
|
||||
"Title-card provides statistics on debris and ecological impact"
|
||||
],
|
||||
"camera": "Combination of steady coastal wide shots and macro inserts of debris; interviewer-mounted B-roll",
|
||||
"accents": [
|
||||
"plastic micro-fiber texture and wet sand micro-granularity",
|
||||
"sun micro-rim on water micro-sparkles"
|
||||
],
|
||||
"mood": "concerned, observational",
|
||||
"lighting": "soft early-morning sunlight with natural fill",
|
||||
"style": "environmental observational documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunlit community kitchen where volunteers prepare meals and speak about food insecurity (light/compassionate)",
|
||||
"sceneVariants": [
|
||||
"Rows of steaming pots and chopping boards",
|
||||
"Volunteers in aprons assembling boxes with smiles",
|
||||
"A wall whiteboard listing recipients and schedules",
|
||||
"Close-ups of hands slicing vegetables and sealing boxes",
|
||||
"A child accepting a care package with shy gratitude"
|
||||
],
|
||||
"actions": [
|
||||
"Volunteer explains logistics with cutaways to distribution lines",
|
||||
"Beneficiary shares a short personal anecdote on camera",
|
||||
"B-roll of deliveries and community reaction",
|
||||
"A call-to-action title-card showing how to help"
|
||||
],
|
||||
"camera": "Handheld intimate interviews combined with steady wide kitchen coverage",
|
||||
"accents": [
|
||||
"steam micro-vapor threads and vegetable micro-fiber texture",
|
||||
"apron micro-stitch and box micro-corrugation detail"
|
||||
],
|
||||
"mood": "hopeful, human-centered",
|
||||
"lighting": "bright indoor daylight or practical kitchen lights with warm fill",
|
||||
"style": "humanitarian documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunrise wildlife transect where researchers count rare birds in a reserve (light/scientific)",
|
||||
"sceneVariants": [
|
||||
"Field notebooks and sound recorders at dawn",
|
||||
"Binocular silhouettes scanning treeline",
|
||||
"Misty marsh with reed silhouettes",
|
||||
"Researchers marking GPS waypoints on a tablet",
|
||||
"Small annotated maps pinned to a field jacket"
|
||||
],
|
||||
"actions": [
|
||||
"Researcher announces a sighting and documents call signature",
|
||||
"Hydrophone b-roll provides audio evidence, displayed onscreen",
|
||||
"Charts overlay to show population trends over time",
|
||||
"A cautious approach to a nest with minimal disturbance"
|
||||
],
|
||||
"camera": "Long lens wildlife captures plus researcher POV captures and data overlays",
|
||||
"accents": [
|
||||
"feather micro-detail and dew micro-bead reflections",
|
||||
"GPS micro-ui overlay micro-pixel clarity"
|
||||
],
|
||||
"mood": "clinical curiosity",
|
||||
"lighting": "soft golden sunrise with high-detail capture",
|
||||
"style": "field-science documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunlit factory floor tour showing modern automation and workers' perspectives (light/industrial)",
|
||||
"sceneVariants": [
|
||||
"Rows of robotic arms and conveyor belts",
|
||||
"Workers in safety gear monitoring touchscreens",
|
||||
"A close on stamped serial numbers on components",
|
||||
"A break room where employees discuss conditions",
|
||||
"Dust particles illuminated by shafts of light"
|
||||
],
|
||||
"actions": [
|
||||
"A manager explains workflow with overlay graphics",
|
||||
"Worker shares a human perspective on automation",
|
||||
"Cut to archival footage of the factory's past to show change",
|
||||
"A comparative title-card displays productivity vs employment trends"
|
||||
],
|
||||
"camera": "Mix of wide industrial coverage and worker-level intimate interviews",
|
||||
"accents": [
|
||||
"metal micro-finish on components and touchscreen micro-fingerprint traces",
|
||||
"shaft micro-beam particulate catch"
|
||||
],
|
||||
"mood": "analytical, balanced",
|
||||
"lighting": "bright industrial overhead with practical highlights",
|
||||
"style": "industrial social documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunlit artist studio portrait where an elder painter reflects on decades of practice (light/evocative)",
|
||||
"sceneVariants": [
|
||||
"Sunlit canvases leaning against a wall",
|
||||
"Paint-splattered brushes in jars and palette knives",
|
||||
"Handwritten notes about process pinned nearby",
|
||||
"A window showing distant city rooftops",
|
||||
"A small photograph of the artist's younger self pinned to an easel"
|
||||
],
|
||||
"actions": [
|
||||
"Artist demonstrates a short technique while narrating its meaning",
|
||||
"Close-up on hand gestures mixing pigment",
|
||||
"A slow pan across decades of work with intertitles for dates",
|
||||
"Final contemplative silence as a new brushstroke completes a canvas"
|
||||
],
|
||||
"camera": "Soft natural light close-ups on hands and texture, medium portrait frames for interviews",
|
||||
"accents": [
|
||||
"paint micro-crackle and canvas micro-tooth detail",
|
||||
"brush micro-bristle fiber and varnish micro-gloss"
|
||||
],
|
||||
"mood": "reverent, intimate",
|
||||
"lighting": "warm window daylight with soft diffusion",
|
||||
"style": "artist-profile documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunlit community gardening project where multigenerational volunteers restore an urban plot (light/communal)",
|
||||
"sceneVariants": [
|
||||
"Raised beds filled with seedlings",
|
||||
"Older and younger volunteers exchanging seeds and stories",
|
||||
"A local mural being painted behind the plot",
|
||||
"Compost bins and watering schedules posted on a board",
|
||||
"A harvest table with labeled produce"
|
||||
],
|
||||
"actions": [
|
||||
"Volunteer demonstrates compost turning and soil testing",
|
||||
"A youth group plants seedlings and learns names",
|
||||
"Cutaways to nutritional and social benefits with text overlays",
|
||||
"A final communal meal using harvested produce"
|
||||
],
|
||||
"camera": "Observational wide garden coverage with close instructional inserts",
|
||||
"accents": [
|
||||
"soil micro-granularity and leaf micro-vein detail",
|
||||
"garden tool micro-metal sheen and wood micro-grain"
|
||||
],
|
||||
"mood": "optimistic collaboration",
|
||||
"lighting": "bright midday with even fill and natural highlights",
|
||||
"style": "community impact documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Nighttime cultural salon where poets exchange readings and context about diaspora (dark/poetic)",
|
||||
"sceneVariants": [
|
||||
"A small dim venue with string lighting and dense audience",
|
||||
"Poets holding worn notebooks and speaking intimately",
|
||||
"A translated line projected for bilingual audience",
|
||||
"Cups of tea and informal circles of listeners",
|
||||
"A poster announcing the evening and contributors"
|
||||
],
|
||||
"actions": [
|
||||
"Poet recites a piece that triggers a quiet hush, followed by murmured applause",
|
||||
"Cutaways to archive footage showing migratory histories",
|
||||
"Translator provides context in a soft lower-third caption",
|
||||
"Audience members approach after for personal conversations"
|
||||
],
|
||||
"camera": "Close intimate medium on performers with ambient audience reaction shots",
|
||||
"accents": [
|
||||
"paper micro-ink and soft textile micro-weave on shawls",
|
||||
"string-light micro-bokeh and mic micro-grill detail"
|
||||
],
|
||||
"mood": "contemplative, communal",
|
||||
"lighting": "low warm practicals with soft accent highlights",
|
||||
"style": "cultural documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunlit river restoration field day where scientists show before-and-after data to local stakeholders (light/instructional)",
|
||||
"sceneVariants": [
|
||||
"Engineered wetlands and regraded banks",
|
||||
"Graph overlays comparing biodiversity before and after",
|
||||
"Volunteers planting native species in shallow banks",
|
||||
"A portable lab station with water testing kits",
|
||||
"A community sign listing restoration partners"
|
||||
],
|
||||
"actions": [
|
||||
"Field scientist demonstrates sampling technique and shows data overlay",
|
||||
"Stakeholder interviews describe local economic & ecological benefits",
|
||||
"Before-and-after B-roll dissolves to show recovery",
|
||||
"A title-card lists partners and funding sources"
|
||||
],
|
||||
"camera": "Combination of field steadycam and macro lab inserts with data graphics",
|
||||
"accents": [
|
||||
"water micro-surface tension and seedling micro-root detail",
|
||||
"tablet micro-ui graph clarity"
|
||||
],
|
||||
"mood": "instructive optimism",
|
||||
"lighting": "bright outdoor daylight with high detail",
|
||||
"style": "scientific impact documentary"
|
||||
},
|
||||
{
|
||||
"subGenre": "Documentaries",
|
||||
"scene": "Sunlit refugee camp classroom where volunteers teach basic literacy (light/humanitarian)",
|
||||
"sceneVariants": [
|
||||
"Makeshift blackboard and plastic chairs",
|
||||
"Children with donated notebooks and pencils",
|
||||
"A volunteer using picture-cards to teach words",
|
||||
"A canvas tent with light filtering through",
|
||||
"A distribution queue in the background"
|
||||
],
|
||||
"actions": [
|
||||
"Teacher models letters and children copy eagerly",
|
||||
"Interview inserts with parents describing hope and challenges",
|
||||
"B-roll of aid distribution and shelter context",
|
||||
"A closing title-card with ways viewers can help"
|
||||
],
|
||||
"camera": "Observational classroom coverage with close pedagogical inserts",
|
||||
"accents": [
|
||||
"paper micro-fiber and pencil micro-lead strokes",
|
||||
"tent micro-fabric weave under daylight"
|
||||
],
|
||||
"mood": "compassionate resilience",
|
||||
"lighting": "soft daylight through tent fabric with gentle fill",
|
||||
"style": "humanitarian educational documentary"
|
||||
}
|
||||
]
|
||||
477
src/data/cinematic_and_film_styles_experimental_cinema.json
Normal file
477
src/data/cinematic_and_film_styles_experimental_cinema.json
Normal file
@ -0,0 +1,477 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Night under an abandoned overpass where projection fragments eat the concrete (dark/abstract)",
|
||||
"sceneVariants": [
|
||||
"Shifting monochrome films projected across graffiti",
|
||||
"Puddles reflecting warped frames",
|
||||
"A broken speaker emitting subsonic pulses",
|
||||
"Rust flakes drifting in slow motion",
|
||||
"A lone folding chair facing an empty screen"
|
||||
],
|
||||
"actions": [
|
||||
"Projector shutters stutter, slicing imagery into hesitant beats",
|
||||
"A passerby pauses and becomes a silhouette within the projection",
|
||||
"Cut to micro-frames of concrete pores that resolve into faces",
|
||||
"Sound design stretches a single cough into a layered chord"
|
||||
],
|
||||
"camera": "Slow dolly with jittered frame-rate stutters and overexposed projector inserts",
|
||||
"accents": [
|
||||
"grain micro-artefact and projector micro-glow haloing edges",
|
||||
"wet micro-reflection and concrete micro-pore detail"
|
||||
],
|
||||
"mood": "haunting fragmentation",
|
||||
"lighting": "cold projector beams with deep encroaching shadow",
|
||||
"style": "nonlinear projection-poetry"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dawn an empty ballroom where echoing footsteps fold into a choreography of lenses (light/elliptical)",
|
||||
"sceneVariants": [
|
||||
"Polished floor reflecting skylight slats",
|
||||
"Abandoned sheet music fluttering",
|
||||
"A single chandelier with missing bulbs",
|
||||
"Dust motes arranged into ribbons in a shaft of light",
|
||||
"A door left ajar breathing morning air"
|
||||
],
|
||||
"actions": [
|
||||
"Footsteps are layered and multiplied into a phantom chorus",
|
||||
"Lens swaps create concentric framing around a single moving dust mote",
|
||||
"Cut to reversed footage where exit becomes entrance",
|
||||
"A slow push-in matches the tempo of a single heartbeat"
|
||||
],
|
||||
"camera": "Circular dolly and slow in-camera zooms with deliberate lens focus shifts",
|
||||
"accents": [
|
||||
"floor micro-polish and dust micro-mote ribbons",
|
||||
"glass micro-prism on chandelier fragments"
|
||||
],
|
||||
"mood": "meditative displacement",
|
||||
"lighting": "soft high-key with micro-beam volumes",
|
||||
"style": "observational formalist cinema"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Midnight riverbank where audio textures build topography: voices form hills, breaths become wind (dark/sound-driven)",
|
||||
"sceneVariants": [
|
||||
"Long exposure ripples on water",
|
||||
"A collection of found microphones on stakes",
|
||||
"Wet reeds bowed like strings",
|
||||
"A floating lantern with a tiny speaker inside",
|
||||
"Footprints that dissolve into foam"
|
||||
],
|
||||
"actions": [
|
||||
"Field recordings of whispers are mapped spatially across the scene",
|
||||
"Breath samples trigger light pulses on the lanterns",
|
||||
"Cut to a waveform visual overlay that restructures the landscape",
|
||||
"A final negative audio inversion plays as the river laps silence"
|
||||
],
|
||||
"camera": "Slow tracking with layered audio-reactive edits and stitched POV fragments",
|
||||
"accents": [
|
||||
"water micro-caustic shimmer and microphone micro-grain",
|
||||
"reed micro-fiber and lantern micro-glow"
|
||||
],
|
||||
"mood": "sonic uncanny",
|
||||
"lighting": "dim practicals with audio-synced strobing",
|
||||
"style": "sound-sculpted experimental film"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Sunlit urban corridor where stickers and signage slowly peel to reveal hidden narratives (light/decollage)",
|
||||
"sceneVariants": [
|
||||
"Layers of posters torn to the point of translucency",
|
||||
"A chain link covered in handbills",
|
||||
"A billboard with successive skin layers",
|
||||
"Graffiti tags arranged like a palimpsest",
|
||||
"Sun-bleached glue relics holding old flyers"
|
||||
],
|
||||
"actions": [
|
||||
"Time-lapse of poster decay reveals hidden text and ghost images",
|
||||
"A hand peels a corner to uncover an earlier layer and reads a name",
|
||||
"Cut to overlayed typography animating into sentences",
|
||||
"A breeze scatters fragments that land like punctuation"
|
||||
],
|
||||
"camera": "Macro time-lapse inserts and static wide establishing frames",
|
||||
"accents": [
|
||||
"paper micro-delamination and glue micro-residue detail",
|
||||
"sun micro-fade on printed pigments"
|
||||
],
|
||||
"mood": "archival curiosity",
|
||||
"lighting": "clear hard daylight emphasizing texture",
|
||||
"style": "decollage documentary-poem"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Night in a labyrinthine archive where frames of family reels loop into unfamiliar genealogies (dark/memory-play)",
|
||||
"sceneVariants": [
|
||||
"Shelves stacked high with reels and dusty cans",
|
||||
"A projector spitting intermittent frames onto a rolling map",
|
||||
"Yellowed handwritten labels in foreign ink",
|
||||
"A chair with two shadows under single lamplight",
|
||||
"A corridor of sliding ladders"
|
||||
],
|
||||
"actions": [
|
||||
"Frames loop and cross-fade into other family scenes creating alien continuity",
|
||||
"An archivist physically intervenes, rearranging reels to test narrative outcomes",
|
||||
"Cut to a match cut where a child's laughter becomes a different voice",
|
||||
"A final reel burns out leaving an abrupt freeze frame"
|
||||
],
|
||||
"camera": "Choreographed crane moves through stacks with jittery hand-camera inserts for flux",
|
||||
"accents": [
|
||||
"film micro-grain and can micro-rust",
|
||||
"lamp micro-halo and paper micro-yellowing"
|
||||
],
|
||||
"mood": "nostalgic disorientation",
|
||||
"lighting": "low warm practicals punctuated by projector cool glow",
|
||||
"style": "memory-assembly experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dawn field where mirrored panels create a fractured horizon and actors move only when reflection changes (light/psychic)",
|
||||
"sceneVariants": [
|
||||
"A horizon broken into segmented mirrors",
|
||||
"Footprints leading to panels and stopping",
|
||||
"A small tripod anchoring the mirror array",
|
||||
"A wind-bent grass pattern repeating like code",
|
||||
"A distant car sound that appears distorted"
|
||||
],
|
||||
"actions": [
|
||||
"Actors choreograph movement that is enabled only by reflection alignment",
|
||||
"A mirrored sequence reveals actions in alternate temporal order",
|
||||
"Cut to a mirrored doorway that inverts left-right choreography",
|
||||
"A final collapse of panels recomposes the horizon into a new vista"
|
||||
],
|
||||
"camera": "Rigged mirror tracking with syncopated cuts matched to reflection triggers",
|
||||
"accents": [
|
||||
"glass micro-refraction and grass micro-tilt",
|
||||
"mirror micro-edge imperfections"
|
||||
],
|
||||
"mood": "eerie recalibration",
|
||||
"lighting": "bright fractured daylight with strong highlights",
|
||||
"style": "reflection-based experimental staging"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Midnight kitchen where culinary gestures are filmed at hyper-speed and slowed to observe rituals (dark/ritual)",
|
||||
"sceneVariants": [
|
||||
"Oil shimmering in a skillet under overhead lamp",
|
||||
"Knives arranged like constellation points",
|
||||
"A clock running at odd interpolations",
|
||||
"Steam traced in slow curl lines",
|
||||
"A jar of preserved lemons on a shelf"
|
||||
],
|
||||
"actions": [
|
||||
"A chopping sequence slows to reveal micro-impacts and textures",
|
||||
"Heat bloom animated as color shifts across ingredients",
|
||||
"Cut to hands that repeat gestures like a ritual chant",
|
||||
"A final plate assembled in stop-motion cadence"
|
||||
],
|
||||
"camera": "Macro high-speed inserts combined with ultra-slow push-ins",
|
||||
"accents": [
|
||||
"oil micro-sheen and knife micro-edge reflections",
|
||||
"steam micro-vapor threads and ceramic micro-gloss"
|
||||
],
|
||||
"mood": "ceremonial attention",
|
||||
"lighting": "focused warm kitchen practicals with chilled peripheral tones",
|
||||
"style": "culinary micro-ritual film"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dawn abandoned school where chalk marks grow into animated diagrams mapping internal monologues (light/poetic)",
|
||||
"sceneVariants": [
|
||||
"Blackboards layered with partially erased lessons",
|
||||
"A spiral of chalk dust on a windowsill",
|
||||
"An old school bell with peeling paint",
|
||||
"A desk with carved initials and dates",
|
||||
"A skylight frosting as day warms"
|
||||
],
|
||||
"actions": [
|
||||
"Chalk lines animate and form diagrams that interpret a student's inner voice",
|
||||
"Pencil sketches lift off pages and orbit the room plaintively",
|
||||
"Cut to a word slowly written across multiple boards forming a poem",
|
||||
"A final hand erases then leaves a single, resolute line"
|
||||
],
|
||||
"camera": "Slow tracking over surfaces with animated overlay inserts",
|
||||
"accents": [
|
||||
"chalk micro-powder and wood micro-patina",
|
||||
"paper micro-fiber on notes"
|
||||
],
|
||||
"mood": "intimate introspection",
|
||||
"lighting": "soft morning glare with high detail on texture",
|
||||
"style": "poetic educational experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Night rooftop greenhouse where plants are filmed in extreme macro and reveal cellular choreography (dark/microscopic wonder)",
|
||||
"sceneVariants": [
|
||||
"Condensation micro-pearls sliding on glass",
|
||||
"A cluster of seedlings with minute hairs",
|
||||
"A single lamp casting even growth light",
|
||||
"A vapour line drifting into a lens",
|
||||
"A thin gauge time-lapse rail"
|
||||
],
|
||||
"actions": [
|
||||
"Macro growth sequences reveal rhythmic cell-like motion",
|
||||
"A plant's stomata animate to breath in sync with ambient music",
|
||||
"Cut to split screens showing cellular and city-scale parallels",
|
||||
"A final bloom resolves as a geometric pattern"
|
||||
],
|
||||
"camera": "Extreme macro with motion-controlled time-lapse and layered micro-focus",
|
||||
"accents": [
|
||||
"cell micro-venation and glass micro-condensation",
|
||||
"leaf micro-hair and soil micro-granularity"
|
||||
],
|
||||
"mood": "awe at the small",
|
||||
"lighting": "controlled soft growth light with cool background shadow",
|
||||
"style": "bio-macro experimental cinema"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dawn industrial estate where mechanical loops are recorded and rhythmically remixed into an urban symphony (light/mechanic)",
|
||||
"sceneVariants": [
|
||||
"Conveyor hums forming drone foundations",
|
||||
"Clocks in staggered phases mounted on site",
|
||||
"Steam valves that hiss in patterned pulses",
|
||||
"A chain of pulleys clicking with regularity",
|
||||
"A distant factory whistle blowing the hour"
|
||||
],
|
||||
"actions": [
|
||||
"Field recordings are sampled live and looped to create evolving rhythmic textures",
|
||||
"Machines are staged as performers responding to audio cues",
|
||||
"Cut to choreographed motion of cranes in time with percussive edits",
|
||||
"A final collapse of rhythm resolves into ambient silence"
|
||||
],
|
||||
"camera": "Rigid industrial wide mixed with spinning rotary inserts synced to sound loops",
|
||||
"accents": [
|
||||
"metal micro-resonance and chain micro-link detail",
|
||||
"steam micro-pulse and clock micro-tick"
|
||||
],
|
||||
"mood": "mechanical awe",
|
||||
"lighting": "clear early light with strong directional shafts",
|
||||
"style": "industrial sound-image experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Midnight corridor of mirrors where the actor moves while the reflection lags, creating a stroboscopic identity split (dark/dislocated)",
|
||||
"sceneVariants": [
|
||||
"A corridor lined with tall mirrors",
|
||||
"A single ceiling lamp reflected infinitely",
|
||||
"Tile floor with wet sheen",
|
||||
"A distant door with a sliver of light",
|
||||
"A seam in the mirror slightly offset"
|
||||
],
|
||||
"actions": [
|
||||
"Actor's gestures are captured and replayed by reflections with temporal offset",
|
||||
"A strobe triggers synthetic freeze-frames that rearrange movement grammar",
|
||||
"Cut to close eyes and reflection mismatches forming narrative discrepancy",
|
||||
"A final alignment snaps reflections back into sync with a subtle shock"
|
||||
],
|
||||
"camera": "Tracking with mirrored multiplane and strobe-synced frame cuts",
|
||||
"accents": [
|
||||
"glass micro-fracture and light micro-prisming",
|
||||
"tile micro-reflection and seam micro-offset"
|
||||
],
|
||||
"mood": "alienated introspection",
|
||||
"lighting": "cool strobe punctuated by single warm practical",
|
||||
"style": "mirror-time experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Sunlit orchard where colors are inverted in-camera and characters act as if in two palettes (light/colour-play)",
|
||||
"sceneVariants": [
|
||||
"Rows of fruit trees with high-saturation leaves",
|
||||
"A picnic cloth patterned in complementary hues",
|
||||
"A pair of old bicycles leaning in mirrored color",
|
||||
"A ladder resting against a low branch",
|
||||
"A crate of fruit with mismatched stickers"
|
||||
],
|
||||
"actions": [
|
||||
"In-camera color inversion causes choreography to react to two color logic systems",
|
||||
"Actors adjust costumes mid-scene to harmonize alternating palettes",
|
||||
"Cut to split palette dissolves that create optical counterpoint",
|
||||
"A final normalisation returns the orchard to its original tonality"
|
||||
],
|
||||
"camera": "In-camera color manipulation with matched cuts and optical dissolves",
|
||||
"accents": [
|
||||
"fruit micro-skin sheen and cloth micro-fiber in altered hues",
|
||||
"leaf micro-edge saturation"
|
||||
],
|
||||
"mood": "visually playful",
|
||||
"lighting": "bright high-key with deliberate color balances",
|
||||
"style": "chromatic formalist experiment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dusk telegraph office where code is filmed as kinetic typography and operators become performers (dark/typographic)",
|
||||
"sceneVariants": [
|
||||
"Rows of tapped telegraph keys and inked logs",
|
||||
"A spool of punched paper tape snaking across a table",
|
||||
"A small bell chiming reception tones",
|
||||
"A ledger of departures and arrivals",
|
||||
"A cigarette stub in an ashtray"
|
||||
],
|
||||
"actions": [
|
||||
"Morse clicks are visualized as kinetic typography projected into the space",
|
||||
"Operators react to projected words that rearrange their tasks",
|
||||
"Cut to overhead patterning of punched tape forming symbolic maps",
|
||||
"A final silent arc plays where visual text collapses into a single glyph"
|
||||
],
|
||||
"camera": "Static rigs for projection stability mixed with operator close-in reactions",
|
||||
"accents": [
|
||||
"paper micro-perforation and key micro-polish",
|
||||
"ink micro-stroke and tape micro-brittle edge"
|
||||
],
|
||||
"mood": "conceptual resonance",
|
||||
"lighting": "low practicals with projection contrast",
|
||||
"style": "typographic cine-poem"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Midnight laundromat where film emulsion is manually scratched to create a rhythmic, hand-made soundtrack (dark/tactile)",
|
||||
"sceneVariants": [
|
||||
"Rows of metal drums reflecting street lights",
|
||||
"Scratched film negative samples pinned on a board",
|
||||
"A glass jar of developer marked in chalk",
|
||||
"A faucet dripping in regular intervals",
|
||||
"A wooden stool with paint marks"
|
||||
],
|
||||
"actions": [
|
||||
"Hand-scratching emulsion produces percussive sounds synced to image textures",
|
||||
"Experimental playback alters pitch and creates a new score",
|
||||
"Cut to the tactile motion of the artist's knife crossing celluloid",
|
||||
"A final run-through plays the scratched reel as a mechanical drum"
|
||||
],
|
||||
"camera": "Macro inserts on emulsion surface and hand motion, coupled with sync audio capture",
|
||||
"accents": [
|
||||
"emulsion micro-scratch and developer micro-smear detail",
|
||||
"metal micro-reflection on drum surfaces"
|
||||
],
|
||||
"mood": "craft-driven intensity",
|
||||
"lighting": "narrow cool practicals with accented highlights",
|
||||
"style": "hand-made cine-sonic experiment"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Sunlit commuter train where frame-rate shifts render commuters into stop-motion citizens (light/tempo-play)",
|
||||
"sceneVariants": [
|
||||
"Rows of seats and swinging handles",
|
||||
"Advertising panels becoming rhythmic patterns",
|
||||
"A timetable poster with shifting times",
|
||||
"A coffee cup left in a tray",
|
||||
"A flickering carriage display"
|
||||
],
|
||||
"actions": [
|
||||
"Intercut frame-rate drops create staccato movement among travelers",
|
||||
"A single gesture repeated across riders becomes motif",
|
||||
"Cut to rhythmic match-cuts of train doors opening and closing in stop-motion",
|
||||
"A final fluid speed returns normalcy with an uncanny aftertaste"
|
||||
],
|
||||
"camera": "Variable frame-rate shooting with matched edit tempo",
|
||||
"accents": [
|
||||
"plastic micro-grain on handles and seat micro-fabric",
|
||||
"display micro-flicker and cup micro-drip"
|
||||
],
|
||||
"mood": "kinetic estrangement",
|
||||
"lighting": "balanced daylight through carriage windows",
|
||||
"style": "temporal manipulation experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dawn abandoned cinema where film leaders and cue marks form a choreography of absent viewers (light/haunting)",
|
||||
"sceneVariants": [
|
||||
"Rows of tattered seats and faded programs",
|
||||
"A projection booth with silent mechanisms",
|
||||
"A reel of leader tape feeding into nothing",
|
||||
"A crumb-filled aisle with shoe impressions",
|
||||
"A marquee bulb burned out"
|
||||
],
|
||||
"actions": [
|
||||
"Leader tapes unravel and form rhythmic patterns across the floor",
|
||||
"Cue marks animate visually into punctuation that frames imagined frames",
|
||||
"Cut to a choreography of empty seats that sway like a crowd in memory",
|
||||
"A final leader burns out into blankness"
|
||||
],
|
||||
"camera": "Slow paced crane across auditorium with tactile inserts on film leader",
|
||||
"accents": [
|
||||
"film micro-leader texture and seat micro-fabric wear",
|
||||
"bulb micro-fade and dust micro-particles"
|
||||
],
|
||||
"mood": "nostalgic emptiness",
|
||||
"lighting": "soft pre-dawn with projection booth cool glow",
|
||||
"style": "memory-of-cinema experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Midnight botanical lab where luminescent algae are filmed in extreme long exposure to paint the dark (dark/ambient)",
|
||||
"sceneVariants": [
|
||||
"Petri dishes glowing faintly in racks",
|
||||
"A pipette tracing fluid arcs",
|
||||
"A time-lapse rail registering slow blooms",
|
||||
"A black drape absorbing stray light",
|
||||
"A notebook of spectral readings"
|
||||
],
|
||||
"actions": [
|
||||
"Long exposures record algae trails that become painterly ribbons",
|
||||
"Sound design stretches bubbling into harmonic drones",
|
||||
"Cut to split tonal layers where spectral readings map to color shifts",
|
||||
"A final composite reveals a living constellatory pattern"
|
||||
],
|
||||
"camera": "Extended long-exposure macro combined with layered compositing",
|
||||
"accents": [
|
||||
"algae micro-biolume and glass micro-condensation",
|
||||
"pipette micro-droplet clarity"
|
||||
],
|
||||
"mood": "hypnotic wonder",
|
||||
"lighting": "internal bioluminescent glow with deep surrounding black",
|
||||
"style": "bio-light experimental imagery"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Dawn city underpass where commuters' shadows splice into a single flowing organism (light/collective)",
|
||||
"sceneVariants": [
|
||||
"Pillars with layered posters and scrawl",
|
||||
"A bike chained to a support covered in stickers",
|
||||
"Morning commuters with initial steam breath",
|
||||
"A distant bus exhaling condensation",
|
||||
"A puddle doubling the pillar geometry"
|
||||
],
|
||||
"actions": [
|
||||
"Shadows merge in time-lapse into a single animated ribbon weaving among pillars",
|
||||
"Commuters perform micro-actions that the shadow-organism replays with offset timing",
|
||||
"Cut to a synchronized step sequence produced purely by shadow choreography",
|
||||
"The organism dissolves as sunlight clears the underpass"
|
||||
],
|
||||
"camera": "Low-angle panoramic with shadow-focused framing and rhythmic jump cuts",
|
||||
"accents": [
|
||||
"concrete micro-grit and shadow micro-edge softening",
|
||||
"sticker micro-print and bike micro-chain detail"
|
||||
],
|
||||
"mood": "communal surreal",
|
||||
"lighting": "cool early morning with contrasty shadow",
|
||||
"style": "collective shadow experimental"
|
||||
},
|
||||
{
|
||||
"subGenre": "Experimental Cinema",
|
||||
"scene": "Midnight archive of forgotten audio where spectrograms are projected and dancers interpret frequency shapes (dark/abstract-sound)",
|
||||
"sceneVariants": [
|
||||
"Stacks of lacquered discs and tape reels",
|
||||
"A projector rendering spectrograms onto a smoke wall",
|
||||
"A dancer with audio-reactive costume",
|
||||
"A broken metronome ticking unevenly",
|
||||
"A console with knobs and patch bays"
|
||||
],
|
||||
"actions": [
|
||||
"Spectrograms morph and dancers trace their contours physically",
|
||||
"Audio artifacts are sampled and re-projected to reshape choreography",
|
||||
"Cut to a tactile exchange between musician hands and dancer limbs",
|
||||
"A final blackout leaves only residual reverberation"
|
||||
],
|
||||
"camera": "Sonic-synced camera moves with close inserts on audio equipment and dancer contact points",
|
||||
"accents": [
|
||||
"spectrogram micro-gradient and tape micro-hiss texture",
|
||||
"costume micro-led response and knob micro-knurl detail"
|
||||
],
|
||||
"mood": "aural embodiment",
|
||||
"lighting": "projector-driven color against night",
|
||||
"style": "sonic-visual performance film"
|
||||
}
|
||||
]
|
||||
502
src/data/cinematic_and_film_styles_fantasy_epics.json
Normal file
502
src/data/cinematic_and_film_styles_fantasy_epics.json
Normal file
@ -0,0 +1,502 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "High cliff citadel at midnight where banners flutter above an ancient keep (dark/ominous)",
|
||||
"sceneVariants": [
|
||||
"Storm-lashed parapets with flag tattered at the tip",
|
||||
"A lone lantern bobbing on a guard's tower",
|
||||
"Razor-like silhouettes of distant mountains",
|
||||
"A line of sentries casting long spear-shadow patterns",
|
||||
"A carved gargoyle watching the valley below"
|
||||
],
|
||||
"actions": [
|
||||
"A scouting rider returns breathless with urgent news",
|
||||
"Signal fires are lit in a precise, archaic pattern",
|
||||
"Cutaway to a map table as generals argue strategy",
|
||||
"A hidden emissary slips a sealed letter under a door"
|
||||
],
|
||||
"camera": "Slow crane down the battlements, periodic tight inserts on faces and sigils",
|
||||
"accents": [
|
||||
"wet cloth micro-thread flutter and rain micro-sheen on stone",
|
||||
"torch micro-flicker catching carved reliefs"
|
||||
],
|
||||
"mood": "tense foreboding",
|
||||
"lighting": "stormy moonlight pierced by warm torch pools",
|
||||
"style": "epic classical fantasy cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Moonlit enchanted forest where ancient trees breathe and paths rearrange (dark/mystical)",
|
||||
"sceneVariants": [
|
||||
"Roots forming archways like ribbed cathedrals",
|
||||
"Moss patches glowing with inner light",
|
||||
"Mist coiling around carved standing stones",
|
||||
"Animal eyes reflecting like emerald beads",
|
||||
"A hidden glade ringed with rune-carved stumps"
|
||||
],
|
||||
"actions": [
|
||||
"A ranger navigates shifting trails guided by whispered voices",
|
||||
"A ritual circle briefly ignites with ancestral glyphs",
|
||||
"Cut to an aerial reveal of forest geometry changing like a living map",
|
||||
"A protective spirit materializes to block a passing threat"
|
||||
],
|
||||
"camera": "Fluid dolly through tree trunks with occasional wide reveal sweeps",
|
||||
"accents": [
|
||||
"biolume micro-halo on moss and leaf micro-venation detail",
|
||||
"mist micro-volumetrics around runes"
|
||||
],
|
||||
"mood": "ancient awe",
|
||||
"lighting": "cold lunar rim-light with warm spirit glows",
|
||||
"style": "lush, painterly epic fantasy"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Underground cavern palace filled with crystalline stalagmites and vaulted echoes (dark/grand)",
|
||||
"sceneVariants": [
|
||||
"Cathedral-size caverns refracting faint luminescence",
|
||||
"Crystal chandeliers dripping prismatic tears",
|
||||
"A subterranean river reflecting inverted constellations",
|
||||
"Stone bridges carved with historic battle reliefs",
|
||||
"Rows of jeweled thrones under a vaulted ceiling"
|
||||
],
|
||||
"actions": [
|
||||
"A diplomatic procession crosses the bridge in ceremonial armor",
|
||||
"Echoing drums announce the arrival of an army of emissaries",
|
||||
"Cut to close-ups of hands exchanging jeweled tokens",
|
||||
"A sudden subterranean tremor interrupts proceedings"
|
||||
],
|
||||
"camera": "Wide low-angle lenses to accentuate vertical scale with slow push-ins on crystal facets",
|
||||
"accents": [
|
||||
"crystal micro-refraction and wet stone micro-polish",
|
||||
"echo micro-sound-compression on distant percussion"
|
||||
],
|
||||
"mood": "awe and ritual weight",
|
||||
"lighting": "selective cool highlights from crystals with deep shadow pockets",
|
||||
"style": "grand subterranean fantasy spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Dawn on a rolling plain where two rival banners prepare for a massive clash (light/tense)",
|
||||
"sceneVariants": [
|
||||
"Rows of armored cavalry silhouetted against sunrise",
|
||||
"Standard-bearers tightening pennants in the cold orange light",
|
||||
"Campfires being stoked as trumpets faintly sound",
|
||||
"Distant hilltops dotted with infantry spears",
|
||||
"A field medic tent with hurried hands"
|
||||
],
|
||||
"actions": [
|
||||
"Horn calls ripple across lines; formations shift into polished choreography",
|
||||
"Commanders exchange a brief parley before retreating to positions",
|
||||
"Cut to slow-motion cavalry charge with dust-storm motifs",
|
||||
"A medic rushes to tend to the first wounded as cavalry passes"
|
||||
],
|
||||
"camera": "Epic horizon-wide framings with fast-tracking on mounted charges",
|
||||
"accents": [
|
||||
"metal micro-sheen on armor and dust micro-particles arcing in sunlight",
|
||||
"cloth micro-weave on flags with rim micro-light catches"
|
||||
],
|
||||
"mood": "heroic tension",
|
||||
"lighting": "warm golden sunrise with high-key fill",
|
||||
"style": "cinematic battlefield fantasy"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Midnight sorcerer's conclave atop a ruined ziggurat, sigils swirling in the air (dark/arcane)",
|
||||
"sceneVariants": [
|
||||
"Floating glyphs spinning like slow moons",
|
||||
"Robed figures with ornamented staves in ring formation",
|
||||
"A central altar cracked with pulsing light",
|
||||
"Ancient tapestries showing astronomical diagrams",
|
||||
"A hush broken by a soft incantation ripple"
|
||||
],
|
||||
"actions": [
|
||||
"Sorcerers chant, their glyphs weaving into a luminous lattice",
|
||||
"A novice miscasts and a protective ward shudders",
|
||||
"Cut to a viewpoint inside a glyph as it folds reality briefly",
|
||||
"A sealed tome opens to a forbidden page"
|
||||
],
|
||||
"camera": "Tight rotating dolly around the circle, occasional POV through sigils",
|
||||
"accents": [
|
||||
"arcane micro-runic shimmer and fabric micro-embroider detail",
|
||||
"powder micro-sparkles as glyphs rearrange"
|
||||
],
|
||||
"mood": "tense mysticism",
|
||||
"lighting": "cold inner-rune light with stark surrounding darkness",
|
||||
"style": "ceremonial arcane cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Sunlit merchant city bazaar where exotic caravans trade rare artifacts (light/vibrant)",
|
||||
"sceneVariants": [
|
||||
"Colorful awnings fluttering above narrow lanes",
|
||||
"Stalls stacked with scrolls, spices, and small relics",
|
||||
"A fountain tiled in mosaic reflecting crowd movement",
|
||||
"Street performers weaving acrobatic dances",
|
||||
"A merchant caravan arriving with animal teams"
|
||||
],
|
||||
"actions": [
|
||||
"Brokers haggle fiercely while ambassadors observe",
|
||||
"A pickpocket is quietly apprehended then pardoned by a noble",
|
||||
"Cut to montage of exotic goods being appraised and sealed for transit",
|
||||
"A child trades a simple trinket for an improbable story"
|
||||
],
|
||||
"camera": "Busy handheld-style tracking through stalls with selective close-in details",
|
||||
"accents": [
|
||||
"textile micro-thread richness and spice micro-powder particulate",
|
||||
"ceramic micro-glaze and coin micro-engrave highlights"
|
||||
],
|
||||
"mood": "lively curiosity",
|
||||
"lighting": "high-key warm daylight with deep saturated color",
|
||||
"style": "colorful marketplace epic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Night siege of a floating fortress where ropes and grapnels arc through lit sky (dark/chaotic)",
|
||||
"sceneVariants": [
|
||||
"Fire-lit grappling lines swinging under a star-dim sky",
|
||||
"Smoke plumes from burning tether-lines",
|
||||
"Silhouetted defenders on skyward battlements",
|
||||
"A ripped sail drifting like a phantom",
|
||||
"A ladder of ropes connecting drifting platforms"
|
||||
],
|
||||
"actions": [
|
||||
"Assault teams swing and cling to hull plates in desperate sequences",
|
||||
"Explosive incendiaries bloom into slow-motion sparks",
|
||||
"Cut to defensive ballistas firing with ringing metal sound",
|
||||
"A hero sacrifices position to close a breach"
|
||||
],
|
||||
"camera": "Chaotic wide-to-tight cuts with vertigo-inducing crane moves",
|
||||
"accents": [
|
||||
"ember micro-glow and rope micro-fray detail",
|
||||
"metal micro-spark as ballista bolts strike"
|
||||
],
|
||||
"mood": "adrenalized peril",
|
||||
"lighting": "burning warm highlights against cool starry sky",
|
||||
"style": "high-stakes aerial fantasy action"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Dawn council in a glass greenhouse palace where rulers debate an old prophecy (light/intellectual)",
|
||||
"sceneVariants": [
|
||||
"Glass domes fogged with morning breath",
|
||||
"An ornate round table engraved with ancestral sigils",
|
||||
"Trellised plants creeping across marble balustrades",
|
||||
"Scrolls and star-maps unfurled under a skylight",
|
||||
"A child courier awaiting word outside"
|
||||
],
|
||||
"actions": [
|
||||
"Rulers trade measured words while a scholar annotates a prophecy",
|
||||
"A map overlay animates predicted battle lines",
|
||||
"Cut to a slow reveal of a conspirator’s subtle hand sign",
|
||||
"A messenger departs, sealing the council's decision"
|
||||
],
|
||||
"camera": "Measured medium shots, occasional sympathetic close-ups on hands and eyes",
|
||||
"accents": [
|
||||
"glass micro-condensation and marble micro-vein highlights",
|
||||
"paper micro-fiber and ink micro-stroke detail"
|
||||
],
|
||||
"mood": "cerebral gravitas",
|
||||
"lighting": "soft morning daylight through glass with high clarity",
|
||||
"style": "elegant palace drama within an epic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Midnight ice field where a dragon sleeps coiled around a frozen throne (dark/terrifying)",
|
||||
"sceneVariants": [
|
||||
"Icicle chandeliers humming with trapped electricity",
|
||||
"Breath fog curling from the dragon's nostrils",
|
||||
"Shards of frozen banners scattered like glass",
|
||||
"A distant aurora rippling overhead",
|
||||
"Scattered bone ornaments embedded in ice"
|
||||
],
|
||||
"actions": [
|
||||
"An infiltration team tiptoes across brittle ice to the dragon's flank",
|
||||
"A failed signal awakens the beast with a resonant roar",
|
||||
"Cut to thermal overlays mapping the dragon's heat signature",
|
||||
"One member distracts the dragon to allow others to flee"
|
||||
],
|
||||
"camera": "Slow creeping dollies with sudden whip-pans at the dragon's movements",
|
||||
"accents": [
|
||||
"ice micro-crackle and scale micro-refraction",
|
||||
"breath micro-mist with sub-surface micro-bubbles"
|
||||
],
|
||||
"mood": "cold dread",
|
||||
"lighting": "sharp cold moonlight with crystalline rim highlights",
|
||||
"style": "monstrous high-fantasy terror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Sunlit hero's procession through reclaimed capital after long war (light/victorious)",
|
||||
"sceneVariants": [
|
||||
"Crowds lining ornate avenues waving pennants",
|
||||
"Children perched on shoulders handing flowers",
|
||||
"Banners newly sewn with patched heraldry",
|
||||
"A bell tower chiming the return",
|
||||
"Tear-streaked reunions between soldiers and families"
|
||||
],
|
||||
"actions": [
|
||||
"Veterans march in measured cadence while citizens cheer",
|
||||
"A leader dismounts to clasp hands with a survivor",
|
||||
"Cut to medallion close-ups given to those who distinguished themselves",
|
||||
"A music swell lifts a final panoramic city reveal"
|
||||
],
|
||||
"camera": "Triumphant steady tracking with soaring crane lifts for the final wide",
|
||||
"accents": [
|
||||
"fabric micro-fray on patched banners and coin micro-sheen",
|
||||
"skin micro-salt on tear-streaked faces"
|
||||
],
|
||||
"mood": "relieved jubilation",
|
||||
"lighting": "warm high-key midday with celebratory flares",
|
||||
"style": "ceremonial fantasy climax"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Dawn shrine in the high desert where pilgrims circle an ancient meteor shard (light/reverent)",
|
||||
"sceneVariants": [
|
||||
"Sand ripples like a living tapestry",
|
||||
"Carved stelae casting long morning shadows",
|
||||
"Pilgrims wrapped in sun-shimmering fabrics",
|
||||
"A low altar with offerings of colored glass",
|
||||
"Distant dunes punctuated by solitary watchfires"
|
||||
],
|
||||
"actions": [
|
||||
"Pilgrims sing a low chant as they place offerings",
|
||||
"A storm cloud forms unexpectedly over the shard and rains down luminous dust",
|
||||
"Cut to a close on faded glyphs being traced by an elder",
|
||||
"A child reaches to touch the meteor and is stopped by a guardian"
|
||||
],
|
||||
"camera": "Quiet panoramic sweep with intimate inserts on ritual gestures",
|
||||
"accents": [
|
||||
"sand micro-grain and glass micro-gleam on offerings",
|
||||
"fabric micro-weave catching rim sunlight"
|
||||
],
|
||||
"mood": "solemn wonder",
|
||||
"lighting": "soft hazy sunrise with high atmospheric scattering",
|
||||
"style": "spiritual pilgrimage tableau"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Night market in a canyon metropolis where magic and machinery trade hands (dark/energetic)",
|
||||
"sceneVariants": [
|
||||
"Steam vents hissing between lamped stalls",
|
||||
"Back-alley neon sigils painted on rock faces",
|
||||
"Mechanical familiars offering services at counters",
|
||||
"Hanging cages with glowing fauna for sale",
|
||||
"A narrow sky-bridge buzzing with foot traffic"
|
||||
],
|
||||
"actions": [
|
||||
"An arms dealer parries a thief with a quick sleight of hand",
|
||||
"A street alchemist brews a volatile potion that ignites in miniature spectacle",
|
||||
"Cut to a negotiation over clockwork components and rune-ink",
|
||||
"A covert hand-off occurs under a torn awning"
|
||||
],
|
||||
"camera": "Energetic handheld-like tracking with quick close-up cuts on transactions",
|
||||
"accents": [
|
||||
"oil micro-sheen on machinery and rune micro-ink fluorescence",
|
||||
"smoke micro-particles catching colored light"
|
||||
],
|
||||
"mood": "charged intrigue",
|
||||
"lighting": "mixed cool neon and warm hearth pockets",
|
||||
"style": "urban-fantasy bazaar cinematic"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Dawn fortress library where sages unroll a map that shifts like living topography (light/learned)",
|
||||
"sceneVariants": [
|
||||
"Rows of scrolls and layered cartographic reliefs",
|
||||
"An animated globe rotating to reveal hidden paths",
|
||||
"Scribes with ink-stained fingers and magnifiers",
|
||||
"A latticed window pouring ribboned sunlight",
|
||||
"A small bell that rings for quiet when secrets are revealed"
|
||||
],
|
||||
"actions": [
|
||||
"Scribes trace a migrating route that blossoms into tactical possibilities",
|
||||
"A librarian finds an annotation revealing an ancient alliance",
|
||||
"Cut to marginalia brought to life as miniature vignettes",
|
||||
"A scholar closes the map, eyes reflecting a newly formed plan"
|
||||
],
|
||||
"camera": "Measured push-ins with soft-lit inserts on parchment texture",
|
||||
"accents": [
|
||||
"parchment micro-tooth and sepia micro-ink bleed",
|
||||
"wood micro-polish on lecterns and lens micro-refraction"
|
||||
],
|
||||
"mood": "curious gravitas",
|
||||
"lighting": "soft morning daylight with high detail capture",
|
||||
"style": "intellectual cinematic fantasy"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Midnight marsh where will-o'-wisps guide a rebel band through a dangerous pass (dark/ethereal)",
|
||||
"sceneVariants": [
|
||||
"Swamp vapors curling into lantern shapes",
|
||||
"Plank bridges half-submerged and slick",
|
||||
"Haggard footprints disappearing into reeds",
|
||||
"An old shrine half-swallowed by reeds",
|
||||
"A watchful heron statue with an uncanny eye"
|
||||
],
|
||||
"actions": [
|
||||
"Guides follow ephemeral lights while scouts listen for unseen threats",
|
||||
"A sudden sinkhole swallows a pack, forcing an improvised rescue",
|
||||
"Cut to a tense whisper conference under the wisp-lit canopy",
|
||||
"A leader sacrifices a pack animal to lighten the group's load"
|
||||
],
|
||||
"camera": "Low-angled tracking with shallow depth and slow parallax moves",
|
||||
"accents": [
|
||||
"vapor micro-haze and reed micro-fiber detail",
|
||||
"water micro-surface ripple reflections"
|
||||
],
|
||||
"mood": "tense wonder",
|
||||
"lighting": "muted cold glows from will-o'-wisps with deep ambient shadow",
|
||||
"style": "mystical low-light fantasy pursuit"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Sunlit coral reef city where merfolk trade stories and forged tridents (light/alien-beauty)",
|
||||
"sceneVariants": [
|
||||
"Columns of living coral sculpted into market arches",
|
||||
"Kelp banners swaying in slow currents",
|
||||
"Bioluminescent signage pulsing like heartbeat",
|
||||
"Carved shell stalls filled with polished pearls",
|
||||
"A tide-stair leading to a ceremonial platform"
|
||||
],
|
||||
"actions": [
|
||||
"Merfolk artisans hammer trident heads in rhythmic water currents",
|
||||
"An elder recites a sea-legend while fish swirl to form illustrations",
|
||||
"Cut to close macro of pearl micro-luster as a deal is struck",
|
||||
"A performance of synchronized aquatic dance marks a treaty"
|
||||
],
|
||||
"camera": "Fluid underwater tracking with slow, graceful arcs and wide panoramas",
|
||||
"accents": [
|
||||
"biolume micro-glow and coral micro-porosity detail",
|
||||
"water micro-caustics shimmering across surfaces"
|
||||
],
|
||||
"mood": "otherworldly serenity",
|
||||
"lighting": "filtered bright underwater daylight with colored rim lights",
|
||||
"style": "aquatic fantasy epic with immersive worldbuilding"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Dawn training grounds where apprentices spar under watchful masters (light/ritualized)",
|
||||
"sceneVariants": [
|
||||
"Wooden dummies arranged in concentric rings",
|
||||
"Sparring marks painted on a packed-earth floor",
|
||||
"Master instructors pacing with measured authority",
|
||||
"A bell signaling the change of students",
|
||||
"A row of weapons polished and displayed"
|
||||
],
|
||||
"actions": [
|
||||
"Apprentices engage in choreographed drills that test discipline",
|
||||
"A favored student lands an unexpected technique, earning a master’s nod",
|
||||
"Cut to slow-motion detail of blade-edge micro-shavings",
|
||||
"A teaching moment where a master corrects posture and voice"
|
||||
],
|
||||
"camera": "Measured medium shots with deliberate slow motion for key maneuvers",
|
||||
"accents": [
|
||||
"wood micro-grain on dummies and metal micro-gleam on training blades",
|
||||
"dust micro-bead kicked up in rhythmic arcs"
|
||||
],
|
||||
"mood": "disciplined inspiration",
|
||||
"lighting": "clear morning sunlight with crisp shadows",
|
||||
"style": "ritualized training montage in epic scale"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Nightfall on a ruined bridge where a whispered bargain changes the course of war (dark/conspiratorial)",
|
||||
"sceneVariants": [
|
||||
"Broken arches with creeping ivy and pooled rainwater",
|
||||
"A single lantern hung from a battered post",
|
||||
"Footprints erasing into mud as speakers depart",
|
||||
"A carved amphora half-buried near the parapet",
|
||||
"A raven perched and watching with tilted head"
|
||||
],
|
||||
"actions": [
|
||||
"Two cloaked figures exchange a blood-signed pact in low voices",
|
||||
"An unseen scout overhears and slips away to carry the secret",
|
||||
"Cut to an insert of a ring sliding from a hand into the other's palm",
|
||||
"A distant horn sounds, interrupting the final word"
|
||||
],
|
||||
"camera": "Tight two-shot with textured background, pulling back for a silhouette reveal",
|
||||
"accents": [
|
||||
"wet stone micro-sheen and cloak micro-fiber detail",
|
||||
"lantern micro-halo and subtle insect micro-buzz in audio"
|
||||
],
|
||||
"mood": "tense secrecy",
|
||||
"lighting": "single lantern warm pool amid cool damp night",
|
||||
"style": "noir-tinged epic conspiracy"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Sunlit orchard battlefield where enchanted fruit trees bear witness to accords (light/surreal)",
|
||||
"sceneVariants": [
|
||||
"Fruit hanging like polished lanterns",
|
||||
"Trenches softened with grass and blossom petals",
|
||||
"Worn banners entwined in branches",
|
||||
"Healers tending wounds under a shade of fragrant leaves",
|
||||
"A table of treaties beneath a blossom bower"
|
||||
],
|
||||
"actions": [
|
||||
"Two captains meet beneath an arbor to sign a fragile peace",
|
||||
"A child picks a fruit and offers it as a symbolic gift",
|
||||
"Cut to a montage of exchanged gifts and sealed oaths",
|
||||
"A sudden gust scatters petals, obscuring the signatures for a moment"
|
||||
],
|
||||
"camera": "Poetic steadycam with soft focus on blossoms and reagent close-ups",
|
||||
"accents": [
|
||||
"petal micro-vein translucency and fruit micro-wax sheen",
|
||||
"wood micro-lattice on arbor with soft sun micro-glow"
|
||||
],
|
||||
"mood": "tender reconciliation",
|
||||
"lighting": "warm diffuse daylight with high-key pastoral tones",
|
||||
"style": "lyrical pastoral epic scene"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Midnight eclipse ritual on a basalt plain summoning a sleeping titan (dark/apocalyptic)",
|
||||
"sceneVariants": [
|
||||
"Pillars of obsidian etched with glowing sigils",
|
||||
"A ring of chanting figures in silhouette",
|
||||
"Lightning-like fissures racing across the ground",
|
||||
"A sky blackening with a blood-red corona",
|
||||
"Ancient glyphs pulsing underfoot"
|
||||
],
|
||||
"actions": [
|
||||
"The ritual crescendo cracks the earth and a titan stirs",
|
||||
"A dissenting cultist attempts to halt the rite and is silenced",
|
||||
"Cut to a wide of ground upheaval swallowing nearby banners",
|
||||
"A hero races to sever the final vowel of the chant to avert disaster"
|
||||
],
|
||||
"camera": "Epic wide-to-tight editing with seismic shake and low-frequency rumble cues",
|
||||
"accents": [
|
||||
"obsidian micro-sheen and fissure micro-glow",
|
||||
"chant micro-layered harmonic textures in audio"
|
||||
],
|
||||
"mood": "cataclysmic dread",
|
||||
"lighting": "unnatural red eclipse glow with deep contrasting shadows",
|
||||
"style": "apocalyptic fantasy spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Fantasy Epics",
|
||||
"scene": "Sunlit cliffside monastery where monks forge a relic to bend the winds (light/solemn)",
|
||||
"sceneVariants": [
|
||||
"Clifftop terraces carved into living rock",
|
||||
"Bell towers chiming with wind-harps strung between pillars",
|
||||
"Monks hammering ritually in small forges",
|
||||
"A white-robed novice polishing a small talisman",
|
||||
"A distant sea horizon with sailing spires"
|
||||
],
|
||||
"actions": [
|
||||
"A master smith tempers a relic in sacred flame with precise ceremonial rhythm",
|
||||
"A novice recites a binding invocation as sparks dance",
|
||||
"Cut to the relic’s faint hum resonating across empty terraces",
|
||||
"The relic is mounted and a gust arrives to answer its call"
|
||||
],
|
||||
"camera": "Still measured compositions focusing on ritual and craft, slow panoramas across terraces",
|
||||
"accents": [
|
||||
"metal micro-temper bloom and cloth micro-luster on robes",
|
||||
"salt micro-spray on windward stone"
|
||||
],
|
||||
"mood": "quiet resolve",
|
||||
"lighting": "crisp early-morning light with high clarity",
|
||||
"style": "meditative epic artistry"
|
||||
}
|
||||
]
|
||||
434
src/data/cinematic_and_film_styles_historical_dramas.json
Normal file
434
src/data/cinematic_and_film_styles_historical_dramas.json
Normal file
@ -0,0 +1,434 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Night besieged fortress where messengers ride through a ring of watchfires delivering desperate orders (dark/tense)",
|
||||
"sceneVariants": [
|
||||
"Flaming beacons dotting the ramparts",
|
||||
"Sparks showering as arrows strike wooden palisades",
|
||||
"A map table scattering with wind-blown parchments",
|
||||
"A courier's cloak singed at the hem",
|
||||
"A captain signaling with torch reflections on armor"
|
||||
],
|
||||
"actions": [
|
||||
"Messengers dismount and sprint through muddy yard to the command tent",
|
||||
"Commanders stamp orders and dispatch flanking riders",
|
||||
"Cut to a clandestine hand-sewn seal being broken and read aloud",
|
||||
"A distant cry signals the first breach attempt"
|
||||
],
|
||||
"camera": "Low-angle wide exterior to emphasize scale, intercut with close handhelds for urgency",
|
||||
"accents": [
|
||||
"smoke micro-haze catching torch light and wet leather micro-sheen on boots"
|
||||
],
|
||||
"mood": "urgent desperation",
|
||||
"lighting": "torch and watchfire pools against deep night",
|
||||
"style": "brooding medieval siege drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Dawn merchant quay where imperial tariffs spark a heated arbitration between trading houses (light/political)",
|
||||
"sceneVariants": [
|
||||
"Stacked crates stamped with distant port marks",
|
||||
"Sailcloth awnings shaded in striped patterns",
|
||||
"Ledger rolls and inkpots on a makeshift table",
|
||||
"A hired scribe with a quill poised",
|
||||
"Seagulls circling over rope piles"
|
||||
],
|
||||
"actions": [
|
||||
"House representatives present sealed invoices and argue in measured tones",
|
||||
"A magistrate consults a ledger and bangs for order",
|
||||
"Cut to hands passing discreet bribes under the table",
|
||||
"The harbor's tide marks a deadline and forces immediate votes"
|
||||
],
|
||||
"camera": "Measured medium coverage with over-the-shoulder inserts on documents",
|
||||
"accents": [
|
||||
"parchment micro-fiber and rope micro-twist detail"
|
||||
],
|
||||
"mood": "civic tension",
|
||||
"lighting": "soft early-morning daylight with cool harbor haze",
|
||||
"style": "period commercial-political drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Midnight plague hospital where cloaked carers tend fevered patients and tally the daily losses (dark/grim)",
|
||||
"sceneVariants": [
|
||||
"Rows of crude cots and straw-strewn floors",
|
||||
"Herbal bundles hanging from rafters",
|
||||
"A ledger of names and ages on a wooden board",
|
||||
"A tray of poultices and cloths soaked in vinegar",
|
||||
"Faint lamplight showing masked faces"
|
||||
],
|
||||
"actions": [
|
||||
"Carers move in quiet, rehearsed motions administering remedies",
|
||||
"A clerk pins a new name to the tally and looks away to hide tears",
|
||||
"Cut to close-ups of bandaged hands offering small comforts",
|
||||
"A bell tolls and the morgue cart creaks into motion"
|
||||
],
|
||||
"camera": "Claustrophobic close-ups and slow dolly moves to emphasize human toll",
|
||||
"accents": [
|
||||
"cloth micro-weave and herbal micro-frond texture"
|
||||
],
|
||||
"mood": "grief-stricken resolve",
|
||||
"lighting": "dim oil-lamp pools and deep ambient shadow",
|
||||
"style": "grim social-historical drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Sunlit imperial court where courtiers whisper and a new decree is about to be proclaimed (light/ceremonial)",
|
||||
"sceneVariants": [
|
||||
"Velvet banners embroidered with gold thread",
|
||||
"Rows of kneeling attendants polishing ritual items",
|
||||
"A lacquered throne facing a long red carpet",
|
||||
"A scribe preparing the scroll with a steady hand",
|
||||
"Sunlight streaming through lattice windows"
|
||||
],
|
||||
"actions": [
|
||||
"Chamberlain steps forward to read the decree while advisors exchange measured glances",
|
||||
"A favored noble subtly signals a loyal footman with a ring",
|
||||
"Cut to audience reactions: bowed heads, tightened lips, and furtive smirks",
|
||||
"A final trumpet sounds as the decree is rolled and sealed"
|
||||
],
|
||||
"camera": "Grand wide compositions with ornate set framing and slow push-ins to faces",
|
||||
"accents": [
|
||||
"gold micro-thread and lacquer micro-polish on ceremonial furniture"
|
||||
],
|
||||
"mood": "formal gravity",
|
||||
"lighting": "high key filtered sunlight through ornamental screens",
|
||||
"style": "courtly ceremonial drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Dusk frontier outpost where settlers debate whether to sign a land agreement with indigenous elders (light/tense)",
|
||||
"sceneVariants": [
|
||||
"A long log table strewn with maps",
|
||||
"A fire pit ringed with mixed camps",
|
||||
"A small emblem carved into a treaty stake",
|
||||
"Children peeking from behind cabins",
|
||||
"Horse tack leaning on a post"
|
||||
],
|
||||
"actions": [
|
||||
"Speakers translate and paraphrase terms while gestures attempt to bridge language gaps",
|
||||
"A settler refuses a clause and tempers flare briefly",
|
||||
"Cut to an elder's quiet counter-proposal etched into a wooden token",
|
||||
"A pause as elders and settlers weigh future consequences"
|
||||
],
|
||||
"camera": "Intimate medium shots with respectful two-shots highlighting human exchange",
|
||||
"accents": [
|
||||
"wood micro-grain and cloth micro-beadwork detail"
|
||||
],
|
||||
"mood": "fragile diplomacy",
|
||||
"lighting": "soft dusk with a warm campfire glow",
|
||||
"style": "frontier negotiation drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Midnight printing press room where dissenting pamphlets are printed and folded in secret (dark/subversive)",
|
||||
"sceneVariants": [
|
||||
"Stacks of type cases and lead slugs",
|
||||
"A dim red lantern over a folding table",
|
||||
"Freshly inked sheets piled in a damp corner",
|
||||
"A ratcheting press wheel turning in practiced hands",
|
||||
"A coded symbol stamped in the margin"
|
||||
],
|
||||
"actions": [
|
||||
"Printers run a secret edition, eyes darting to the door for patrols",
|
||||
"A smuggler pockets a sheaf that will be dropped at market",
|
||||
"Cut to a hand-insert of a tiny symbol that signals allegiance",
|
||||
"A final press run clamps and the crew scatters to hide"
|
||||
],
|
||||
"camera": "Close mechanical inserts on press action with jitter to sell urgency",
|
||||
"accents": [
|
||||
"ink micro-sheen on paper and lead micro-shine on type"
|
||||
],
|
||||
"mood": "clandestine risk",
|
||||
"lighting": "narrow lantern pools with cool peripheral shadow",
|
||||
"style": "underground pamphleteer drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Sunlit university cloister where scholars debate a forbidden theory and a letter arrives that changes careers (light/intellectual)",
|
||||
"sceneVariants": [
|
||||
"Stone archways with ivy crawling",
|
||||
"Scrolls and marginalia strewn across desks",
|
||||
"A small bell for lecture transitions",
|
||||
"Quills in a shared inkpot, blotting papers nearby",
|
||||
"A carved stone commemoration plaque"
|
||||
],
|
||||
"actions": [
|
||||
"A heated scholastic debate crescendos into scandalous accusation",
|
||||
"A sealed letter bearing the university crest arrives and diffuses the argument",
|
||||
"Cut to a young scholar reading alone and making a decisive annotation",
|
||||
"A procession of mentors offers measured counsel afterward"
|
||||
],
|
||||
"camera": "Measured academic wide with close inserts on text and hands",
|
||||
"accents": [
|
||||
"parchment micro-tooth and stone micro-lichen detail"
|
||||
],
|
||||
"mood": "focused intensity",
|
||||
"lighting": "soft mid-morning with cool stone shadows",
|
||||
"style": "intellectual period drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Night workshop where an inventor assembles a clockwork prototype amid skepticism (dark/tense)",
|
||||
"sceneVariants": [
|
||||
"Brass gears and small files scattered on a bench",
|
||||
"Candles melting into intricate drips",
|
||||
"A schematic pinned on a stone wall",
|
||||
"A small bell used to test a mechanism",
|
||||
"A gloved hand oiling a tiny axle"
|
||||
],
|
||||
"actions": [
|
||||
"The inventor tests a gear train that nearly seizes, prompting frantic adjustments",
|
||||
"A patron counts coins in the corner and sighs at expense",
|
||||
"Cut to intimate close-ups of micro-mechanics meshing and releasing",
|
||||
"A final tick of success brings a quiet, exhausted smile"
|
||||
],
|
||||
"camera": "Macro-focused inserts on machinery with tight handheld for intimacy",
|
||||
"accents": [
|
||||
"brass micro-patina and oil micro-sheen on axles"
|
||||
],
|
||||
"mood": "obsessive hope",
|
||||
"lighting": "candle-glow with reflective brass highlights",
|
||||
"style": "inventor's historical drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Dawn battlefield triage where medics improvise surgeries under canvas as news reaches command (light/grim determination)",
|
||||
"sceneVariants": [
|
||||
"Stretcher rows and crude field bandages",
|
||||
"A bloodied map with pins and tally marks",
|
||||
"A surgeon's kit laid in a hurried order",
|
||||
"A bell being rung to call more stretcher-bearers",
|
||||
"A medic's pocket watch stopped"
|
||||
],
|
||||
"actions": [
|
||||
"Surgeons operate in primitive conditions with grim efficiency",
|
||||
"A messenger interrupts with a strategic update that alters triage priorities",
|
||||
"Cut to close hands suturing, compressing, and redirecting supplies",
|
||||
"A final casualty rolled away as medics collapse briefly to breathe"
|
||||
],
|
||||
"camera": "Documentary grit with tight medical inserts and wide triage panoramas",
|
||||
"accents": [
|
||||
"cloth micro-blood soak and metal micro-instrument shine"
|
||||
],
|
||||
"mood": "urgent compassion",
|
||||
"lighting": "muted dawn with warm interior tent light",
|
||||
"style": "war-time humanist drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Midnight slave market where a clandestine rescue is planned under the guise of transaction (dark/heroic)",
|
||||
"sceneVariants": [
|
||||
"Lantern-lit crates and shackles arrayed",
|
||||
"Callused hands passing coins",
|
||||
"A ledger listing names with prices",
|
||||
"A hidden signal carved on a crate corner",
|
||||
"A murmured prayer under breath"
|
||||
],
|
||||
"actions": [
|
||||
"A buyer scopes out a marked crate while an ally tampers with the lock",
|
||||
"A silent code—three knocks—signals the rescue team",
|
||||
"Cut to the rapid extraction and a tense chase through narrow alleys",
|
||||
"A final moment of sacrifice ensures some can reach safety"
|
||||
],
|
||||
"camera": "Handheld close pursuit with tight alley inserts and breathy audio",
|
||||
"accents": [
|
||||
"iron micro-rust on shackles and paper micro-ink on ledger"
|
||||
],
|
||||
"mood": "dangerous nobility",
|
||||
"lighting": "harsh lantern pools against dense night",
|
||||
"style": "moral rescue period drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Sunlit colonial port where explorers argue maps and an uncertain voyage is provisioned (light/ambitious)",
|
||||
"sceneVariants": [
|
||||
"Rolled charts tied with string and wax seals",
|
||||
"Barrels of salted meat and rum stacked high",
|
||||
"A carved figurehead resting on the dock",
|
||||
"A shipwright's tools hung in a row",
|
||||
"A launch ramp slick with algae"
|
||||
],
|
||||
"actions": [
|
||||
"Captains debate headings while charts are unfurled and re-marked",
|
||||
"Provisions are weighed and bales counted openly to reassure backers",
|
||||
"Cut to a tender farewell as family members hand over keepsakes",
|
||||
"A final clarion horn signals departure"
|
||||
],
|
||||
"camera": "Expansive dockside wide with measured character close-ups",
|
||||
"accents": [
|
||||
"canvas micro-weave and rope micro-knot detail"
|
||||
],
|
||||
"mood": "restless ambition",
|
||||
"lighting": "bright harbor sun with high contrast",
|
||||
"style": "expeditionary historical drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Midnight palace conspiracy where ministers write coded letters and a single leak threatens a dynasty (dark/political)",
|
||||
"sceneVariants": [
|
||||
"Silk-lettered envelopes with hidden sigils",
|
||||
"A lacquered inkbox and slender brushes",
|
||||
"A shadowed corridor used for clandestine passage",
|
||||
"A clay seal broken on a tea cup",
|
||||
"A servant listening beyond a screen"
|
||||
],
|
||||
"actions": [
|
||||
"Ministers draft and cipher policy misdirection to outmaneuver rivals",
|
||||
"A servant overhears and conceals a letter rather than expose it",
|
||||
"Cut to a whispered bribe offered for silence",
|
||||
"A palace guard's patrol interrupts and raises stakes"
|
||||
],
|
||||
"camera": "Tight interior close coverage with whisper-quiet handheld to heighten intrigue",
|
||||
"accents": [
|
||||
"silk micro-weave and seal micro-impression detail"
|
||||
],
|
||||
"mood": "simmering duplicity",
|
||||
"lighting": "soft interior lamplight with heavy shadow",
|
||||
"style": "dynastic palace intrigue"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Dawn textile mill where women organize quietly, passing notes and planning a strike (light/quiet rebellion)",
|
||||
"sceneVariants": [
|
||||
"Rows of treadles and bobbins spinning",
|
||||
"Carded wool bales lined by the wall",
|
||||
"A foreman's whistle on a hook",
|
||||
"A scrap of printed pamphlet folded in a hand",
|
||||
"A small hidden knot in an apron string"
|
||||
],
|
||||
"actions": [
|
||||
"Women exchange folded notes in lunch pails outlining demands",
|
||||
"A ringleader quietly instructs to slow machines as a first action",
|
||||
"Cut to a montage of synchronized slowdown and calendars marked for walkout",
|
||||
"A brave voice reads a manifesto while others nod in resolve"
|
||||
],
|
||||
"camera": "Observational wide with tight clandestine inserts and steady emotional close-ups",
|
||||
"accents": [
|
||||
"thread micro-strand and fabric micro-pile detail"
|
||||
],
|
||||
"mood": "steadfast defiance",
|
||||
"lighting": "pale morning through high mill windows with gritty factory fill",
|
||||
"style": "labor-rights historical drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Midnight Revolutionary cell where candles burn low and coded songs teach doctrine (dark/ideological)",
|
||||
"sceneVariants": [
|
||||
"A cramped basement with plaster flaking",
|
||||
"A map of districts pinned with thumbtacks",
|
||||
"A stack of printed manifestos tied with string",
|
||||
"A small cache of folded rifles concealed beneath floorboards",
|
||||
"A musical score with hidden ciphered lyrics"
|
||||
],
|
||||
"actions": [
|
||||
"Cell members practice coded verses that double as operational signals",
|
||||
"A courier returns with news and a whisper of betrayal",
|
||||
"Cut to a secretive training montage of distributing leaflets",
|
||||
"A final solemn oath binds the group before deployment"
|
||||
],
|
||||
"camera": "Close conspiratorial inserts with low-angle resolve shots",
|
||||
"accents": [
|
||||
"paper micro-fiber and candle micro-tallow drip detail"
|
||||
],
|
||||
"mood": "resolved tension",
|
||||
"lighting": "narrow candlelight with shadowed periphery",
|
||||
"style": "revolutionary period drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Sunlit manor garden where a scandalous liaison is arranged amid clipped hedges and overheard vows (light/romantic complication)",
|
||||
"sceneVariants": [
|
||||
"Topiary hedges trimmed into formal shapes",
|
||||
"A sundial and marble bench half-shaded",
|
||||
"A handwritten invitation folded beneath a rose",
|
||||
"Servants moving in quiet choreographed paths",
|
||||
"A fountain with moss-soft patina"
|
||||
],
|
||||
"actions": [
|
||||
"Two lovers exchange coded pleasantries and arrange a secret walk",
|
||||
"A jealous suitor spots them and plots a countermeasure",
|
||||
"Cut to a servant accidentally overhearing and deciding whether to intervene",
|
||||
"A flustered near-miss leaves promises unspoken and tension high"
|
||||
],
|
||||
"camera": "Graceful medium and close-ups to emphasize intimacy and decorum",
|
||||
"accents": [
|
||||
"stone micro-lichen on fountain and silk micro-thread on garments"
|
||||
],
|
||||
"mood": "constrained longing",
|
||||
"lighting": "soft mid-morning garden sun",
|
||||
"style": "regency-era romantic drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Dawn miners' camp where prospectors argue claims and a hidden strike reveals hardship (light/gritty)",
|
||||
"sceneVariants": [
|
||||
"Tarp tents clustered around a flickering fire",
|
||||
"Pans and sluices glinting with mica",
|
||||
"A board listing claim coordinates",
|
||||
"A rusty pick leaning on a dug ledge",
|
||||
"A stew pot simmering with salted meat"
|
||||
],
|
||||
"actions": [
|
||||
"Prospectors tally yields and argue over water rights",
|
||||
"A miner discovers a vein and the camp erupts into measured frenzy",
|
||||
"Cut to bargaining with traveling merchants and a quietly negotiated loan",
|
||||
"A final claim is staked with ritual stamping and gruff celebration"
|
||||
],
|
||||
"camera": "Documentary-tinged wide camp shots mixed with gritty close work",
|
||||
"accents": [
|
||||
"stone micro-heterogeneity and metal micro-oxide detail"
|
||||
],
|
||||
"mood": "rough optimism",
|
||||
"lighting": "pale early light with smoky campfire contrast",
|
||||
"style": "pioneer extraction-era drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Midnight royal carriage where a secret abdication is debated amid whispered loyalties (dark/weighty)",
|
||||
"sceneVariants": [
|
||||
"A velvet-lined carriage interior with gilt trim",
|
||||
"A sealed letter addressed to a foreign court",
|
||||
"A heavy silver goblet half-full of wine",
|
||||
"A retainer's gloved hands clasped on knees",
|
||||
"Rain beading on carriage roof"
|
||||
],
|
||||
"actions": [
|
||||
"The sovereign debates sovereignty with a trusted minister in hushed tones",
|
||||
"A retainer offers the option to flee, causing moral crisis",
|
||||
"Cut to the sovereign signing a trembling abdication in secret",
|
||||
"The carriage passes under the palace lanterns and the decision is sealed"
|
||||
],
|
||||
"camera": "Intimate carriage two-shots with close inserts on ink, ring, and hands",
|
||||
"accents": [
|
||||
"velvet micro-pile and silver micro-tarnish detail"
|
||||
],
|
||||
"mood": "burdened resolve",
|
||||
"lighting": "narrow lantern pools and wet-reflected street light",
|
||||
"style": "regal succession drama"
|
||||
},
|
||||
{
|
||||
"subGenre": "Historical Dramas",
|
||||
"scene": "Sunlit artisan's workshop where a master disputes credit with an apprentice over a breakthrough design (light/creative conflict)",
|
||||
"sceneVariants": [
|
||||
"Shavings piled on a workbench with tool marks",
|
||||
"A finished prototype polished on a pedestal",
|
||||
"A scrap of measuring paper with complicated geometry",
|
||||
"A half-finished sketch pinned to the wall",
|
||||
"A small box of rivets and fasteners"
|
||||
],
|
||||
"actions": [
|
||||
"The master scolds the apprentice for using an unapproved technique",
|
||||
"An observer recognizes the apprentice's subtle innovation and intervenes",
|
||||
"Cut to a compromise forged in mutual respect that redefines workshop hierarchy",
|
||||
"A final handshake seals a new mentor/partner arrangement"
|
||||
],
|
||||
"camera": "Warm medium shots with loving macro on materials and hands",
|
||||
"accents": [
|
||||
"wood micro-shavings and metal micro-burr detail"
|
||||
],
|
||||
"mood": "creative tension",
|
||||
"lighting": "clean daylight through high windows, workshop warmth",
|
||||
"style": "artisan-era human drama"
|
||||
}
|
||||
]
|
||||
202
src/data/cinematic_and_film_styles_hollywood_blockbusters.json
Normal file
202
src/data/cinematic_and_film_styles_hollywood_blockbusters.json
Normal file
@ -0,0 +1,202 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Opening aerial prologue over a sprawling metropolis before an inciting disaster (day/epic)",
|
||||
"sceneVariants": [
|
||||
"Sweeping skyline with a glinting sunrise and traffic arteries",
|
||||
"Aerial reveal of a secret facility hidden beneath a stadium",
|
||||
"A high-speed chase foreshadowing chaos",
|
||||
"A sequence of news tickers building tension",
|
||||
"A close helicopter pass over a key character's penthouse"
|
||||
],
|
||||
"actions": [
|
||||
"A rapid montage establishes character threads and stakes",
|
||||
"An on-screen event triggers an emergency response",
|
||||
"A protagonist narrowly avoids a collapsing structure",
|
||||
"A teaser action beat leaves an unresolved cliff-hanger"
|
||||
],
|
||||
"camera": "Epic crane-to-drone move with IMAX-scale wide shots and rapid inserts",
|
||||
"accents": [
|
||||
"high-gloss skyline caustics and micro-particle aerial haze",
|
||||
"sweeping lens flare micro-detail on glass facades"
|
||||
],
|
||||
"mood": "adrenalized anticipation",
|
||||
"lighting": "polished daylight with cinematic rim highlights",
|
||||
"style": "blockbuster prologue"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "High-octane car chase weaving through multi-level freeway at dusk (dusk/tense)",
|
||||
"sceneVariants": [
|
||||
"Interchange ramps lit by brake-lights and neon signage",
|
||||
"A close POV from the pursuing car's grille",
|
||||
"A pedestrian bridge narrowly missed by a flying vehicle",
|
||||
"A jump across a cut in the roadway",
|
||||
"A tactical PIT-maneuver executed in slow motion"
|
||||
],
|
||||
"actions": [
|
||||
"Precision driving and narrowly timed evasive maneuvers",
|
||||
"A collision cascade that propels debris and sparks",
|
||||
"A sudden obstacle forces last-second improvisation",
|
||||
"A final explosive set-piece that isolates the hero"
|
||||
],
|
||||
"camera": "High-frame-rate vehicle-mounted cameras mixed with sweeping crane passes",
|
||||
"accents": [
|
||||
"tire-spark micro-shards and exhaust heat micro-distortion",
|
||||
"neon sign reflection micro-highlights on chassis panels"
|
||||
],
|
||||
"mood": "relentless intensity",
|
||||
"lighting": "dusk ambient contrasted with headlight and neon punctures",
|
||||
"style": "action chase spectacle"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Massive rescue sequence in a collapsing landmark with coordinated team effort (day/heroic)",
|
||||
"sceneVariants": [
|
||||
"Crowds evacuating as reinforced glass rains down",
|
||||
"A rescue rig lowering into a fractured atrium",
|
||||
"A hero leading survivors through smoke-filled corridors",
|
||||
"A helicopter hoist lifting an injured civilian",
|
||||
"Command center coordinating teams via holographic map"
|
||||
],
|
||||
"actions": [
|
||||
"Coordinated rope-and-ladder extractions under time pressure",
|
||||
"A structural failure sequence where timing saves lives",
|
||||
"A moral beat where a character makes a sacrificial choice",
|
||||
"Final reunions on a cleared rooftop with emotional payoff"
|
||||
],
|
||||
"camera": "Handheld immersion in close rescue, cut with wide structural establishing shots",
|
||||
"accents": [
|
||||
"ember micro-glow on dust-laden air and broken-glass micro-fragments",
|
||||
"thermal camera overlay micro-caustics during search"
|
||||
],
|
||||
"mood": "heroic urgency",
|
||||
"lighting": "mixed natural daylight with emergency strobes",
|
||||
"style": "rescue-set-piece cinema"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Climactic duel on an unstable high-rise edge with city below (night/spectacular)",
|
||||
"sceneVariants": [
|
||||
"Skyline bokeh behind a wind-swept rooftop",
|
||||
"Loose cables and scaffolding threatening balance",
|
||||
"A final exchange of blows with practical sparks",
|
||||
"A sudden rooftop explosion changing the fight's geometry",
|
||||
"An engineered final rescue to save the fallen protagonist"
|
||||
],
|
||||
"actions": [
|
||||
"An escalating physical and emotional confrontation",
|
||||
"A tactical use of the environment to win the bout",
|
||||
"A near-fatal fall averted by quick thinking and ropework",
|
||||
"A final cathartic close-up as victory is claimed"
|
||||
],
|
||||
"camera": "Dynamic long lenses with vertigo dolly moves and vertiginous wide shots",
|
||||
"accents": [
|
||||
"wind micro-particle streaks and spark micro-flares from metal contact",
|
||||
"city light micro-bokeh reflecting on wet surfaces"
|
||||
],
|
||||
"mood": "cinematic catharsis",
|
||||
"lighting": "stylized night with practical neon and emergency strobes",
|
||||
"style": "high-stakes climax"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Secret lair reveal beneath an otherwise ordinary corporate tower (dark/revelatory)",
|
||||
"sceneVariants": [
|
||||
"A disguised elevator runs deep beneath the city",
|
||||
"A cavernous, tech-saturated operations room unveiled",
|
||||
"A bank of servers and sleek control interfaces glowing",
|
||||
"A villain's throne-like chair overlooking a glowing map",
|
||||
"Security lockdown doors sliding closed with a mechanical hiss"
|
||||
],
|
||||
"actions": [
|
||||
"Protagonists discover the truth and trigger an alarm sequence",
|
||||
"A stealthy infiltration becomes a full-scale breach",
|
||||
"Gadgets and hacking beats buy the team seconds to escape",
|
||||
"A reveal of the antagonist's master plan raises stakes"
|
||||
],
|
||||
"camera": "Slow push-in reveals with digital HUD overlays and sharp mid-shots",
|
||||
"accents": [
|
||||
"LED matrix micro-grid and brushed metal micro-reflection",
|
||||
"cable loom micro-weave detail under rim-light"
|
||||
],
|
||||
"mood": "sinister revelation",
|
||||
"lighting": "cool tech-blue with selective warm practicals",
|
||||
"style": "espionage blockbuster beat"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Global montage showing multiple cities reacting to a worldwide event (varied/intense)",
|
||||
"sceneVariants": [
|
||||
"Stock exchanges reacting, screens glowing red",
|
||||
"Crowded transit hubs in different timezones in panic",
|
||||
"Coastal towns seeing strange tidal phenomena",
|
||||
"Military screens lighting up across continents",
|
||||
"Citizen footage trending across social platforms"
|
||||
],
|
||||
"actions": [
|
||||
"Rapid cross-cutting ties multiple narrative threads",
|
||||
"Authorities issue urgent policy and safety directives",
|
||||
"A journalist thread traces human impact with empathy",
|
||||
"Protagonists in distinct locales converge toward a single objective"
|
||||
],
|
||||
"camera": "Kinetic cross-cut montage with color-graded city plates and handheld citizen footage",
|
||||
"accents": [
|
||||
"broadcast overlay micro-text and smartphone pixel micro-noise",
|
||||
"ocean spray micro-detail and skyline micro-reflections"
|
||||
],
|
||||
"mood": "global tension",
|
||||
"lighting": "varied locale lighting unified by a graded cinematic tone",
|
||||
"style": "intercut global montage"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Humorous action-relief sequence where side characters improvise an escape (light/comic)",
|
||||
"sceneVariants": [
|
||||
"A chaotic kitchen turned into a Rube-Goldberg escape route",
|
||||
"Sidekicks bumbling through disguises with slapstick timing",
|
||||
"A comedic car rollaway narrowly avoided by quick props",
|
||||
"A false alarm turning into a lucky distraction",
|
||||
"A cameo by a recurring comic relief character saving the day"
|
||||
],
|
||||
"actions": [
|
||||
"Slapstick timing produces a lucky break",
|
||||
"A silly gadget plays the unexpected hero",
|
||||
"A tension release results in audience laughter before the next beat",
|
||||
"Characters regroup with self-aware quips"
|
||||
],
|
||||
"camera": "Playful whip-pans and comic timing close-ups with broad coverage",
|
||||
"accents": [
|
||||
"sauce splatter micro-texture and pratfall dust micro-fuzz",
|
||||
"toy-like gadget micro-detail with bright color pops"
|
||||
],
|
||||
"mood": "comic relief",
|
||||
"lighting": "bright high-key for comedic clarity",
|
||||
"style": "action-comedy interlude"
|
||||
},
|
||||
{
|
||||
"subGenre": "Hollywood Blockbusters",
|
||||
"scene": "Emotional reconciliation scene after victory where characters reflect (light/soft)",
|
||||
"sceneVariants": [
|
||||
"A quiet hospital room or rooftop after the storm",
|
||||
"A montage of small reconciliations within families and teams",
|
||||
"A symbolic token returned to represent forgiveness",
|
||||
"Soft instrumental underscoring the emotional beat",
|
||||
"A final panoramic shot tying the story back to home"
|
||||
],
|
||||
"actions": [
|
||||
"Characters exchange honest apologies and small gestures of repair",
|
||||
"A healing montage shows community rebuilding",
|
||||
"A quiet conversation lays groundwork for future promise",
|
||||
"Credits begin with a sustained emotional resolution frame"
|
||||
],
|
||||
"camera": "Tender medium-close coverage with single long exquisite take at payoff",
|
||||
"accents": [
|
||||
"skin pore micro-detail in close emotional shots and soft backlight halo",
|
||||
"small object micro-wear and symbolic texture detail"
|
||||
],
|
||||
"mood": "quiet redemption",
|
||||
"lighting": "soft warm key with subtle cinematic bloom",
|
||||
"style": "emotional denouement"
|
||||
}
|
||||
]
|
||||
577
src/data/cinematic_and_film_styles_horror_films.json
Normal file
577
src/data/cinematic_and_film_styles_horror_films.json
Normal file
@ -0,0 +1,577 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Abandoned farmhouse at midnight where a single porch light flickers and a child's lullaby echoes (dark/unnerving)",
|
||||
"sceneVariants": [
|
||||
"Peeling paint on warped clapboard siding",
|
||||
"A porch swing moving with no visible wind",
|
||||
"A cracked window with a taped 'Do not enter' sign",
|
||||
"A tin music box half-buried in the yard",
|
||||
"Footprints circling the house and disappearing into tall grass"
|
||||
],
|
||||
"actions": [
|
||||
"A flashlight picks out a small handprint on the inside of the glass",
|
||||
"Distant lullaby slows then reverses as if on a warped recording",
|
||||
"A door creaks open to reveal a child's empty chair slowly turning",
|
||||
"A final tilt down the hallway shows a toy rocking on its own"
|
||||
],
|
||||
"camera": "Slow creeping dolly with long low angles; occasional handheld breathy inserts for close tension",
|
||||
"accents": [
|
||||
"porch micro-peeling paint texture and moth micro-wings catching the light",
|
||||
"music-box micro-scratch and warped needle micro-pop"
|
||||
],
|
||||
"mood": "quiet dread",
|
||||
"lighting": "narrow warm porch practical amid deep cool moon shadows",
|
||||
"style": "intimate folk-horror cinematography"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Fog-shrouded coastal road where headlights find a lone, still figure on the verge (dark/isolation)",
|
||||
"sceneVariants": [
|
||||
"Sea spray frosting the edges of a guardrail",
|
||||
"An abandoned child's bicycle half-buried in dunes",
|
||||
"A blinking hazard cone in thick banked fog",
|
||||
"Reflective wet asphalt mirroring a solitary street sign",
|
||||
"A gull circling like a slow clock"
|
||||
],
|
||||
"actions": [
|
||||
"Driver slows; the figure lifts its head in an unnatural rhythm",
|
||||
"A horn sounds and the figure doesn't flinch; fog curls through the wheelhouse",
|
||||
"Cut to a rearview mirror showing additional shapes standing along the road",
|
||||
"A sudden engine stall leaves the car idling as figures close in"
|
||||
],
|
||||
"camera": "Rearview POV intercuts with isolating long shots; heavy use of negative space",
|
||||
"accents": [
|
||||
"wet micro-glass bead reflections on asphalt and fabric micro-salt on clothing",
|
||||
"fog micro-volumetrics absorbing light"
|
||||
],
|
||||
"mood": "aloof menace",
|
||||
"lighting": "diffused headlamp cones in dense fog, cold color palette",
|
||||
"style": "slow-burn coastal horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Back alley behind a closed theatre at midnight where posters peel to reveal old ritual symbols (dark/occult)",
|
||||
"sceneVariants": [
|
||||
"Steam vents and overflowing dumpsters providing ambient noise",
|
||||
"Peeling posters layered in centuries of glue",
|
||||
"A small shrine of theatre trinkets and candles",
|
||||
"A cracked marquee with a single faulty letter flickering",
|
||||
"A pattern of chalked initials on the brick wall"
|
||||
],
|
||||
"actions": [
|
||||
"A discarded program folds to show a pressed flower and a smeared symbol beneath",
|
||||
"A tapestry of shadows in the marquee windows seems to move separately from the cast",
|
||||
"Investigators light a candle and the flame bends away",
|
||||
"A hand reaches through a poster and leaves a sticky smear"
|
||||
],
|
||||
"camera": "Tight urban tracking with gritty handheld and sudden whip-zooms to reveal anomalies",
|
||||
"accents": [
|
||||
"paper micro-delamination on posters and candle micro-soot",
|
||||
"brick micro-grain catching damp light"
|
||||
],
|
||||
"mood": "suspicious ritual unease",
|
||||
"lighting": "neon spill and practical candle pools against deep alley black",
|
||||
"style": "urban occult horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Hospital wing at night with flickering fluorescent lights and empty gurneys (dark/clinical terror)",
|
||||
"sceneVariants": [
|
||||
"A white corridor stretching into a vanishing point",
|
||||
"A nurse's station with a blinking heart monitor left open",
|
||||
"Disposable gloves rolling away like tiny ghosts",
|
||||
"A locked pediatric room with a faint nightlight still on",
|
||||
"A poster about hand-washing peeling at the corner"
|
||||
],
|
||||
"actions": [
|
||||
"Monitors spike briefly though no one is attached",
|
||||
"A shadow passes on the far wall with a slightly wrong gait",
|
||||
"Elevator doors open to the same empty corridor, as if looping",
|
||||
"A paging system repeats a name in a hollow, layered chorus"
|
||||
],
|
||||
"camera": "Clinical steadycam with sudden jittered handheld for jump scares and long sterile framings",
|
||||
"accents": [
|
||||
"plastic micro-texture on gloves and monitor micro-pixel glow",
|
||||
"fluorescent micro-flicker accent on walls"
|
||||
],
|
||||
"mood": "procedural dread",
|
||||
"lighting": "cold, flickering fluorescent with deep pools of shadow",
|
||||
"style": "medical-genre psychological horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Suburban cul-de-sac at dusk where every house's windows go black one by one (dark/unnerving)",
|
||||
"sceneVariants": [
|
||||
"Neatly trimmed hedges with children's toys abandoned",
|
||||
"A mailbox with a stack of notices and a single flattened envelope",
|
||||
"Streetlights popping on in long cadence",
|
||||
"Lawn sprinklers suddenly still and stuttering",
|
||||
"A power transformer humming menacingly"
|
||||
],
|
||||
"actions": [
|
||||
"A neighbor notices lights plummet; radio static increases",
|
||||
"A child's silhouette stands at a window with no movement for minutes",
|
||||
"Electronic devices blink off and phones lose signal in unison",
|
||||
"One house's front door opens by itself and closes again slowly"
|
||||
],
|
||||
"camera": "Static suburban wide shots with hidden creeping inserts as the pattern unfolds",
|
||||
"accents": [
|
||||
"plastic micro-grain on toys and glass micro-reflection on windows",
|
||||
"electronic micro-static in audio"
|
||||
],
|
||||
"mood": "hollow unease",
|
||||
"lighting": "soft dusk with violent shifts to absolute blackout",
|
||||
"style": "suburban uncanny horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Sunlit roadside tourist shrine where offerings sway though there's no breeze (light/eerie)",
|
||||
"sceneVariants": [
|
||||
"Bouquets tied neatly to a small chain-link fence",
|
||||
"Candles in mason jars flickering despite still air",
|
||||
"A laminated photo slowly yellowing in sun",
|
||||
"A roadside plaque half-obliterated by an old sticker",
|
||||
"Small trinkets arranged in a careful geometric pattern"
|
||||
],
|
||||
"actions": [
|
||||
"A passerby touches a string of beads and receives a whisper in reply",
|
||||
"A paper offering folds itself into the shape of an animal",
|
||||
"A bright sunlit sweep reveals a shadow crossing the ground that belongs to nothing visible",
|
||||
"A child's toy begins to rotate in place as if turned by a tiny hand"
|
||||
],
|
||||
"camera": "Serene observational work heavy on lingering frames, interrupted by tightening close-ups",
|
||||
"accents": [
|
||||
"paper micro-fiber on offerings and sun micro-glare on glass jars",
|
||||
"flower micro-petal translucency"
|
||||
],
|
||||
"mood": "disquieting calm",
|
||||
"lighting": "warm, deceptively peaceful daylight with unnatural micro-contrasts",
|
||||
"style": "pastoral folk-horror with uncanny elements"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Derelict amusement park at noon where shadowed, unused rides move with a slow, deliberate rhythm (light/menacing)",
|
||||
"sceneVariants": [
|
||||
"Rusty carousel horses frozen mid-arc",
|
||||
"Peeling ticket booths with old change still inside",
|
||||
"A Ferris wheel turning one slow revolution",
|
||||
"Faded mascots with glass eyes missing",
|
||||
"Cotton-candy stands cloaked in dust sheets"
|
||||
],
|
||||
"actions": [
|
||||
"A child runs past and hears laughter that echoes from empty rides",
|
||||
"A ticket rips in half on its own; a machine whirs somewhere off-frame",
|
||||
"Cut to a ground-level shot revealing a track marred by tiny handprints",
|
||||
"A distant music box swells into a full, discordant score"
|
||||
],
|
||||
"camera": "Long leisurely lenses to heighten scale juxtaposed with sudden tight handheld for realizations",
|
||||
"accents": [
|
||||
"metal micro-oxidation and paint micro-chipping on rides",
|
||||
"dust micro-mote swirl catching sunlight"
|
||||
],
|
||||
"mood": "creepy nostalgia",
|
||||
"lighting": "bright daylight that exposes strange shadows and reflective oddities",
|
||||
"style": "surreal amusement-park horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Midnight rural gas station where the pump reads negative liters and a forgotten radio repeats Bob Dylan backwards (dark/surreality)",
|
||||
"sceneVariants": [
|
||||
"An old glass-front fridge humming with its own light",
|
||||
"A poster of scenic routes tacked crooked on the wall",
|
||||
"A flickering 'OPEN' sign that pulses in irregular rhythm",
|
||||
"A puddle reflecting a sky that doesn't match above",
|
||||
"A small stack of mismatched coffee mugs behind the counter"
|
||||
],
|
||||
"actions": [
|
||||
"The pump display scrolls names that aren't related to the station",
|
||||
"A customer finds a receipt dated decades in the future",
|
||||
"The radio backtracks a familiar song into a list of names, some of which are present",
|
||||
"A shadow detaches from a shelf and rearranges the mugs"
|
||||
],
|
||||
"camera": "Claustrophobic wide lens inside the station with tight inserts on electronics and displays",
|
||||
"accents": [
|
||||
"glass micro-condensation in fridge and plastic micro-age on signage",
|
||||
"electronic micro-pixelation on pump display"
|
||||
],
|
||||
"mood": "disoriented dread",
|
||||
"lighting": "sickly fluorescent inside with cold exterior night",
|
||||
"style": "weird roadside horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Dusk college library where the bibliographic catalogue returns volumes that were never checked out (light/creepy)",
|
||||
"sceneVariants": [
|
||||
"Endless stacks that form maze-like corridors",
|
||||
"A rolling ladder left askew between aisles",
|
||||
"Catalogue cards fluttering though there is no breeze",
|
||||
"Empty reading lamps casting tiny islands of light",
|
||||
"A chalkboard with a handwritten schedule fading mid-sentence"
|
||||
],
|
||||
"actions": [
|
||||
"A student pulls a book that contains photographs of their own childhood home",
|
||||
"Shelves shift imperceptibly between glances, rearranging their path",
|
||||
"A whispering chorus recites footnotes that don't exist",
|
||||
"The catalogue returns an exact timestamp for an event that hasn't yet occurred"
|
||||
],
|
||||
"camera": "Long dolly pushes between stacks, interrupted by abrupt close insert frames",
|
||||
"accents": [
|
||||
"paper micro-tooth and leather micro-wear on bindings",
|
||||
"lamp micro-glint over polished table edges"
|
||||
],
|
||||
"mood": "curious dread",
|
||||
"lighting": "soft warm pool lighting in isolated pockets with deep stack shadows",
|
||||
"style": "intellectual occult horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Sunlit crosswalk where shadows lag behind their owners and occasionally look up (light/unnerving)",
|
||||
"sceneVariants": [
|
||||
"Shoppers carrying bright shopping bags",
|
||||
"A street performer mid-act frozen by a glance",
|
||||
"Bicycle bells chiming with mechanical rhythm",
|
||||
"A digital billboard cycling between ads",
|
||||
"A puddle reflecting a sky full of wrong constellations"
|
||||
],
|
||||
"actions": [
|
||||
"A pedestrian notices their shadow pause and wave while they stand still",
|
||||
"A child points excitedly and then becomes strangely silent as the shadow smiles",
|
||||
"Traffic lights cycle normally while shadows perform different choreography",
|
||||
"A shadow detaches and slides into a shop window, rearranging a display"
|
||||
],
|
||||
"camera": "Observational street-level coverage with split-frame moments for shadow discrepancies",
|
||||
"accents": [
|
||||
"fabric micro-weave on clothing and asphalt micro-grain on crosswalk",
|
||||
"digital micro-pixelation on billboard reflections"
|
||||
],
|
||||
"mood": "subtle disquiet",
|
||||
"lighting": "bright daylight with unnatural shadow behavior",
|
||||
"style": "urban uncanny horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Basement theatre rehearsal hall at dusk where discarded masks begin to breathe (dark/psychological)",
|
||||
"sceneVariants": [
|
||||
"Rows of headless mannequins facing a bare stage",
|
||||
"Racks of old costumes dripping with age",
|
||||
"A table of plaster masks with cracked brows",
|
||||
"A humid smell like old curtains and glue",
|
||||
"A faded poster of a past production pinned crooked"
|
||||
],
|
||||
"actions": [
|
||||
"A mask tilts as if sniffing, though there is no body behind it",
|
||||
"Actors practicing lines hear whispered replies coming from the racks",
|
||||
"A costume's sleeve twitches like an insect under fabric",
|
||||
"A final collective exhale from the masks forms a consonant sound"
|
||||
],
|
||||
"camera": "Theatrical lateral tracking with claustrophobic close-ups on mask features",
|
||||
"accents": [
|
||||
"plaster micro-fissure and textile micro-fade on costumes",
|
||||
"dust micro-motes hovering in sidelights"
|
||||
],
|
||||
"mood": "staged horror",
|
||||
"lighting": "low-side theatrical spotlighting with dark curtains",
|
||||
"style": "meta-psychological horror with theatrical motifs"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Noon in a suburban backyard where garden statues rotate toward the house when no one is watching (light/sinister)",
|
||||
"sceneVariants": [
|
||||
"Stone cherubs perched on pedestals",
|
||||
"A weathered sundial with a missing gnomon",
|
||||
"A child's sandpit with small plastic shovels",
|
||||
"A white picket fence with vines crawling unusually fast",
|
||||
"A birdbath with stagnant water that shivers occasionally"
|
||||
],
|
||||
"actions": [
|
||||
"Parents step out; a statue's head turns imperceptibly when the door closes",
|
||||
"A sprinkler system momentarily erupts into a pattern spelling a word",
|
||||
"Children's laughter in the distance diminishes as statues inch closer",
|
||||
"One statue falls and leaves behind a fresh footprint in the dirt"
|
||||
],
|
||||
"camera": "Steady domestic coverage that grows intrusive with close dollies on the statues",
|
||||
"accents": [
|
||||
"stone micro-pitting on statues and water micro-surface ripple in birdbath",
|
||||
"vine micro-vein climbing detail"
|
||||
],
|
||||
"mood": "domestic unease",
|
||||
"lighting": "bright midday with oddly directional shadows",
|
||||
"style": "suburban uncanny horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Dawn field hospital tent where patient files rewrite themselves as staff glance away (light/clinical uncanny)",
|
||||
"sceneVariants": [
|
||||
"Canvas tents sagging with early-morning dew",
|
||||
"Rows of cots with identical blankets",
|
||||
"A line of clipboards hanging like small flags",
|
||||
"A battery-powered fan spinning unevenly",
|
||||
"A whiteboard listing patients with names that shift slightly"
|
||||
],
|
||||
"actions": [
|
||||
"A nurse looks down, and a patient's diagnosis changes to an impossible entry",
|
||||
"A cart of supplies rearranges itself into an almost-human silhouette",
|
||||
"Cut to a ticking clock that runs briefly backward and then resumes",
|
||||
"A child's drawing on a clipboard animates into a small moving figure"
|
||||
],
|
||||
"camera": "Documentary-style close coverage with sudden micro-tilts to imply cognitive slip",
|
||||
"accents": [
|
||||
"canvas micro-fiber and clipboard micro-paper edge detail",
|
||||
"fan micro-hum with subtle low-frequency modulation"
|
||||
],
|
||||
"mood": "medical uncanny",
|
||||
"lighting": "soft dawn with sterile interior pockets and unsettling motion in mundane items",
|
||||
"style": "procedural supernatural horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Midday riverbank picnic where reflections in water show alternate, hostile versions of the guests (light/disturbing)",
|
||||
"sceneVariants": [
|
||||
"A checked blanket spread with neatly arranged baskets",
|
||||
"A radio playing a cheerful tune nearby",
|
||||
"Willow branches reaching low over the water surface",
|
||||
"A family of ducks paddling in a tidy line",
|
||||
"A thermos with a faded logo"
|
||||
],
|
||||
"actions": [
|
||||
"A reflection smiles when its real-world counterpart does not",
|
||||
"One guest's reflection mouths words the guest no longer remembers saying",
|
||||
"Cut to the water swallowing a lightweight object and not returning it",
|
||||
"A child's reflection lingers after they step away from the bank"
|
||||
],
|
||||
"camera": "Calm picnic coverage with increased close focus on water surfaces and mirrored doubles",
|
||||
"accents": [
|
||||
"water micro-caustics and fabric micro-weave",
|
||||
"radio micro-static that warps when reflections act out"
|
||||
],
|
||||
"mood": "petty perverse",
|
||||
"lighting": "clear bright sunlight contrasted with uncanny mirror actions",
|
||||
"style": "domestic surreal horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Twilight cargo ship hold filled with unlabelled crates exuding an orange, pulsing light (dark/claustrophobic)",
|
||||
"sceneVariants": [
|
||||
"Steel ribs arching overhead with rivet detail",
|
||||
"Pallets of crates stacked like crates of sleeping beasts",
|
||||
"A single safety lamp swinging on a chain",
|
||||
"Loose rope loops on the deck slacking and straightening",
|
||||
"Salt-scarred metal walkways with shallow puddles"
|
||||
],
|
||||
"actions": [
|
||||
"Crates quiver with an internal heartbeat as cargo breathes",
|
||||
"A rope snaps and a crate slides to reveal something moving inside",
|
||||
"Cut to muffled scratching behind stacked wood, getting louder with time",
|
||||
"A worker recoils as the light pulses and a whisper curls around the hull"
|
||||
],
|
||||
"camera": "Low-angled tight coverage with handheld breathing inserts to sell scale and claustrophobia",
|
||||
"accents": [
|
||||
"wood micro-grain and rust micro-etch on metal",
|
||||
"orange micro-glow seeping through slats"
|
||||
],
|
||||
"mood": "contained dread",
|
||||
"lighting": "deep hold shadows with unnatural internal glows",
|
||||
"style": "nautical containment horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Sunlit high street where mannequins align in a perfect procession at noon (light/creepy precision)",
|
||||
"sceneVariants": [
|
||||
"Shop windows with mannequins posed in mid-motion",
|
||||
"Pedestrian crosswalks busy with lunchtime traffic",
|
||||
"A bakery display of ornate pastries under a glass dome",
|
||||
"Buskers playing a cheerful tune nearby",
|
||||
"Paper flyers stuck to a lamppost fluttering in rhythm"
|
||||
],
|
||||
"actions": [
|
||||
"Mannequins shift posture incrementally to mimic passersby",
|
||||
"A store's reflection shows mannequins walking down the road while inside they freeze",
|
||||
"Cut to a close on a mannequin's eyelid blinking imperceptibly",
|
||||
"One pedestrian finds a sticker on their back matching the mannequin's tag"
|
||||
],
|
||||
"camera": "Bright high-street coverage with unnerving slow-motion inserts focusing on stillness becoming motion",
|
||||
"accents": [
|
||||
"plastic micro-polish on mannequins and glass micro-reflection",
|
||||
"pastry micro-gloss under shop lights"
|
||||
],
|
||||
"mood": "precise unease",
|
||||
"lighting": "strong daylight with crisp shadow that emphasizes mechanical movement",
|
||||
"style": "consumer-culture uncanny horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Dusk inside a subway tunnel where station announcements speak names from the listener's past (dark/psychic)",
|
||||
"sceneVariants": [
|
||||
"A tiled platform slick with incidental water",
|
||||
"A bench of abandoned newspapers folding in slow motion",
|
||||
"A directional sign with one arrow stuck and flickering",
|
||||
"A maintenance hatch clanging against the rail beats",
|
||||
"A ventilation grate that breathes faintly"
|
||||
],
|
||||
"actions": [
|
||||
"Automated announcements begin reciting a list of personal memories in monotone",
|
||||
"A commuter recognizes their own childhood lullaby embedded in the track hum",
|
||||
"Cut to a train arriving with no passengers, the doors opening to reveal an empty carriage full of old toys",
|
||||
"A station clock rewinds a few seconds and resumes"
|
||||
],
|
||||
"camera": "Tight underground tracking with echoing long takes and reflective puddle inserts",
|
||||
"accents": [
|
||||
"tile micro-glaze and metal micro-rust on rails",
|
||||
"announcement micro-reverb and train micro-squeal"
|
||||
],
|
||||
"mood": "intensely personal dread",
|
||||
"lighting": "dim platform lamps with deep tunnel black",
|
||||
"style": "urban-psychic horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Noonday tourist market where a fortune teller's tent shows visitors impossible future photos (light/ominous)",
|
||||
"sceneVariants": [
|
||||
"Colorful tents with painted motifs and tasseled curtains",
|
||||
"A table of cracked glass balls and hand-drawn palm charts",
|
||||
"Bundles of herbs hanging to dry",
|
||||
"A low stool with an embroidered cushion",
|
||||
"A chalkboard listing staggered prices"
|
||||
],
|
||||
"actions": [
|
||||
"A visitor receives a photo depicting a future moment that already unnervingly matches their current situation",
|
||||
"Photos rearrange themselves into a storyboard that isolates one person",
|
||||
"Cut to the tent flap closing behind a customer who doesn't step out",
|
||||
"A sudden gust scatters photos across the market, some showing impossible angles"
|
||||
],
|
||||
"camera": "Intimate tent close-ups with shallow depth and quick reaction cuts to outside bustle",
|
||||
"accents": [
|
||||
"fabric micro-thread on curtains and glass micro-smear on scrying balls",
|
||||
"herb micro-frond detail"
|
||||
],
|
||||
"mood": "prophetic unease",
|
||||
"lighting": "warm tent light against bright market sun, creating theatrical contrast",
|
||||
"style": "occult-market horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Midnight remote radio station where callers request songs that corrupt memory (dark/aural terror)",
|
||||
"sceneVariants": [
|
||||
"A bank of analog consoles with glowing VU meters",
|
||||
"Vinyl records stacked like offering plates",
|
||||
"An on-air red light buzzing steadily",
|
||||
"A wall of studio clocks with varying times",
|
||||
"A mug with the station's faded logo"
|
||||
],
|
||||
"actions": [
|
||||
"A caller requests an old song and the DJ plays it backwards, producing identical names spoken over static",
|
||||
"Listeners call in reporting lost hours and mismatched memories",
|
||||
"Cut to the DJ finding a voicemail that predates the station itself",
|
||||
"The broadcast signal warps streetlights near the tower into wavering halos"
|
||||
],
|
||||
"camera": "Tight studio inserts with lo-fi audio textures and claustrophobic framing",
|
||||
"accents": [
|
||||
"analog micro-noise on meters and vinyl micro-crackle",
|
||||
"red light micro-buzz in audio"
|
||||
],
|
||||
"mood": "aural paranoia",
|
||||
"lighting": "low studio amber with monitor glow",
|
||||
"style": "audio-driven psychological horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Sunlit canyon trail where echoes return answers from a different timeline (light/time-bending dread)",
|
||||
"sceneVariants": [
|
||||
"Rugged switchbacks with hand-carved stones",
|
||||
"Carved names on clifffaces weathered by decades",
|
||||
"A rope bridge creaking at a slow rhythm",
|
||||
"A small shrine tucked into a rock crevice",
|
||||
"A tin can trail marker rattling faintly in the wind"
|
||||
],
|
||||
"actions": [
|
||||
"A hiker shouts and receives back a version of their shout with an alternate meaning",
|
||||
"A reflected view in a pool shows someone who isn't there anymore",
|
||||
"Cut to journal pages fluttering that rearrange to spell a message from the future",
|
||||
"A path forks and both forks lead to the same impossibility"
|
||||
],
|
||||
"camera": "Epic outdoor coverage with off-kilter parallax edits to imply a time slip",
|
||||
"accents": [
|
||||
"stone micro-pitting and rope micro-fray on bridge",
|
||||
"water micro-surface clarity on reflective pool"
|
||||
],
|
||||
"mood": "dislocated dread",
|
||||
"lighting": "clear daylight with strange temporal shimmer in highlights",
|
||||
"style": "temporal-uncanny horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Midnight hospice corridor where portraits in the gallery breathe out fog and whisper names (dark/grieving supernatural)",
|
||||
"sceneVariants": [
|
||||
"Silent vinyl corridor with slow elevator hum",
|
||||
"A small gallery of family portraits in identical frames",
|
||||
"A folding chair with a knitted throw placed carefully",
|
||||
"A hallway clock ticking like a metronome",
|
||||
"A vase of plastic flowers that look disturbingly fresh"
|
||||
],
|
||||
"actions": [
|
||||
"Portrait eyes stain with tears that drip into pooling fog on the floor",
|
||||
"Whispers emanate from frames reciting regrets not yet spoken",
|
||||
"Cut to a slow approach of a portrait that matches one visitor's features exactly",
|
||||
"A hand reaches into the air and leaves a wet print on the glass"
|
||||
],
|
||||
"camera": "Slow dolly along corridor with intimate portrait close-ups and soft rack-focus",
|
||||
"accents": [
|
||||
"frame micro-dust and glass micro-condensation",
|
||||
"fabric micro-weave on knitted throw"
|
||||
],
|
||||
"mood": "mourning unease",
|
||||
"lighting": "muted warm hallway light with cool peripheral fog",
|
||||
"style": "ghastly elegiac horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Dusk mountain pass where cairns rearrange overnight to form a warning in an unknown tongue (light/ominous)",
|
||||
"sceneVariants": [
|
||||
"Wind-swept ridge line with sparse scrub",
|
||||
"A lone rusted sign half-buried in scree",
|
||||
"A cairn with a fresh stone placed perfectly on top",
|
||||
"A worn path that forks and rejoins strangely",
|
||||
"A distant bell sound carried from a valley"
|
||||
],
|
||||
"actions": [
|
||||
"Hikers find the cairn arrangement changed to show a directional arrow pointing into a ravine",
|
||||
"A rock slips to reveal an old talisman with a damp symbol",
|
||||
"Cut to a night-time shot where the stones pulse faintly as if breathing",
|
||||
"An attempt to replicate the arrangement results in slowly sinking stones"
|
||||
],
|
||||
"camera": "Expansive landscape shots with sudden intimate insert shots of talisman details",
|
||||
"accents": [
|
||||
"stone micro-weathering and talisman micro-patina",
|
||||
"wind micro-audio picking up tiny gravel sounds"
|
||||
],
|
||||
"mood": "remote foreboding",
|
||||
"lighting": "soft dusk with high mountain contrast",
|
||||
"style": "landscape-driven ritual horror"
|
||||
},
|
||||
{
|
||||
"subGenre": "Horror Films",
|
||||
"scene": "Noon corporate office where every email arrives with a photo from someone's secret past (light/invasive dread)",
|
||||
"sceneVariants": [
|
||||
"Cubicles with ident badges clipped to lanyards",
|
||||
"A communal coffee machine with a ring of mugs",
|
||||
"A glass-walled meeting room with a whiteboard full of diagrams",
|
||||
"A flier about team-building pinned to a corkboard",
|
||||
"A hallway lined with potted plants"
|
||||
],
|
||||
"actions": [
|
||||
"An inbox fills with chronological photo attachments of someone's childhood trauma",
|
||||
"Screens briefly display names of deceased relatives in the footer",
|
||||
"Cut to a staff meeting where the projector shows a private moment from a colleague's life",
|
||||
"A printer spits out a glossy photo that no one remembers sending"
|
||||
],
|
||||
"camera": "Sterile office steadycam with intrusive sudden close-ups of screens and printed photos",
|
||||
"accents": [
|
||||
"screen micro-pixelation and paper micro-gloss on printed photos",
|
||||
"coffee micro-stain on mug rims"
|
||||
],
|
||||
"mood": "social exposure dread",
|
||||
"lighting": "bright fluorescent office lighting with cold digital glare",
|
||||
"style": "modern tech-invasion horror"
|
||||
}
|
||||
]
|
||||
177
src/data/cinematic_and_film_styles_indie_films.json
Normal file
177
src/data/cinematic_and_film_styles_indie_films.json
Normal file
@ -0,0 +1,177 @@
|
||||
[
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "A quiet apartment kitchen where two characters share an awkward breakfast (light/intimate)",
|
||||
"sceneVariants": [
|
||||
"Narrow sink with dripping tap and mismatched mugs",
|
||||
"Sunlight through a single narrow window onto a scarred table",
|
||||
"A small stack of thrift-store vinyl beside an old radio",
|
||||
"A handwritten grocery list pinned to a cabinet",
|
||||
"A kettle whistling as a background motif"
|
||||
],
|
||||
"actions": [
|
||||
"A halting conversation reveals unresolved history",
|
||||
"Small domestic gestures — a half-smile, a fumble with cutlery — carry emotional weight",
|
||||
"A decision is reached about leaving or staying without dramatic explosions",
|
||||
"Silence is used deliberately to communicate resignation and tenderness"
|
||||
],
|
||||
"camera": "Static medium shot with awkward, intimate close-ups; lingering handheld inserts",
|
||||
"accents": [
|
||||
"warm window caustics catching dust motes",
|
||||
"tactile table-grain and chipped enamel micro-texture"
|
||||
],
|
||||
"mood": "quiet introspection",
|
||||
"lighting": "natural soft morning light with modest fill",
|
||||
"style": "low-key domestic realism"
|
||||
},
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "A late-night diner where strangers bond over a shared song and sorrow (night/nostalgic)",
|
||||
"sceneVariants": [
|
||||
"Flickering neon reflected on vinyl seats",
|
||||
"A jukebox playing an old-time tune in the corner",
|
||||
"A waitress wiping a counter with practiced motions",
|
||||
"A lost-in-thought patron nursing coffee and fries",
|
||||
"A menu with handwritten daily specials"
|
||||
],
|
||||
"actions": [
|
||||
"Two strangers share a small story that alters their night",
|
||||
"A quiet toast to a life moment of decision",
|
||||
"The waitress offers a pragmatic piece of advice",
|
||||
"A lingering shot tracks a departing figure into the rain"
|
||||
],
|
||||
"camera": "Warm handheld with long takes and quiet observational coverage",
|
||||
"accents": [
|
||||
"neon reflection micro-caustics and coffee steam micro-threads",
|
||||
"vintage chrome micro-glint on counter edge"
|
||||
],
|
||||
"mood": "melancholic connection",
|
||||
"lighting": "practical diner neon and warm interior lamp pools",
|
||||
"style": "melancholic slice-of-life"
|
||||
},
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "An impromptu backyard concert where a small band tries out new songs (day/communal)",
|
||||
"sceneVariants": [
|
||||
"A string of mismatched chairs and a small portable amp",
|
||||
"Neighbors leaning over fences to listen",
|
||||
"A child clapping off-beat and adding charm",
|
||||
"A handwritten setlist taped to a guitar case",
|
||||
"A kitchen window framing an audience at the sink"
|
||||
],
|
||||
"actions": [
|
||||
"A rough, heartfelt take becomes the evening's emotional core",
|
||||
"Petty disputes dissolve into collaborative harmony",
|
||||
"A neighbor requests an old favorite and the band obliges imperfectly",
|
||||
"The final song becomes a communal singalong"
|
||||
],
|
||||
"camera": "Intimate handheld coverage with wide contextual pulls and audio-forward mixes",
|
||||
"accents": [
|
||||
"amp grill micro-texture and finger-scratch on strings micro-detail",
|
||||
"soft audience breath and clapping micro-rhythms"
|
||||
],
|
||||
"mood": "warm communal spontaneity",
|
||||
"lighting": "golden-hour exterior with practical string lights",
|
||||
"style": "documentary-infused realism"
|
||||
},
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "A small-town festival where local eccentrics reveal hidden histories (day/quirky)",
|
||||
"sceneVariants": [
|
||||
"A hand-painted fair banner over a dusty main street",
|
||||
"An amateur parade of odd floats and costumes",
|
||||
"A town elder telling an exaggerated origin tale",
|
||||
"A forgotten storefront now hosting a pop-up gallery",
|
||||
"Children trying a local carnival game for the first time"
|
||||
],
|
||||
"actions": [
|
||||
"Minor revelations surface that change a character's sense of belonging",
|
||||
"Joy and embarrassment sit side-by-side as traditions are performed",
|
||||
"An unlikely friendship forms between outsider and native",
|
||||
"A quiet, off-stage consequence lingers after the festivities"
|
||||
],
|
||||
"camera": "Observational pans and character-led trackers with gentle zoom-ins",
|
||||
"accents": [
|
||||
"paint flake micro-char and fabric bunting micro-weave",
|
||||
"small-town dust particle micro-sheen"
|
||||
],
|
||||
"mood": "wistful acceptance",
|
||||
"lighting": "bright daylight with warm color saturation",
|
||||
"style": "quirky community portrait"
|
||||
},
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "A rain-soaked rooftop conversation where two ex-lovers decide to part ways (night/terminal)",
|
||||
"sceneVariants": [
|
||||
"Wet concrete reflecting city lights",
|
||||
"A single cigarette ember traveling between hands",
|
||||
"A small, shared umbrella for a short time",
|
||||
"A passerby passing under a neon sign with urgency",
|
||||
"A folded photograph passed between characters"
|
||||
],
|
||||
"actions": [
|
||||
"A measured breakup that avoids melodrama, centers on small regrets",
|
||||
"Each revelation is met by a quiet factual reply rather than shouting",
|
||||
"A final window-watch as one character steps back into the rain alone",
|
||||
"A small token left on the rooftop as a parting mark"
|
||||
],
|
||||
"camera": "Tight two-shot with long takes, rain-sheened glass and reflective depth",
|
||||
"accents": [
|
||||
"rain droplet micro-caustics and cigarette ash micro-detail",
|
||||
"photograph paper grain micro-texture"
|
||||
],
|
||||
"mood": "resigned tenderness",
|
||||
"lighting": "cool nightlight with reflective highlights",
|
||||
"style": "intimate emotional realism"
|
||||
},
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "A local busker's slow discovery of an audience during a rainy commute (day/hopeful)",
|
||||
"sceneVariants": [
|
||||
"A subway entrance with commuters moving like tides",
|
||||
"A guitar case with a few coins forming a small constellation",
|
||||
"A passerby stopping to record and then leaving a small note",
|
||||
"A fleeting exchange with a vendor who offers tea",
|
||||
"A sudden applause that rises unexpectedly"
|
||||
],
|
||||
"actions": [
|
||||
"A tentative song gains traction and a receptive listener encourages the busker",
|
||||
"A recorded snippet goes viral within the local community",
|
||||
"Small acts of kindness — an umbrella shared, a hot drink offered — change the mood",
|
||||
"The busker pockets a tiny keepsake and plays on with renewed warmth"
|
||||
],
|
||||
"camera": "Candid street-level handheld with close instrument and coin-macro shots",
|
||||
"accents": [
|
||||
"utterance breath micro-threads and guitar varnish micro-reflection",
|
||||
"wet pavement micro-grain and umbrella fabric micro-weave"
|
||||
],
|
||||
"mood": "gentle uplift",
|
||||
"lighting": "diffuse overcast with small warm practicals",
|
||||
"style": "slice-of-life uplift"
|
||||
},
|
||||
{
|
||||
"subGenre": "Indie Films",
|
||||
"scene": "A minimalist domestic montage showing the rhythms of a single life (varied/observational)",
|
||||
"sceneVariants": [
|
||||
"A morning coffee ritual in careful detail",
|
||||
"Slowly folding laundry with small domestic music",
|
||||
"A repetitive commute observed from a fixed angle",
|
||||
"A small, consistent habit marking time — a window-watering plant",
|
||||
"An evening ritual of small radio listening"
|
||||
],
|
||||
"actions": [
|
||||
"Repetition and subtle variation reveal character through habit",
|
||||
"An interruption — a missed call, a dropped mug — reframes a day",
|
||||
"A small reveal of longing or contentment in a tiny action",
|
||||
"A concluding image ties routine to a quiet personal choice"
|
||||
],
|
||||
"camera": "Patient fixed compositions with intimate macro inserts and restrained pace",
|
||||
"accents": [
|
||||
"ceramic cup micro-glaze and cloth thread micro-detail",
|
||||
"radio dial micro-scratch and soft ambient sound micro-layers"
|
||||
],
|
||||
"mood": "reflective solitude",
|
||||
"lighting": "natural domestic light with gentle grading",
|
||||
"style": "observational character study"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user