diff --git a/.gitignore b/.gitignore index a1b49da..d9a1c63 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,5 @@ yarn-error.log* # Downloaded images /download/ /generated/ -.env \ No newline at end of file +.env +input/ \ No newline at end of file diff --git a/src/lib/lmstudio.ts b/src/lib/lmstudio.ts index 684642a..9e9ba03 100644 --- a/src/lib/lmstudio.ts +++ b/src/lib/lmstudio.ts @@ -4,25 +4,27 @@ import { logger } from './logger'; dotenv.config(); -const LLM_BASE_URL = process.env.LLM_BASE_URL; +const LMSTUDIO_BASE_URL = process.env.LMSTUDIO_BASE_URL; +const LMSTUDIO_API_KEY = process.env.LMSTUDIO_API_KEY; +const LMSTUDIO_MODEL = process.env.LMSTUDIO_MODEL; -async function callLMStudio(prompt: string): Promise { - if (!LLM_BASE_URL) { - throw new Error('LLM_BASE_URL is not defined in the .env file'); +async function callLmstudio(prompt: string): Promise { + if (!LMSTUDIO_BASE_URL) { + throw new Error('LMSTUDIO_BASE_URL is not defined in the .env file'); } for (let i = 0; i < 10; i++) { let llmResponse = ""; try { - const requestUrl = new URL('v1/chat/completions', LLM_BASE_URL); - const response = await fetch(requestUrl, { + const response = await fetch(`${LMSTUDIO_BASE_URL}/chat/completions`, { method: 'POST', headers: { 'Content-Type': 'application/json', + 'Authorization': `Bearer ${LMSTUDIO_API_KEY}`, }, body: JSON.stringify({ - model: 'local-model', + model: LMSTUDIO_MODEL, messages: [ { role: 'user', @@ -40,15 +42,19 @@ async function callLMStudio(prompt: string): Promise { const jsonMatch = content.match(/\{[\s\S]*\}/); if (jsonMatch) { return JSON.parse(jsonMatch[0]); + } else { + const arrayMatch = content.match(/\[[\s\S]*\]/); + if (arrayMatch) { + return JSON.parse(arrayMatch[0]); + } } + // If no JSON/array found, return the raw content + return content; } else { logger.error('Unexpected API response:', data); } } catch (error) { logger.error(`Attempt ${i + 1} failed:`, error); - if (error instanceof TypeError && error.message.includes('fetch failed')) { - logger.error('Could not connect to the LM Studio server. Please ensure the server is running and accessible at the specified LLM_BASE_URL.'); - } logger.debug(`LLM response: ${llmResponse}`) } } @@ -56,9 +62,9 @@ async function callLMStudio(prompt: string): Promise { throw new Error('Failed to get response from LLM after 10 attempts'); } -async function callLMStudioWithFile(imagePath: string, prompt: string): Promise { - if (!LLM_BASE_URL) { - throw new Error('LLM_BASE_URL is not defined in the .env file'); +async function callLMStudioAPIWithFile(imagePath: string, prompt: string): Promise { + if (!LMSTUDIO_BASE_URL) { + throw new Error('LMSTUDIO_BASE_URL is not defined in the .env file'); } const imageBuffer = fs.readFileSync(imagePath); @@ -68,14 +74,14 @@ async function callLMStudioWithFile(imagePath: string, prompt: string): Promise< let llmResponse = ""; try { - const requestUrl = new URL('v1/chat/completions', LLM_BASE_URL); - const response = await fetch(requestUrl, { + const response = await fetch(`${LMSTUDIO_BASE_URL}/chat/completions`, { method: 'POST', headers: { 'Content-Type': 'application/json', + 'Authorization': `Bearer ${LMSTUDIO_API_KEY}`, }, body: JSON.stringify({ - model: 'local-model', + model: LMSTUDIO_MODEL, messages: [ { role: 'user', @@ -96,15 +102,17 @@ async function callLMStudioWithFile(imagePath: string, prompt: string): Promise< const jsonMatch = content.match(/\{[\s\S]*\}/); if (jsonMatch) { return JSON.parse(jsonMatch[0]); + } else { + const arrayMatch = content.match(/\[[\s\S]*\]/); + if (arrayMatch) { + return JSON.parse(arrayMatch[0]); + } } } else { logger.error('Unexpected API response:', data); } } catch (error) { logger.error(`Attempt ${i + 1} failed:`, error); - if (error instanceof TypeError && error.message.includes('fetch failed')) { - logger.error('Could not connect to the LM Studio server. Please ensure the server is running and accessible at the specified LLM_BASE_URL.'); - } logger.debug(`LLM response: ${llmResponse}`) } } @@ -112,4 +120,4 @@ async function callLMStudioWithFile(imagePath: string, prompt: string): Promise< throw new Error('Failed to describe image after 10 attempts'); } -export { callLMStudio, callLMStudioWithFile }; +export { callLmstudio, callLMStudioAPIWithFile }; diff --git a/src/musicspot_generator/cetridesete/face.png b/src/musicspot_generator/v1/cetridesete/face.png similarity index 100% rename from src/musicspot_generator/cetridesete/face.png rename to src/musicspot_generator/v1/cetridesete/face.png diff --git a/src/musicspot_generator/cetridesete/face2.png b/src/musicspot_generator/v1/cetridesete/face2.png similarity index 100% rename from src/musicspot_generator/cetridesete/face2.png rename to src/musicspot_generator/v1/cetridesete/face2.png diff --git a/src/musicspot_generator/cetridesete/scenes.json b/src/musicspot_generator/v1/cetridesete/scenes.json similarity index 100% rename from src/musicspot_generator/cetridesete/scenes.json rename to src/musicspot_generator/v1/cetridesete/scenes.json diff --git a/src/musicspot_generator/cetridesete/scenes2.json b/src/musicspot_generator/v1/cetridesete/scenes2.json similarity index 100% rename from src/musicspot_generator/cetridesete/scenes2.json rename to src/musicspot_generator/v1/cetridesete/scenes2.json diff --git a/src/musicspot_generator/cetridesete/song.mp3 b/src/musicspot_generator/v1/cetridesete/song.mp3 similarity index 100% rename from src/musicspot_generator/cetridesete/song.mp3 rename to src/musicspot_generator/v1/cetridesete/song.mp3 diff --git a/src/musicspot_generator/fire in the night/face.png b/src/musicspot_generator/v1/fire in the night/face.png similarity index 100% rename from src/musicspot_generator/fire in the night/face.png rename to src/musicspot_generator/v1/fire in the night/face.png diff --git a/src/musicspot_generator/fire in the night/scenes.json b/src/musicspot_generator/v1/fire in the night/scenes.json similarity index 100% rename from src/musicspot_generator/fire in the night/scenes.json rename to src/musicspot_generator/v1/fire in the night/scenes.json diff --git a/src/musicspot_generator/fire in the night/song.mp3 b/src/musicspot_generator/v1/fire in the night/song.mp3 similarity index 100% rename from src/musicspot_generator/fire in the night/song.mp3 rename to src/musicspot_generator/v1/fire in the night/song.mp3 diff --git a/src/musicspot_generator/girly girl/face.png b/src/musicspot_generator/v1/girly girl/face.png similarity index 100% rename from src/musicspot_generator/girly girl/face.png rename to src/musicspot_generator/v1/girly girl/face.png diff --git a/src/musicspot_generator/girly girl/scenes.json b/src/musicspot_generator/v1/girly girl/scenes.json similarity index 100% rename from src/musicspot_generator/girly girl/scenes.json rename to src/musicspot_generator/v1/girly girl/scenes.json diff --git a/src/musicspot_generator/girly girl/song.mp3 b/src/musicspot_generator/v1/girly girl/song.mp3 similarity index 100% rename from src/musicspot_generator/girly girl/song.mp3 rename to src/musicspot_generator/v1/girly girl/song.mp3 diff --git a/src/musicspot_generator/images.ts b/src/musicspot_generator/v1/images.ts similarity index 98% rename from src/musicspot_generator/images.ts rename to src/musicspot_generator/v1/images.ts index c16335d..59f268d 100644 --- a/src/musicspot_generator/images.ts +++ b/src/musicspot_generator/v1/images.ts @@ -2,11 +2,11 @@ import dotenv from 'dotenv'; import path from 'path'; import fs from 'fs/promises'; -import { logger } from '../lib/logger'; -import { callOpenAI } from '../lib/openai'; -import { callLMStudio } from '../lib/lmstudio'; +import { logger } from '../../lib/logger'; +import { callOpenAI } from '../../lib/openai'; +import { callLMStudio } from '../../lib/lmstudio'; // import { generateImage as generateFaceImage } from '../lib/image-generator-face'; // Removed -import { generateImage } from '../lib/image-generator'; // Added +import { generateImage } from '../../lib/image-generator'; // Added dotenv.config(); diff --git a/src/musicspot_generator/index.ts b/src/musicspot_generator/v1/index.ts similarity index 98% rename from src/musicspot_generator/index.ts rename to src/musicspot_generator/v1/index.ts index 4cdf90f..b47e366 100644 --- a/src/musicspot_generator/index.ts +++ b/src/musicspot_generator/v1/index.ts @@ -2,10 +2,10 @@ import dotenv from 'dotenv'; import path from 'path'; import fs from 'fs/promises'; -import { logger } from '../lib/logger'; -import { callOpenAI } from '../lib/openai'; -import { generateImage as generateFaceImage } from '../lib/image-generator-face'; -import { generateVideo } from '../lib/video-generator'; +import { logger } from '../../lib/logger'; +import { callOpenAI } from '../../lib/openai'; +import { generateImage as generateFaceImage } from '../../lib/image-generator-face'; +import { generateVideo } from '../../lib/video-generator'; dotenv.config(); diff --git a/src/musicspot_generator/infinitydance/scenes.json b/src/musicspot_generator/v1/infinitydance/scenes.json similarity index 100% rename from src/musicspot_generator/infinitydance/scenes.json rename to src/musicspot_generator/v1/infinitydance/scenes.json diff --git a/src/musicspot_generator/oputstise/face.png b/src/musicspot_generator/v1/oputstise/face.png similarity index 100% rename from src/musicspot_generator/oputstise/face.png rename to src/musicspot_generator/v1/oputstise/face.png diff --git a/src/musicspot_generator/oputstise/oputstise_musicspot_s4_c1_v1.mp4 b/src/musicspot_generator/v1/oputstise/oputstise_musicspot_s4_c1_v1.mp4 similarity index 100% rename from src/musicspot_generator/oputstise/oputstise_musicspot_s4_c1_v1.mp4 rename to src/musicspot_generator/v1/oputstise/oputstise_musicspot_s4_c1_v1.mp4 diff --git a/src/musicspot_generator/oputstise/scenes.json b/src/musicspot_generator/v1/oputstise/scenes.json similarity index 100% rename from src/musicspot_generator/oputstise/scenes.json rename to src/musicspot_generator/v1/oputstise/scenes.json diff --git a/src/musicspot_generator/oputstise/song.mp3 b/src/musicspot_generator/v1/oputstise/song.mp3 similarity index 100% rename from src/musicspot_generator/oputstise/song.mp3 rename to src/musicspot_generator/v1/oputstise/song.mp3 diff --git a/src/musicspot_generator/scenes.json b/src/musicspot_generator/v1/scenes.json similarity index 100% rename from src/musicspot_generator/scenes.json rename to src/musicspot_generator/v1/scenes.json diff --git a/src/musicspot_generator/videos.ts b/src/musicspot_generator/v1/videos.ts similarity index 98% rename from src/musicspot_generator/videos.ts rename to src/musicspot_generator/v1/videos.ts index bde7f3f..d25324c 100644 --- a/src/musicspot_generator/videos.ts +++ b/src/musicspot_generator/v1/videos.ts @@ -2,9 +2,9 @@ import dotenv from 'dotenv'; import path from 'path'; import fs from 'fs/promises'; -import { logger } from '../lib/logger'; -import { callOpenAI } from '../lib/openai'; -import { generateVideo } from '../lib/video-generator'; +import { logger } from '../../lib/logger'; +import { callOpenAI } from '../../lib/openai'; +import { generateVideo } from '../../lib/video-generator'; dotenv.config(); @@ -234,7 +234,7 @@ async function main() { serverForVideo.baseUrl!, serverForVideo.outputDir!, DEFAULT_SIZE, - true, + false, false ); diff --git a/src/musicspot_generator/zagreb/face.png b/src/musicspot_generator/v1/zagreb/face.png similarity index 100% rename from src/musicspot_generator/zagreb/face.png rename to src/musicspot_generator/v1/zagreb/face.png diff --git a/src/musicspot_generator/zagreb/scenes.json b/src/musicspot_generator/v1/zagreb/scenes.json similarity index 100% rename from src/musicspot_generator/zagreb/scenes.json rename to src/musicspot_generator/v1/zagreb/scenes.json diff --git a/src/musicspot_generator/zagreb/song.mp3 b/src/musicspot_generator/v1/zagreb/song.mp3 similarity index 100% rename from src/musicspot_generator/zagreb/song.mp3 rename to src/musicspot_generator/v1/zagreb/song.mp3 diff --git a/src/musicspot_generator/v2/generate_photo.ts b/src/musicspot_generator/v2/generate_photo.ts new file mode 100644 index 0000000..82df9eb --- /dev/null +++ b/src/musicspot_generator/v2/generate_photo.ts @@ -0,0 +1,62 @@ +import fs from 'fs'; +import path from 'path'; +import crypto from 'crypto'; +import { generateImage } from '../../lib/image-generator'; +import { logger } from '../../lib/logger'; +import dotenv from 'dotenv'; + +dotenv.config(); + +const scenesFilePath = path.resolve(process.cwd(), 'src/musicspot_generator/v2/scenes.json'); +const GENERATED_DIR = path.resolve('generated'); +const DEFAULT_SIZE = { width: 1280, height: 720 }; + +interface Scene { + scene: string; + imagePrompt: string; + videoPromp: string; + baseImagePath: string; +} + +const COMFY_BASE_URL = process.env.COMFY_BASE_URL; +const COMFY_OUTPUT_DIR = process.env.COMFY_OUTPUT_DIR; + +async function generatePhotos() { + if (!COMFY_BASE_URL || !COMFY_OUTPUT_DIR) { + throw new Error('COMFY_BASE_URL or COMFY_OUTPUT_DIR is not defined in the .env file'); + } + + const scenesFileContent = fs.readFileSync(scenesFilePath, 'utf-8'); + const scenesData: { scenes: Scene[] } = JSON.parse(scenesFileContent); + + for (const scene of scenesData.scenes) { + const hash = crypto.createHash('sha256').update(scene.baseImagePath).digest('hex'); + const imgFileName = `${hash}.png`; + const outputFilePath = path.join(GENERATED_DIR, imgFileName); + + if (fs.existsSync(outputFilePath)) { + logger.info(`Skipping already generated photo for: ${scene.baseImagePath}`); + continue; + } + + logger.info(`Generating photo for: ${scene.baseImagePath}`); + + try { + await generateImage( + scene.imagePrompt, + imgFileName, + COMFY_BASE_URL, + COMFY_OUTPUT_DIR, + 'flux', + DEFAULT_SIZE + ); + logger.info(`Successfully generated photo: ${imgFileName}`); + } catch (error) { + logger.error(`Error generating photo for scene ${scene.scene}:`, error); + } + } +} + +generatePhotos().catch(error => { + logger.error('An unexpected error occurred:', error); +}); diff --git a/src/musicspot_generator/v2/generate_scenes.ts b/src/musicspot_generator/v2/generate_scenes.ts new file mode 100644 index 0000000..fe4e7a3 --- /dev/null +++ b/src/musicspot_generator/v2/generate_scenes.ts @@ -0,0 +1,87 @@ +import fs from 'fs'; +import path from 'path'; +import { callLMStudioAPIWithFile } from '../../lib/lmstudio'; +import { logger } from '../../lib/logger'; + +const promptInstructions = ` + Video prompt: No slowmotion, Be creative and generate dynamic dance scene. + `; + +const inputDir = path.resolve(process.cwd(), 'input'); +const outputFilePath = path.resolve(process.cwd(), 'src/musicspot_generator/v2/scenes.json'); + +interface Scene { + scene: string; + imagePrompt: string; + videoPromp: string; + baseImagePath: string; +} + +async function processImages() { + const imageFiles = fs.readdirSync(inputDir).filter(file => /\.(png|jpg|jpeg)$/i.test(file)); + let scenes: { scenes: Scene[] } = { scenes: [] }; + + if (fs.existsSync(outputFilePath)) { + const fileContent = fs.readFileSync(outputFilePath, 'utf-8'); + if (fileContent) { + scenes = JSON.parse(fileContent); + } + } + + for (const imageFile of imageFiles) { + const imagePath = path.resolve(inputDir, imageFile); + const absoluteImagePath = path.resolve(imagePath); + + const existingScene = scenes.scenes.find(s => s.baseImagePath === absoluteImagePath); + if (existingScene) { + logger.info(`Skipping already processed image: ${imageFile}`); + continue; + } + + logger.info(`Processing image: ${imageFile} `); + + const prompt = ` + Analyze the provided image and generate a JSON object with the following structure: +{ + "scenes": [ + { + "scene": "A descriptive title for the scene in the image.", + "imagePrompt": { + "description": "A detailed description of the image content.", + "style": "Art style or photography style of the image.", + "lighting": "Description of the lighting in the image.", + "outfit": "Description of the outfit or clothing style in the image.", + "location": "Description of the location or setting of the image.", + "poses": "Description of the poses or actions of any subjects in the image.", + "angle": "Description of the camera angle or perspective of the image.", + } + "videoPromp": "Based on the image, create a prompt for a video that shows what might happen next or brings the scene to life.", + "baseImagePath": "The absolute path of the base image." + } + ] +} + +Instructions: ${promptInstructions} +`; + + try { + const result = await callLMStudioAPIWithFile(imagePath, prompt); + if (result && result.scenes) { + const newScene = result.scenes[0]; + newScene.baseImagePath = absoluteImagePath; // Ensure the path is correct + scenes.scenes.push(newScene); + + fs.writeFileSync(outputFilePath, JSON.stringify(scenes, null, 2)); + logger.info(`Successfully processed and saved scene for: ${imageFile} `); + } else { + logger.error('Failed to get valid scene data from API for image:', imageFile); + } + } catch (error) { + logger.error(`Error processing image ${imageFile}: `, error); + } + } +} + +processImages().catch(error => { + logger.error('An unexpected error occurred:', error); +}); diff --git a/src/musicspot_generator/v2/generate_video.ts b/src/musicspot_generator/v2/generate_video.ts new file mode 100644 index 0000000..be40406 --- /dev/null +++ b/src/musicspot_generator/v2/generate_video.ts @@ -0,0 +1,57 @@ +import * as fs from 'fs'; +import * as path from 'path'; +import * as crypto from 'crypto'; +import { generateVideo } from '../../lib/video-generator'; +import dotenv from 'dotenv'; + +dotenv.config(); + +interface Scene { + scene: string; + videoPrompt: string; + baseImagePath: string; +} + +const scenesFilePath = path.join(__dirname, 'scenes.json'); +const generatedFolderPath = path.join(__dirname, '..', '..', '..', 'generated'); + +async function processScenes() { + try { + const scenesData = fs.readFileSync(scenesFilePath, 'utf-8'); + const scenes: Scene[] = JSON.parse(scenesData).scenes; + + for (const scene of scenes) { + const hash = crypto.createHash('sha256').update(scene.baseImagePath).digest('hex'); + const imageFileName = `${hash}.png`; + const imagePath = path.join(generatedFolderPath, imageFileName); + + if (fs.existsSync(imagePath)) { + const outputVideoFileName = `${hash}.mp4`; + const outputVideoPath = path.join(generatedFolderPath, outputVideoFileName); + + if (fs.existsSync(outputVideoPath)) { + console.log(`Video already exists for scene ${scene.scene}, skipping.`); + continue; + } + + console.log(`Generating video for scene ${scene.scene}...`); + + await generateVideo( + scene.videoPrompt, + imagePath, + outputVideoPath, + process.env.COMFY_BASE_URL!, + process.env.COMFY_OUTPUT_DIR!, + { width: 1280, height: 720 } + ); + console.log(`Video for scene ${scene.scene} saved to ${outputVideoPath}`); + } else { + console.warn(`Image not found for scene ${scene.scene}: ${imagePath}`); + } + } + } catch (error) { + console.error('Error processing scenes:', error); + } +} + +processScenes(); diff --git a/src/musicspot_generator/v2/photo_download.ts b/src/musicspot_generator/v2/photo_download.ts new file mode 100644 index 0000000..04b6920 --- /dev/null +++ b/src/musicspot_generator/v2/photo_download.ts @@ -0,0 +1,227 @@ +import { callLmstudio } from '../../lib/lmstudio'; +import { logger } from '../../lib/logger'; +import * as fs from 'fs/promises'; +import dotenv from 'dotenv'; +import path from 'path'; +import puppeteer from 'puppeteer'; + +dotenv.config(); + +const SCROLL_SEARCH = 3; // scroll times on search results +const SCROLL_PIN = 3; // scroll times on pin page +const PINS_TO_COLLECT = 5; + +// Hard-coded user prompt +const HARDCODED_USER_PROMPT = process.env.HARDCODED_USER_PROMPT || ` + Generate 20 keywords for photos of group of people dancing together focus on street and urban style. All keywords shoudld contain \"group horizontal\" and what you create. + Example output : ["group horizontal hiphop dance","group horizontal modern dance","",... and 20 items in array] + `; + +async function getPinUrlsFromPinterest(keyword: string, scrollCount = SCROLL_SEARCH, limit = PINS_TO_COLLECT): Promise { + 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' }); + + let pinLinks = new Set(); + for (let i = 0; i < scrollCount; i++) { + const linksBefore = pinLinks.size; + const newLinks = await page.$$eval('a', (anchors) => + anchors.map((a) => a.href).filter((href) => href.includes('/pin/')) + ); + newLinks.forEach(link => pinLinks.add(link)); + + if (pinLinks.size >= limit) { + break; + } + + await page.evaluate('window.scrollTo(0, document.body.scrollHeight)'); + await new Promise(r => setTimeout(r, 500 + Math.random() * 1000)); + + if (pinLinks.size === linksBefore) { + // If no new pins are loaded, stop scrolling + logger.info(`No new pins loaded for "${keyword}", stopping scroll.`); + break; + } + } + return Array.from(pinLinks).slice(0, limit); + } catch (error) { + logger.error(`Error while getting pin URLs from Pinterest for keyword "${keyword}":`, error); + return []; + } finally { + await browser.close(); + } +} + +async function downloadImagesFromPin(pinUrl: string, scrollTimes = SCROLL_PIN): Promise { + 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 ''; // Ignore images without srcset + } + + const parts = srcset.split(',').map(p => p.trim()); + for (const part of parts) { + const match = part.match(/^(\S+)\s+4x$/); + if (match && match[1]) { + return match[1]; // Found the 4x version, return it + } + } + + return ''; // No 4x version found for this image + }).filter(s => !!s && s.includes('pinimg')); // Filter out empty strings and non-pinterest images + return [...new Set(urls)]; // Return unique URLs + }); + + if (!imgs || imgs.length === 0) { + logger.warn(`No high-res images found on pin ${pinUrl}`); + return []; + } + + const outDir = path.join(process.cwd(), 'download'); + await fs.mkdir(outDir, { recursive: true }); + const results: string[] = []; + for (let i = 0; i < imgs.length; i++) { + const src = imgs[i]; + try { + const imgPage = await browser.newPage(); + const resp = await imgPage.goto(src, { timeout: 30000, waitUntil: 'load' }); + 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(); + } +} + + +// 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: string) => l.trim()).filter(Boolean); + if (lines.length > 1) return lines; + return null; +} + +async function extractKeywordsFromPromptWithLmstudio(prompt: string, count = 5): Promise { + const instruction = `You are given a short instruction describing the type of content to search for. +Return exactly a JSON array of ${count} short keyword phrases suitable for searching Pinterest. `; + + try { + const res = await callLmstudio(`${instruction}\n\nInstruction: ${prompt}`); + if (!res) { + logger.warn('callLmstudio returned empty response for keyword extraction.'); + return []; + } + + let parsed: any; + if (typeof res === 'object' && res.text) { + parsed = extractJsonFromText(res.text); + } else if (typeof res === 'string') { + parsed = extractJsonFromText(res); + } else if (typeof res === 'object') { + parsed = res; + } + + if (Array.isArray(parsed)) { + return parsed.map(String).slice(0, count); + } + + if (typeof parsed === 'object' && parsed !== null) { + const maybe = parsed.keywords || parsed.list || parsed.items || parsed.keywords_list; + if (Array.isArray(maybe)) return maybe.map(String).slice(0, count); + } + + const text = typeof res === 'string' ? res : (res && res.text) || JSON.stringify(res); + const lines = text.split(/\r?\n/).map((l: string) => l.replace(/^\d+[\).\s-]*/, '').trim()).filter(Boolean); + if (lines.length >= 1) { + return lines.slice(0, count); + } + + logger.warn(`Could not parse keywords from LM Studio response: ${JSON.stringify(res)}`); + return []; + + } catch (error) { + logger.error('Error during keyword extraction with callLmstudio:', error); + return []; + } +} + + +(async () => { + logger.info(`Starting photo download process with prompt: "${HARDCODED_USER_PROMPT}"`); + + // 1. Extract keywords from the hardcoded prompt + const keywords = await extractKeywordsFromPromptWithLmstudio(HARDCODED_USER_PROMPT, 20); // Using 5 keywords to get a good variety + if (!keywords || keywords.length === 0) { + logger.error("Could not extract keywords from prompt. Exiting."); + return; + } + logger.info(`Extracted keywords: ${keywords.join(', ')}`); + + // 2. Search Pinterest for each keyword and collect pin URLs + let allPinUrls = new Set(); + for (const keyword of keywords) { + logger.info(`Searching Pinterest for keyword: "${keyword}"`); + const pinUrls = await getPinUrlsFromPinterest(keyword, SCROLL_SEARCH, PINS_TO_COLLECT); + pinUrls.forEach(url => allPinUrls.add(url)); + } + + const finalPinUrls = Array.from(allPinUrls); + logger.info(`Collected ${finalPinUrls.length} unique pin URLs to process.`); + + // 3. Go through each pin URL, scroll, and download all photos + let totalDownloads = 0; + for (const pinUrl of finalPinUrls) { + try { + logger.info(`Processing pin: ${pinUrl}`); + const downloadedPaths = await downloadImagesFromPin(pinUrl, SCROLL_PIN); + if (downloadedPaths.length > 0) { + logger.info(`Successfully downloaded ${downloadedPaths.length} images from ${pinUrl}`); + totalDownloads += downloadedPaths.length; + } else { + logger.warn(`No images were downloaded from ${pinUrl}`); + } + } catch (error) { + logger.error(`An error occurred while processing pin ${pinUrl}:`, error); + } + } + + logger.info(`Photo download process finished. Total images downloaded: ${totalDownloads}`); +})(); diff --git a/src/musicspot_generator/v2/scenes.json b/src/musicspot_generator/v2/scenes.json new file mode 100644 index 0000000..b6901b4 --- /dev/null +++ b/src/musicspot_generator/v2/scenes.json @@ -0,0 +1,4652 @@ +{ + "scenes": [ + { + "scene": "Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A group of dancers are captured in a mid-dance pose, all wearing similar grey outfits.", + "style": "Modern dance photography, with an emphasis on form and movement.", + "lighting": "Soft, even lighting that creates subtle shadows. It's predominantly monochromatic to draw attention to the dancers' forms.", + "outfit": "All dancers wear light-colored grey clothing consisting of loose tops and wide pants, allowing for freedom of movement.", + "location": "A stark white stage with a black backdrop", + "poses": "The dancers are in dynamic poses, ranging from bent to arched backs. They all have varying degrees of arm extension, suggesting an unfolding dance sequence.", + "angle": "Slightly low angle, emphasizing the dancer'- forms and their connection to the floor." + }, + "videoPrompt": "A group of dancers in grey are performing a dynamic contemporary dance routine. The music swells as they transition from the current pose into an unfolding series of fluid movements, each dancer building on the others’ energy. Add more dancers that gradually build up and turn into a complex choreography with both graceful and forceful elements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638915081_8.png" + }, + { + "scene": "Ethereal Dance", + "imagePrompt": { + "description": "A group of dancers wearing black long-sleeved leotards and white pants are in a dynamic dance pose, suggesting both elegance and power.", + "style": "Photorealistic", + "lighting": "Soft, diffused lighting, creating dramatic shadows on the bodies.", + "outfit": "Black long-sleeved leotards with white pants. Simple and elegant.", + "location": "A studio setting with a neutral backdrop.", + "poses": "The dancers are in an almost 'abstract' dance pose, bending forward while reaching out, creating flowing lines and shapes", + "angle": "Slightly low angle, focusing on the dancers' upper bodies." + }, + "videoPrompt": "A group of dancers perform a modern routine with quick, fluid movements. They begin in a similar bent-forward pose, then transition into a dynamic dance sequence that builds to a crescendo of energy. The background shifts between muted grays and deep blacks, enhancing the drama.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638915964_14.png" + }, + { + "scene": "Jazz Dance Silhouettes", + "imagePrompt": { + "description": "A series of ten silhouetted figures in a jazz dance pose, arranged in two rows.", + "style": "Retro/Vintage Illustration - reminiscent of the classic Jazz Age (1920s-30s).", + "lighting": "Soft and even lighting, emphasizing the shape of the figures without strong shadows.", + "outfit": "The figures are wearing vintage outfits – women in dresses or suits with a vest, high heel shoes, and hats.", + "location": "A simple white background - suggests a stage or dance floor", + "poses": "Each figure is in a dynamic jazz dance pose. They're engaging in various poses like pointing, gesturing, raising arms, etc.", + "angle": "Direct frontal view – the figures are facing the viewer." + }, + "videoPrompt": "A vibrant Jazz band kicks off an energetic dance scene! The dancers transition between different poses from the image. Add some dynamic camera angles - zoom in on specific dancer's expressions, and add a subtle background of smoke to enhance the vintage feel.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638916075_15.png" + }, + { + "scene": "Dynamic Jazz Dance", + "imagePrompt": { + "description": "Four dancers in a jazz-inspired performance wear black outfits with hats.", + "style": "Dance Photography - capturing the movement and energy of the dancers.", + "lighting": "Warm stage lighting, creating strong shadows and highlighting the dancers' forms.", + "outfit": "Black crop tops and fitted pants, accented by classic black hats. Dancers are wearing black leather shoes.", + "location": "A dark stage with a black backdrop", + "poses": "The dancers are in dynamic poses - some have raised knees, and others are mid-step in what appears to be a jazz dance routine.", + "angle": "Slightly low angle, giving the viewer a sense of being immersed in the performance." + }, + "videoPrompt": "The dancers continue their energetic Jazz Dance with a fast tempo. The scene transitions into a full-fledged jazz dance number, with more complex moves and an increasing pace. They begin to move as one and build up energy as they begin to move across the stage.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638916353_18.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of six dancers is captured mid-air in a dynamic dance performance. They all wear black outfits, with variations in style – some are wearing dresses, others pants and tops.", + "style": "Contemporary Photography", + "lighting": "Bright and even lighting, creating high contrast between the dancers and the white background.", + "outfit": "Predominantly black clothing. Some dancers wear black dresses, while others wear a combination of shorts/pants and tops. All outfits are sleek and modern.", + "location": "A simple, solid white backdrop", + "poses": "Each dancer is frozen in a dynamic pose – jumping, leaping or crouching to create a sense of motion and energy. They all appear to be mid-action.", + "angle": "Frontal perspective with slightly below eye level." + }, + "videoPrompt": "The dancers are performing a fast-paced contemporary dance routine, building from the frozen image into a full sequence of fluid movements. The music is upbeat and dynamic, creating an energetic feel. They start by leaping off the ground, then transition into complex turns and jumps with smooth transitions between each dancer's individual spotlight.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638918013_27.png" + }, + { + "scene": "Dynamic Dance Rehearsal", + "imagePrompt": { + "description": "A large group of dancers are captured in a mid-dance pose, creating a sense of energy and motion. They're all facing forward in the frame.", + "style": "Contemporary Photography with a slight moodiness.", + "lighting": "Dim but even lighting, creates shadows and highlights on the dancers.", + "outfit": "Mix of white tops and black sports bras or crop tops paired with dark leggings. Most dancers are wearing similar outfits. ", + "location": "A dance studio with a black floor and bare walls.", + "poses": "The dancers have arched their backs, creating an elegant curve in the group's silhouette. They appear to be mid-motion, like they're holding a pose during a routine or rehearsal", + "angle": "Slightly above eye level, giving a good view of the whole group." + }, + "videoPrompt": "The dancers continue their dynamic dance with quick transitions between poses. The scene builds into a fast-paced and energetic dance number with dancers breaking off from the group to showcase individual skills then returning to the original formation", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638918671_31.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A large group of dancers are performing a modern dance routine on a stage with dark backdrop.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic, warm spotlighting with cool undertones. The lighting is focused on the dancers and creates dramatic shadows.", + "outfit": "All dancers wear simple, fitted grey outfits – likely leotards or dancewear. It's a minimalist look allowing focus on movement.", + "location": "A stage, possibly a black box theater with a dark floor.", + "poses": "The dancers are in dynamic poses; some are reaching upward, others are bending forward. They have both fluid and strong movements, suggesting energy and emotion.", + "angle": "Slightly low angle, giving the dancers prominence and power." + }, + "videoPrompt": "A series of dancers begin to move into a more intricate modern dance, with dancers breaking off from the group to perform solos before reforming back into an ensemble. The music builds in intensity as they perform a quick, energetic sequence, ending with all dancers connected in a single flowing line.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638918763_32.png" + }, + { + "scene": "Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A group of five young female dancers are frozen in a complex pose, creating an interesting interplay between strength and fragility.", + "style": "Contemporary dance photography with a slightly stylized look.", + "lighting": "Soft, warm pink lighting creates subtle shadows on the background. It's almost like they're being 'lit up' from within.", + "outfit": "All dancers wear similar outfits: light grey wide-legged pants and yellow crop tops. This provides a sense of uniform but also allows their bodies to be the focal point.", + "location": "A simple, pale pink background acts as a stage for the dancers.", + "poses": "The dancers are in a layered pose – some are supporting others, creating a pyramid-like structure with dynamic energy. They're almost suspended between stability and motion. ", + "angle": "Frontal angle, slightly below eye level, giving the viewers a sense of being involved in their dance." + }, + "videoPrompt": "The dancers transition from this frozen pose into a fluid, energetic dance routine with flowing movements. The music swells as they move through a modern dance sequence, incorporating both smooth and sharp motions, building to an impressive crescendo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\101260691615995125_1758638919626_34.png" + }, + { + "scene": "Dynamic Fashion Movement", + "imagePrompt": { + "description": "A group of five men are captured in a dynamic pose, appearing to be engaged in a lively dance or energetic movement. They're all dressed in unique outfits that blend modern and traditional styles.", + "style": "Editorial Fashion Photography - with an emphasis on capturing motion", + "lighting": "Bright and even lighting, creating clear visibility of the subjects and their clothing.", + "outfit": "Each man wears a distinct outfit, blending tailored elements with flowing fabrics. There's a mix of formal and casual styles, including coats, pants, and some outfits with subtle layering", + "location": "A simple white background, allowing focus on the models and their movements.", + "poses": "The men are all in active poses, as if caught mid-movement or engaged in a dynamic dance. They're arranged in a row, creating a sense of progression.", + "angle": "Wide shot - shows the whole group." + }, + "videoPrompt": "A modern dance routine set to energetic music, with the five men building on their initial energy, moving from a coordinated line into individual expressions. The scene should transition between close-ups of each man' and wider shots of the overall ensemble.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639020478_6.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A young girl in a denim jumpsuit is captured mid-dance with energy and confidence.", + "style": "Candid photography, modern streetwear fashion", + "lighting": "Warm and dynamic lighting, with an emphasis on the subject's silhouette. The light bounces off of both the walls and the floor.", + "outfit": "The girl wears a denim jumpsuit with a pale purple/white t-shirt underneath. She also has white socks and white sneakers.", + "location": "A large indoor space, likely a dance studio or gymnasium. It is relatively modern but looks like it's been around for a while. ", + "poses": "The girl is frozen in an energetic dance pose, almost mid-jump with her arms outstretched. She is dynamic and expressive.", + "angle": "A slightly low angle shot, providing a sense of energy and movement." + }, + "videoPrompt": "Fast-paced hip hop dance! The girl continues dancing, building into a full routine. Add dancers to create a more energetic vibe", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639022184_11.png" + }, + { + "scene": "Early 2000s Pop Dance", + "imagePrompt": { + "description": "A group of seven young women stand in a pink, urban setting with a retro aesthetic. They're dressed in early 2000s fashion – white tank tops and low-rise jeans.", + "style": "Early 2000s Pop Music Video", + "lighting": "Bright and colorful, with pink backdrops and warm tones.", + "outfit": "Typical Early 2000s style - white tank tops, low-rise denim jeans in various shades of blue, and white sneakers. Some have headbands or bandanas.", + "location": "A retro urban setting – a street with pink buildings, painted with graffiti.", + "poses": "They are mid-dance, in dynamic poses with confidence, exhibiting early , modern dance moves.", + "angle": "Medium shot, slightly low angle to show their dominance." + }, + "videoPrompt": "A vibrant dance scene continues where the group breaks into a more energetic and complex dance routine. They move down the street, interacting with props like a retro car or a pink ice cream stall. The camera follows them in dynamic shots, showing their confidence and swagger.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639022370_12.png" + }, + { + "scene": "Basketball Court Observation", + "imagePrompt": { + "description": "A wide shot capturing a basketball court with three figures. A young man sits in the foreground, while another is dynamically positioned on the court. In the background, two individuals sit at a table.", + "style": "Candid Photography/Lifestyle", + "lighting": "Natural sunlight, creating shadows but also warm tones.", + "outfit": "All three figures wear athletic clothing with bold colors and patterns, particularly purple and black. The young man wears a sleeveless tank top, and the other figure is in shorts and a t-shirt.", + "location": "An indoor/outdoor basketball court, likely within a school or gymnasium setting.", + "poses": "The young man leans forward with a contemplative expression, while the other subject is dynamically positioned on the floor. The background figures are seated at a table", + "angle": "Slightly above eye level to show the environment." + }, + "videoPrompt": "Dynamic dance scene: A beat drops and the two main characters break into an energetic dance routine, incorporating basketball moves like dribbling and shooting. They move between each other in rhythm, with a focus on purple and black color schemes. The background figures react to their energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639022486_13.png" + }, + { + "scene": "Urban Flight", + "imagePrompt": { + "description": "A group of people are captured in a dynamic pose as if fleeing something or rushing forward, set against an urban backdrop.", + "style": "Editorial Photography/Fashion Editorial", + "lighting": "Natural lighting with slight contrast, suggesting a cloudy day.", + "outfit": "The subjects wear a mix of trendy and slightly distressed clothing; some in patterned outfits and others in solid color. Some are dressed in light-colored outfits while others have darker tones. There's a focus on unique patterns and textures.", + "location": "A street intersection, likely a bustling city with pedestrian traffic.", + "poses": "The group is captured mid-stride, exhibiting energy and dynamic movement. They appear to be running or dancing in a hasty manner.", + "angle": "Overhead shot (bird's eye view) giving a sense of the scene's scope." + }, + "videoPrompt": "Set to upbeat music, create a fast-paced dance sequence with the group as they flee an unseen event. Focus on fluid movement and energetic gestures that show both panic and excitement, evolving into a celebratory dance at the end.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639023028_15.png" + }, + { + "scene": "Dynamic Dance on a Basketball Court", + "imagePrompt": { + "description": "A group of diverse women are engaged in a lively dance performance on a basketball court, creating a playful and energetic vibe.", + "style": "Candid photography with a modern feel", + "lighting": "Natural sunlight, giving the scene a bright and cheerful atmosphere.", + "outfit": "Variety of summer dresses and casual outfits. Mostly mini-dresses in different colors and patterns, creating a playful and youthful aesthetic.", + "location": "Outdoor basketball court, providing a classic backdrop for a modern dance performance", + "poses": "Subjects are captured in dynamic poses, showing a range of energy and motion. Many models have one leg extended giving the scene a sense of movement.", + "angle": "Slightly overhead angle, giving a clear view of the group and their surroundings." + }, + "videoPrompt": "A diverse group of women continue their dynamic dance performance on the basketball court. The dancers start with coordinated movements, then break into individual flair with each dancer performing her own style. Add some beat-boxing to make it more modern.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639023653_16.png" + }, + { + "scene": "Dynamic Duo in Tokyo", + "imagePrompt": { + "description": "A photograph depicting two male dancers in a dynamic pose, seemingly mid-dance performance on a street in Tokyo, Japan. One dancer is in a full body sprawl, while the other is leaping upwards and backwards.", + "style": "Realistic photography with vibrant colors", + "lighting": "Natural daylight, slightly overcast to create soft shadows", + "outfit": "Both dancers are wearing casual attire: jeans, t-shirts. One dancer has a dreadlock hair style.", + "location": "A bustling street in Tokyo, Japan. There's a mix of storefronts and buildings with Japanese signage, creating an authentic urban atmosphere.", + "poses": "One dancer is low to the ground in a full sprawl position with arms outstretched for balance. The other dancer is leaping upwards and backwards while leaning back to maintain balance.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A fast-paced dance battle unfolds between two dancers on the Tokyo street. It starts with a partner moving in time with the beat of music. They move through several different dance styles like hip hop and break dancing, culminating in a final synchronized routine that shows their skill and energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639023754_17.png" + }, + { + "scene": "Live Band Performance", + "imagePrompt": { + "description": "A vibrant image showcasing a band performing on an outdoor stage. The band consists of three members: a vocalist, a guitarist, and a keyboardist. They are all dressed in casual but stylish outfits.", + "style": "Realistic photography with warm tones", + "lighting": "Natural sunlight, creating a warm and inviting atmosphere", + "outfit": "Casual and trendy; the vocalist wears denim overalls, the guitarist is wearing shorts and a vest, while the keyboardist has a more relaxed look. White sneakers are prominent.", + "location": "Outdoor stage with a backdrop of greenery and blue sky.", + "poses": "Dynamic poses showing energy and musical performance. The vocalist is singing into a microphone, the guitarist is playing an electric guitar, and the keyboardist is focused on their instrument", + "angle": "Slightly low angle to capture the whole stage and band members." + }, + "videoPrompt": "The music swells as the band kicks into a fast-paced dance number. The vocalist starts with a energetic dance move that pulls the guitarist into a dynamic duo dance, and the keyboardist joins in with a more playful but rhythmic motion. They transition between playing their instruments and performing quick and fluid dance moves to an upbeat tempo song.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639023942_19.png" + }, + { + "scene": "Supermarket Shenanigans", + "imagePrompt": { + "description": "A vibrant image of three young people in a supermarket aisle. The central figure is a woman wearing a yellow and black tie-dye jacket, with black pants and shoes. She is smiling widely, looking at the camera.", + "style": "Pop Art/Contemporary Photography", + "lighting": "Bright and even lighting, typical of a supermarket setting.", + "outfit": "A mix of trendy and casual outfits: tie-dye jacket, sweater, glasses, bright red sunglasses. Each person has distinct style.", + "location": "Inside a well-stocked supermarket aisle, surrounded by shelves of groceries.", + "poses": "The woman in the center is the primary focus, with her arms around the other two. The man on the left is looking straight ahead while the woman to the right is leaning forward with an inquisitive expression", + "angle": "Overhead shot, slightly angled for a dynamic feel." + }, + "videoPrompt": "The beat drops and the trio break into a fun dance routine that takes them down the supermarket aisle! Each person will be in sync, starting with the woman in the middle leading the dance. The dance starts with simple moves but builds up to more complex ones using items from around the grocery store as props (boxes of cereal, bottles of juice).", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639024051_20.png" + }, + { + "scene": "Dynamic Dance in a Spacious Gym", + "imagePrompt": { + "description": "Three dancers are captured in mid-motion within a brightly lit gym, creating an energetic and dynamic scene. The focus is on the central dancer who is in a powerful pose, while others add to the general composition.", + "style": "Candid Photography - 90s Aesthetic", + "lighting": "Bright overhead lighting, creating strong shadows and highlighting the dancers' forms.", + "outfit": "Casual yet fashionable with an emphasis on streetwear. The clothing is a mix of denim and neutral tones.", + "location": "A spacious indoor gym, possibly a basketball court or large studio.", + "poses": "The central dancer has dynamic poses while two other dancers are in motion.", + "angle": "Slightly low angle to emphasize the dancers' energy and presence." + }, + "videoPrompt": "A group of dancers break into an energetic dance routine, blending hip-hop and contemporary styles. The dancers move in sync, building on the central dancer’s dynamic pose. Camera angles shift between close-ups and wider shots, showing their skill and confidence. They are dancing to a funky beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639024183_21.png" + }, + { + "scene": "A Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of seven people are engaged in a playful dance, with their bodies forming a semi-circular formation. They're dressed in colorful attire, creating a vibrant and energetic scene.", + "style": "Contemporary Photography", + "lighting": "Soft, diffused lighting creates a warm atmosphere.", + "outfit": "A mix of casual clothing; including yellow sweaters, blue jeans, and green patterned pants with white sneakers, adding to the playful feel.", + "location": "An indoor space, possibly a dance studio or gymnasium with a grey concrete floor and a grid-patterned wall", + "poses": "The group is in dynamic positions, as if mid-dance. They are crouched forward, creating an engaging posture.", + "angle": "Eye-level shot, capturing the entire group." + }, + "videoPrompt": "A vibrant dance scene unfolds with the group breaking into a quick and energetic routine. The dancers build upon their initial formation, evolving into a dynamic dance that's both playful and expressive. They move through the studio space, moving in sync and creating a fluid sequence of motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639024814_22.png" + }, + { + "scene": "Dynamic Dance Battle", + "imagePrompt": { + "description": "A wide-angle shot of two individuals engaging in a dance battle on a dark, textured floor. The image is vibrant and energetic with the dancers as focal points.", + "style": "Candid Photography/Street Style", + "lighting": "Dramatic lighting, with a warm glow from overhead lights casting shadows on the surrounding area.", + "outfit": "Both dancers are wearing casual outfits; one dancer wears a colorful tie-dye outfit, and the other is in a more muted blue sweater and white pants. Both have modern streetwear looks", + "location": "An indoor space, possibly a dance studio or event hall with dark walls.", + "poses": "The two dancers are in dynamic poses, one dancer reaching out as if to initiate a move while the other is ready for the challenge. They're both crouching low to the ground.", + "angle": "Wide-angle lens with some distortion, creating an immersive feel." + }, + "videoPrompt": "The beat drops and the dancers launch into a fast-paced dance battle. The camera circles them dynamically as they transition from individual moves to synchronized routines. The dance evolves into a more energetic hip hop routine.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639024981_23.png" + }, + { + "scene": "Early 2000s Dance Scene", + "imagePrompt": { + "description": "A group of young women are engaged in a spirited dance, likely inspired by hip-hop or R&B music. The image captures the essence of early 2000s fashion and style.", + "style": "Candid photography with a realistic feel; reminiscent of early 2000s fashion magazines.", + "lighting": "Natural lighting, giving the scene a warm tone.", + "outfit": "The outfits are distinctly early 2000s: wide-legged jeans, crop tops, and denim overalls. Accessories include chunky gold jewelry (hoops and bracelets) and some have baseball caps.", + "location": "A brick wall backdrop with a paved road underneath. The scene is set in an urban environment, likely a street or alleyway.", + "poses": "Dynamic poses indicating energy and rhythm; the dancers are expressive and engaged.", + "angle": "Full shot, slightly eye-level to capture the entire group." + }, + "videoPrompt": "A dynamic dance scene set to an early can be a upbeat hip hop or R&B track. The dancers should execute a fast-paced routine with smooth transitions between different moves including hand waves and leg movements. Add some flair by having one dancer lead the choreography, while others follow with energy and rhythm.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639025909_25.png" + }, + { + "scene": "Colorful Dance", + "imagePrompt": { + "description": "A group of six dancers are performing on a stage in semi-darkness.", + "style": "Contemporary dance, with a theatrical feel.", + "lighting": "Dramatic lighting, with a spotlight focus on the dancers.", + "outfit": "The dancers wear bright, solid colors - red, yellow, green and blue - along with black. They're wearing leotards or tight fitting clothes.", + "location": "A stage setting, likely a theatre or dance studio.", + "poses": "Dynamic poses of dancers, the dancers are in motion, suggesting a dance routine. One dancer is front and center, while others surround them", + "angle": "Slightly low angle, giving a sense of grandeur." + }, + "videoPrompt": "The dancers burst into a fast-paced, energetic dance sequence that blends modern and theatrical elements. The dancers begin in unison but break into individual expressive moments. They interact with each other, creating a dynamic flow between them.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639027088_30.png" + }, + { + "scene": "Dynamic Runners", + "imagePrompt": { + "description": "The image depicts three runners in mid-stride, seemingly leaping over a concrete wall or structure. They're arranged in a dynamic composition with vibrant colors and modern athletic wear.", + "style": "Modern Sports Photography", + "lighting": "Bright, natural sunlight with slight shadows indicating late afternoon/early evening.", + "outfit": "Athletic outfits; predominantly dark shades of grey and black with pops of color from pinkish-red shoes and accents. The runners wear a mix of patterned and solid athletic wear.", + "location": "Outdoor setting, likely a concrete embankment or wall structure.", + "poses": "Each runner is captured in a dynamic pose – jumping, leaping, or mid-stride with energy. They are expressive with their body language.", + "angle": "Slightly low angle giving the runners prominence." + }, + "videoPrompt": "The three runners break into a fast-paced dance, inspired by hip-hop and contemporary styles. The dancers begin as if they’s were jumping over an invisible wall and then move to dynamic movements with smooth transitions between each runner, their jumps becoming more elaborate and energetic. They're set to a beat with some modern electronic music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639027187_31.png" + }, + { + "scene": "Dynamic Dance Rehearsal", + "imagePrompt": { + "description": "A group of dancers are performing a modern dance routine in a spacious studio with hardwood floors.", + "style": "Realistic Photography", + "lighting": "Soft, diffused lighting creates shadows and highlights within the space. The light appears to be coming from large windows.", + "outfit": "The dancers are wearing casual streetwear – mostly gray or neutral tones, with some in sweats and others in sportswear.", + "location": "A dance studio with hardwood floors and minimal decoration. Large windows provide natural light.", + "poses": "The dancers are mid-motion, displaying energy and rhythm. One dancer is front and center with a raised arm while others surround them. They all have dynamic body language", + "angle": "Slightly elevated perspective, giving the viewer an immersive feel of being in the dance space." + }, + "videoPrompt": "The dancers transition into a more energetic hip-hop routine, moving quickly and smoothly as they flow between different formations. The music builds to a climax with dramatic lighting changes", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639027604_32.png" + }, + { + "scene": "Dynamic Dance Crew", + "imagePrompt": { + "description": "A group of eight people are arranged in a circular composition, as if they're caught mid-dance or movement. The scene is set against a solid blue backdrop.", + "style": "Fashion photography with a modern edge.", + "lighting": "Soft, diffused lighting that creates a subtle contrast and brings the subjects into focus", + "outfit": "A mix of trendy and classic styles: plaid shirts, denim jeans, jackets, and casual wear. Outfits are both colourful and understated.", + "location": "Abstract setting - solid blue backdrop", + "poses": "Each person is dynamically posed, as if performing a dance move. They're somewhat frozen in time, creating an energetic feel.", + "angle": "A low-angle perspective looking slightly upward." + }, + "videoPrompt": "The crew breaks into a dynamic dance routine with smooth transitions between each member. The dancers perform a quick and rhythmic set of moves to a beat that builds from soft to intense, reflecting the energy of the image.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639028428_37.png" + }, + { + "scene": "Youthful Chill", + "imagePrompt": { + "description": "A group of four young men sit on a concrete ledge, bathed in warm sunlight. The foreground is dominated by a central figure with a bright yellow and green cushion, while others are seated around him.", + "style": "Candid photography; reminiscent of early ’s 2000 hip-hop culture", + "lighting": "Warm, natural lighting. It's a sunny day, creating strong shadows but also soft glow on the skin.", + "outfit": "Early 2000s urban casual with a mix of athletic wear. One is shirtless, another wears a tank top with 'Adidem asterisks’ printed on it, and others are in denim or shorts.", + "location": "Outdoor setting; appears to be a rooftop or elevated area with a view of hills or mountains in the background.", + "poses": "Relaxed and informal. The central figure is leaning forward while the others are seated around him, creating a sense of camaraderie", + "angle": "Medium shot; slightly from above, capturing the whole group." + }, + "videoPrompt": "Dynamic dance scene: A beat drops and the group breaks into a smooth, early 2000s hip-hop inspired dance routine on the rooftop. The camera circles them, showcasing their individual styles with a focus on the central figure leading the movement. Use a mix of fluid, energetic movements with some classic 'flex' moments.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639028555_38.png" + }, + { + "scene": "Dynamic Nike Activewear", + "imagePrompt": { + "description": "A group of young women wearing colorful Nike activewear stand close together in a brightly lit studio.", + "style": "Modern Photography, vibrant and energetic", + "lighting": "Bright and natural, with slight warm tones", + "outfit": "Mix of casual and sporty; includes t-shirts, crop tops, shorts, and jackets. A variety of colors like green, tan, orange, and black.", + "location": "A studio setting with a neutral backdrop and some subtle greenery.", + "poses": "The group is in playful poses, with arms around each other, showing genuine joy and energy", + "angle": "Slightly head-on perspective, capturing the whole group." + }, + "videoPrompt": "A dynamic dance scene featuring the women wearing their Nike outfits. They move to a fast-paced, upbeat song. The choreography is modern and energetic with a focus on smooth transitions and flowing movements. The dancers' expressions are joyful and confident. The video includes quick cuts between the group, highlighting each dancer's unique style.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\10907224092038261_1758639029623_39.png" + }, + { + "scene": "Blind Confidence", + "imagePrompt": { + "description": "A group of six women stand in a line, all wearing tan suits with white bands over their eyes.", + "style": "Fashion photography, slightly editorial", + "lighting": "Dramatic, warm lighting with shadows emphasizing form and texture", + "outfit": "Each woman wears a fitted tan suit with a wide belt and cargo pants. Underneath the jacket is a white tank top. The outfit is semi-formal but has a modern edge.", + "location": "A dark stage or studio, likely indoor.", + "poses": "The women are in dynamic dance poses, mostly facing forward, as if performing a dance routine. Each woman has a slightly different pose. They all have their hands raised and arms bent.", + "angle": "Frontal shot, eye-level camera angle." + }, + "videoPrompt": "A fast-paced dance scene with the group of women, now in sync, do a dynamic choreography that starts with a blind reach for each other and culminates in confident power poses. The dancers transition from being blind to seeing their reflection on big mirrors.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638339287_5.png" + }, + { + "scene": "Dynamic Concert Scene", + "imagePrompt": { + "description": "A vibrant concert scene featuring Ariana Grande leading a group of dancers. The background is a packed stadium, with bright lights and an energetic atmosphere.", + "style": "Pop Photography - high contrast and vivid color", + "lighting": "Dramatic stage lighting – blues, whites, and some reds create a dynamic effect.", + "outfit": "Ariana Grande wears a sparkly silver crop top and wide, voluminous metallic blue pants. Dancers wear light blue outfits.", + "location": "A large stadium or arena with an audience", + "poses": "Ariana Grande is front and center in the frame, leading her dancers who are energetic and lively. The scene is action-packed.", + "angle": "Slightly low angle looking up at Ariana Grande to add dynamism." + }, + "videoPrompt": "The beat drops and Ariana Grande leads her dancers into a fast-paced dance routine with smooth transitions between several different moves, the audience erupts in cheers while lights flash and smoke rises. The camera circles them as they transition into a new set of dynamic dancers.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638339396_6.png" + }, + { + "scene": "Red Stage Dance", + "imagePrompt": { + "description": "A dynamic shot of a performer in red against a backdrop of dancers in white, all positioned on a bright red stage.", + "style": "Dramatic photography with a focus on performance.", + "lighting": "Strong overhead lighting creating dramatic shadows and highlights. The stage is bathed in red light.", + "outfit": "The main performer wears a fitted red outfit. Dancers are dressed in white, flowing outfits with hoods.", + "location": "A large indoor stage – possibly an arena or stadium.", + "poses": "The dancers are engaged in dynamic movement – some are kneeling, others are mid-stride, and all are conveying energy and rhythm.", + "angle": "Slightly angled perspective giving a good view of the performers." + }, + "videoPrompt": "A fast paced dance scene on an indoor stage. The main performer leads a troupe of dancers in white, performing energetic choreography with smooth transitions between poses. The music is upbeat and dynamic, building to a crescendo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638339483_7.png" + }, + { + "scene": "K-Pop Girl Group Action", + "imagePrompt": { + "description": "A group of nine women, likely a K-pop girl group, are posing with firearms against the backdrop of a brightly lit city skyline.", + "style": "Photorealistic", + "lighting": "Dramatic, with bright fireworks and city lights creating strong contrast.", + "outfit": "All members wear sleek black outfits, resembling tactical gear, with some members wearing high-waisted pants and others wearing full body suits. They have black boots.", + "location": "Rooftop overlooking a bustling cityscape - likely Hong Kong", + "poses": "The group is posed in dynamic positions, holding pistols, as if they'.re ready for action.", + "angle": "Slightly low angle to emphasize the height and power of the group." + }, + "videoPrompt": "A fast-paced dance routine with a K-pop beat drops, incorporating fluid movements mimicking gun firing or aiming. The scene transitions between shots showing close-ups on each member's face as they 're in action. Dynamic camera angles show their high energy performance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638339730_9.png" + }, + { + "scene": "Victory Celebration", + "imagePrompt": { + "description": "A large group of female athletes are celebrating a victory, likely after winning a competition. They're wearing matching uniform and appear excited.", + "style": "Candid photography; dynamic action shot", + "lighting": "Bright indoor lighting, with spotlights creating contrast.", + "outfit": "Uniforms consisting of grey jackets and black pants with red details. Red athletic shoes.", + "location": "Indoor arena or competition stage.", + "poses": "A mix of poses showing excitement: celebratory jumps, fist pumps, kneeling in joy, and a few people throwing arms up", + "angle": "Slightly low angle, giving the group prominence." + }, + "videoPrompt": "Dynamic dance scene! The team bursts off the ground into an energetic dance routine with fast tempo music. They transition from their current celebration to a fluid sequence of jumps, turns and synchronized moves. A few members grab a trophy while doing the dance!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638340320_10.png" + }, + { + "scene": "Phantom's Grand Performance", + "imagePrompt": { + "description": "A dramatic stage performance with a singer in the center surrounded by dancers and musicians.", + "style": "Dramatic, theatrical photography. Similar to a broadway poster.", + "lighting": "Blue tone with spotlight on the main singer, creating a sense of mystery and grandeur.", + "outfit": "The singer wears an elegant white gown with ruffled sleeves. Dancers are in various costumes – some are male dancers wearing black suits, while others are female dancers in ornate gowns.", + "location": "A grand stage with elaborate backdrops including framed portraits and statues", + "poses": "The singer is holding a microphone, performing with a dramatic pose. A pianist is seated playing the piano. Dancers are arranged around them in dynamic positions.", + "angle": "Slightly low angle, giving prominence to the performers." + }, + "videoPrompt": "The scene transitions into a fast-paced dance sequence between the singer and dancers. The lights become more vibrant with dynamic stage movement as they move through an elegant ballroom, showcasing both grace and power in their performance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638340400_11.png" + }, + { + "scene": "Pink Heart Stage", + "imagePrompt": { + "description": "A vibrant stage with a central performer surrounded by dancers, all bathed in pink light.", + "style": "Pop Art / Dynamic K-pop", + "lighting": "Predominantly pink lighting, with some white highlights to create depth. Stage lights from above and slightly front angled.", + "outfit": "The main performer wears a sparkly pink and white outfit with a short skirt and high boots. The dancers wear similar outfits in shades of pink.", + "location": "A large stage decorated with a huge, sparkling pink heart as the focal point. Pink smoke or dust adds to the atmosphere.", + "poses": "The main performer is centered on a platform with an enormous pink heart behind them. Dancers are arranged in rows on both sides of the platform and are in dynamic dance poses.", + "angle": "Slightly low angle, looking up at the stage to give it grandeur." + }, + "videoPrompt": "The main performer throws open a giant pink heart, revealing dancers who burst into an energetic K-pop dance routine. The dancers move and groove in sync with the beat, occasionally breaking into individual moments of dynamic flair. Confetti rains down as the scene transitions between dancers, building to a climax where the stage is flooded with light.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638340486_12.png" + }, + { + "scene": "Dynamic Dance Group Pose", + "imagePrompt": { + "description": "A group of young dancers pose in a studio setting, creating a striking visual.", + "style": "Modern Photography", + "lighting": "Bright and even lighting, with subtle reflections on the floor.", + "outfit": "The dancers all wear black outfits with bright red puffy vests. They also have black shoes.", + "location": "A white studio backdrop.", + "poses": "The group is arranged in a dynamic pose with both standing and seated dancers, creating a sense of energy and confidence.", + "angle": "Frontal, slightly low angle to emphasize the dance group." + }, + "videoPrompt": "The dance group bursts into a energetic modern dance routine, starting with strong upper body movements and progressing into dynamic floorwork. The music is upbeat and catchy. Transition between dancers showcasing individual skill while maintaining a unified look.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638340564_13.png" + }, + { + "scene": "A Dynamic Dance Performance", + "imagePrompt": { + "description": "The image showcases a modern dance performance with dancers in white outfits against a backdrop of large, rounded forms resembling hills or mountains. The stage is minimal and largely monochromatic, creating a surreal feel.", + "style": "Contemporary Dance/Performance Art", + "lighting": "Dramatic overhead lighting, creates strong shadows and highlights the curvature of the set pieces.", + "outfit": "White, form-fitting dancewear with white socks. Minimalist and modern.", + "location": "A large stage, almost like a minimalist landscape or giant rock formation.", + "poses": "Dancers are in dynamic poses, arms extended, suggesting fluid movement and an energetic performance. One dancer stands prominent on the elevated structure", + "angle": "Wide angle shot from slightly below gives viewer a good view of stage." + }, + "videoPrompt": "The dancers transition seamlessly into a faster paced dance routine, with some dancers breaking away from the group to perform intricate solos, building in intensity as they move across the stage. The lighting shifts and becomes more dynamic, creating an atmosphere of celebration.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638341222_15.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers, primarily female, are performing a dynamic dance in front of a large red backdrop.", + "style": "Modern/Contemporary with dramatic lighting", + "lighting": "Dramatic spotlighting with strong reds and whites. A mix of warm and cool tones.", + "outfit": "All dancers wear similar pale-colored outfits, likely leotards or tops and shorts, with a neutral tone that's slightly iridescent. Some have black headbands.", + "location": "A stage setting, seemingly a concert or performance space", + "poses": "The dancers are in various poses – some are dynamic, reaching for the sky, while others are more grounded with bent knees and outstretched arms. One dancer is centered front and center, a bit of a spotlight.", + "angle": "Slightly low angle, giving prominence to the dancers." + }, + "videoPrompt": "The dance intensifies as the group transitions into a fast-paced routine synchronized with pulsing red lights. The main dancer leads the troupe in a complex series of movements, blending contemporary and jazz styles. A burst of energy makes the dancers reach for their peak.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638342287_18.png" + }, + { + "scene": "White Ensemble", + "imagePrompt": { + "description": "A young woman stands in a room with hardwood floors, wearing a completely white outfit. The outfit consists of a short sleeved top and wide-leg pants with multiple cutouts along the sides.", + "style": "Fashion photography, modern", + "lighting": "Warm indoor lighting, slightly diffused", + "outfit": "White, sleek, modern. The top is fitted and short sleeved. The pants are high waisted, dramatically wide-leg with lots of cutouts to add drama.", + "location": "Interior room, possibly a home living space with hardwood floors and furniture.", + "poses": "Model poses with one hand raised in a dynamic pose, slightly angled towards the camera.", + "angle": "Full body shot, eye-level view" + }, + "videoPrompt": "Dynamic dance scene. The woman, wearing her white outfit, starts to move with an energetic dance, drawing attention to the cutouts in her pants as she twirls and grooves. The lighting shifts slightly to emphasize the elegance of her movement.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638342462_20.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing on a stage with yellow lighting. They're wearing a mix of black leather and sleek outfits, including short tops, high-waisted pants and long boots.", + "style": "Dramatic, bold performance photography.", + "lighting": "Warm yellow light with some shadows creating depth.", + "outfit": "Black leather and sleek attire. The dancers wear a mix of short tops, high-waisted pants, and long black boots. They also have accessories like chains and masks.", + "location": "A stage with a dark background.", + "poses": "The dancers are in dynamic poses, gesturing with their arms as if performing a dance routine. One dancer is in the center of the frame.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A fast-paced video showing the dancers breaking into full dance sequence. They're energetic and rhythmic, with some dancers moving forward while others stay in place to create a dynamic flow. The dancers should be confident and fierce.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638343297_23.png" + }, + { + "scene": "Dynamic K-Pop Group Pose", + "imagePrompt": { + "description": "A group of five young women dressed in vibrant outfits pose on the steps of a modern building.", + "style": "K-Pop/Fashion Photography", + "lighting": "Bright and even lighting, with slight shadows to create depth.", + "outfit": "All members wear white crop tops and pink wide leg pants. They are also wearing purple jackets with a white design. Accessories include silver necklaces and diamond bracelets.", + "location": "Modern building staircase, likely indoor.", + "poses": "Each member is in a different pose, contributing to the dynamic look of the group. Some members have their hand raised or are posed dynamically.", + "angle": "Slightly low angle, allowing the viewer to see both the group and the staircase." + }, + "videoPrompt": "The K-Pop group bursts into a fast-paced dance routine on the staircase, with smooth transitions between poses. The music is upbeat and energetic, showcasing their charisma. They move in sync, making it dynamic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12384967722863114_1758638344164_24.png" + }, + { + "scene": "A Group of Fashion Models", + "imagePrompt": { + "description": "A group of diverse fashion models stand in front of a white backdrop, showcasing a mix of casual and trendy outfits. The focus is on modern workwear inspired looks.", + "style": "Fashion Photography - Editorial", + "lighting": "Bright, even lighting with minimal shadows.", + "outfit": "Mix of denim, white basic tees, and colorful cargo pants. Models wear a variety of styles including streetwear, casual chic, and more sophisticated outfits with heels.", + "location": "White studio backdrop.", + "poses": "Each model is in dynamic pose, some are standing directly facing the camera while others have slight angles to add dimension. They're mostly standing, with a few models slightly leaning or gesturing.", + "angle": "Frontal full-body shot." + }, + "videoPrompt": "A dynamic dance scene set to a upbeat electronic track begins with the group of models in similar poses as the image. As the music builds they transition into a modern dance routine, incorporating fluid movements and individual spotlight moments for each model.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638551647_0.png" + }, + { + "scene": "A Dynamic Dance Circle", + "imagePrompt": { + "description": "The image features four individuals – three women and one man – engaged in a dynamic dance, forming a circle on a lush green field. The central figures are two men with lightly tanned skin, their arms outstretched, creating the focal point of the scene.", + "style": "Fashion Editorial/Contemporary", + "lighting": "Bright, natural lighting with slight shadows, giving it an outdoor feel.", + "outfit": "The outfits blend modern and playful: a shirtless man in patterned pants, another in white shorts and a white top. The women have light-colored hair, one wearing a white dress, the other in a short white outfit.", + "location": "A grassy field, possibly a football pitch with visible green grass.", + "poses": "The subjects are in dynamic poses, their arms outstretched in a circular dance formation. They appear to be engaged in an energetic dance or performance.", + "angle": "Overhead shot with slight perspective, giving the viewer a good view of the whole circle." + }, + "videoPrompt": "A fast-paced dance routine unfolds on the grassy field. The dancers start with a slow build and then transition to a faster, more dynamic dance with smooth transitions in their movements. They move around each other in a circular formation, mirroring one another's actions. Focus is on fluid motions.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638553390_3.png" + }, + { + "scene": "Dynamic Stacked Trio", + "imagePrompt": { + "description": "The image features three individuals stacked in a complex arrangement, appearing as if frozen mid-dance or movement.", + "style": "Fashion Editorial / Vogue style, with an emphasis on colorful and playful aesthetics.", + "lighting": "Soft, diffused lighting that creates a natural look. There’s a subtle gradient of light giving the image depth", + "outfit": "The trio are wearing oversized sweaters and denim bottoms, creating a casual yet stylish look. The use of color blocking is prominent in the clothing.", + "location": "White background with neutral lighting to draw focus on the subjects and their clothing.", + "poses": "Each individual has an active pose, as if they were caught mid-dance or movement. They are stacked in a pyramid shape, emphasizing the dynamic interplay between them", + "angle": "Slightly low angle looking up at the trio, adding to its grandness and dynamism." + }, + "videoPrompt": "A trio of dancers explode into a dynamic dance scene with a mix of modern and fluid movements. Each dancer is in sync with each other as they move through a stage with colorful lighting, and a beat drops.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638554041_5.png" + }, + { + "scene": "Virtual Reality Dance", + "imagePrompt": { + "description": "A group of people are engaged in a dynamic dance sequence while wearing virtual reality headsets, suggesting they are dancing within a virtual world. They’re dressed in business casual attire.", + "style": "Editorial Photography, with a modern and slightly surreal feel", + "lighting": "Soft but dramatic lighting, creating shadows that give depth to the image. The light is coming from the front.", + "outfit": "Business Casual – men are wearing suits and grey shirts, women wear business outfits. A pale pink shirt can be seen in the foreground.", + "location": "A minimalist white space, likely a studio setting", + "poses": "Dynamic poses - the subjects are mid-dance with extended limbs and motion blur indicating speed and energy.", + "angle": "Slightly low angle looking up at the dancers." + }, + "videoPrompt": "The dance intensifies into a fast-paced, dynamic modern dance routine. The dancers break free from their virtual reality headsets, still incorporating their movements in an energetic dance with more people joining them, and begin to move between business partners. The scene transitions seamlessly between the real world and a colorful abstract space.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638555277_9.png" + }, + { + "scene": "Fashionable Family & Friends", + "imagePrompt": { + "description": "A group of people – including an elderly man, several young adults, and a fluffy dog – stand in front of a white backdrop. The image is styled for a fashion editorial, likely from GQ magazine as seen by the logo.", + "style": "Fashion Editorial/Photorealistic", + "lighting": "Bright, even lighting with subtle shadows to create depth.", + "outfit": "A mix of modern and classic styles – the elderly man wears leather; there are black boots, a tan coat, a floral patterned dress, a short checkered outfit, and a sleek black ensemble.", + "location": "Simple white backdrop, giving it a studio feel.", + "poses": "Each subject is semi-active. The elderly man holds a phone while the others hold flowers, packages, or snacks. One person has a dog on a leash. They are all relatively still", + "angle": "Frontal, waist-up perspective." + }, + "videoPrompt": "Dynamic dance scene with these characters! Begin with the elderly man dropping his phone and starting to groove, followed by each member of the group showcasing their modern style through a funky dance routine. The dog should join in too, leading into an energetic finale.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638555856_11.png" + }, + { + "scene": "A Vibrant Dance of Pink", + "imagePrompt": { + "description": "The image showcases a large group of people, predominantly wearing pink, in a dynamic dance scene. They are arranged on a patterned stone walkway, with some holding pink balloons and red balls.", + "style": "Contemporary Photography - evoking a sense of playful surrealism", + "lighting": "Bright, even lighting – creating a vibrant and cheerful atmosphere.", + "outfit": "All the dancers wear coordinated outfits; mostly pink with variations in shade. They are wearing simple but effective outfits like jumpsuits and shorts/shirts.", + "location": "A stone walkway or courtyard – giving the scene a grounded feel", + "poses": "The subjects are engaged in dynamic dance poses, some reaching for balloons, holding red balls, while others are in mid-movement. They're actively involved in a collective dance.", + "angle": "Overhead shot – gives a good view of the entire group and their arrangement." + }, + "videoPrompt": "A fast-paced, energetic dance sequence featuring this group. Start with them all in synchronized motion, then break into individual dancers' creative moments, incorporating playful interactions with red balls and pink balloons. The scene should transition between a more grounded stone walkway to an indoor space.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638556628_14.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of five dancers are performing on a stage in a contemporary dance setting. They appear to be mid-motion, with expressive body language and varied poses.", + "style": "Contemporary Dance Photography", + "lighting": "Warm and slightly diffused lighting, creating shadows but maintaining good visibility.", + "outfit": "Each dancer wears unique casual clothing - some in light yellow, others in green, brown, or a combination. Outfits include loose pants, shorts, tops, and shirts.", + "location": "A stage with a neutral backdrop; the floor is a pale color.", + "poses": "The dancers are engaged in dynamic poses – arms raised, bodies angled, some leaning forward, others reaching back. They appear to be reacting to each other or an unseen energy.", + "angle": "Slightly low-angle, giving viewers a sense of being involved with the performance." + }, + "videoPrompt": "The dancers continue their fluid motion, building into a dynamic dance sequence that incorporates both contemporary and modern styles. The music swells, becoming more intense as they move through an emotional arc. Start with dancers in various poses and then build into a flowing dance scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638556979_15.png" + }, + { + "scene": "Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A group of seven dancers are captured in a striking pose within a minimalist studio space, surrounded by white marble.", + "style": "Contemporary dance photography with an emphasis on form and expression.", + "lighting": "Soft, diffused lighting creating subtle shadows and highlighting the dancers' forms. The light is both warm and cool, giving depth to the image.", + "outfit": "A mix of modern dance outfits; including leotards, flowing gowns, and neutral tones with some pops of color like a bright pink, black and burgundy.", + "location": "A minimalist studio space, specifically enclosed by white marble walls and floor creating an elegant setting", + "poses": "The dancers are engaged in dynamic movement, with intertwined limbs and expressive body language. They' 'are engaged in a dance that is both athletic and graceful.", + "angle": "Low-angle shot, slightly below the subjects giving them prominence." + }, + "videoPrompt": "A group of seven dancers begin a dynamic contemporary dance sequence. The focus starts with the ensemble, building into a faster pace as they move in sync. They're using their strength and grace to pull each other forward, reaching for an unseen energy. The music builds to a crescendo, showcasing their expressive form.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638557595_17.png" + }, + { + "scene": "A Group of Children Dancers", + "imagePrompt": { + "description": "The image features a group of six children in a dynamic pose, as if they are engaged in a dance or performance. They're all wearing brightly colored, cozy-looking outfits.", + "style": "Fashion photography with a playful vibe.", + "lighting": "Soft and even lighting, creating minimal shadows", + "outfit": "The children wear comfy clothes: striped sweaters, colorful button-down shirts or jackets combined with light, neutral pants.", + "location": "A simple studio backdrop.", + "poses": "Each child is reaching for the others in a semi-circle. They're all reaching forward as if they are about to pull each other into a dance", + "angle": "Slightly low angle, giving the children prominence." + }, + "videoPrompt": "The group of children burst into a dynamic dance, with their movements mirroring a playful, energetic dance. The dance builds in intensity and speed as they move forward, becoming a complex choreography.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638558115_18.png" + }, + { + "scene": "A Dynamic Fashion Editorial", + "imagePrompt": { + "description": "The image showcases a group of six diverse individuals in stylish outfits, posing dynamically against a plain backdrop. The scene is vibrant and colorful, with an emphasis on fashion and personality.", + "style": "Fashion Photography - Editorial", + "lighting": "Bright and even lighting, creating clean shadows.", + "outfit": "A mix of bold and playful looks; from the gold to plaid, each model has a unique outfit. There are wide-leg pants, statement shoes, jumpsuits, and sophisticated accessories.", + "location": "Studio setting with a plain backdrop.", + "poses": "Each person is in a dynamic pose – one doing a split, another striking a confident stance, and others holding bags or gesturing. They’re all looking directly at the camera.", + "angle": "Full-frame shot, slightly below eye level." + }, + "videoPrompt": "A lively dance scene starts with the group breaking into an upbeat dance routine in sync. Each model takes turns showcasing their unique personality and style through a dynamic dance sequence, all while carrying their signature bags. The music builds to climax as they become more energetic and stylish.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638558618_20.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of five dancers are performing in a studio setting with a dramatic backdrop.", + "style": "Candid Photography, reminiscent of 90s fashion photography", + "lighting": "Warm and slightly diffused lighting, created by overhead spotlights, creating a stage-like feel.", + "outfit": "Variety of outfits; including white wide leg pants, black trousers, light tan suit and cropped tops. Overall style is semi formal with an edge.", + "location": "A dance studio with large dark draperies in the background, and some wooden shelving.", + "poses": "Each dancer is striking a unique pose, creating a dynamic feel. Some are reaching upwards, others are grounding themselves, and one is gazing towards the audience", + "angle": "Slightly elevated angle, giving a good view of all dancers." + }, + "videoPrompt": "The dancers begin to move in unison with a smooth jazz beat, starting with a simple dance that evolves into a complex dynamic routine. The scene transitions between each dancer's individual focus, then culminates in a group performance where they are drenched in light.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638559431_23.png" + }, + { + "scene": "Modern Mobile Moments", + "imagePrompt": { + "description": "A lineup of five models, each engrossed in their mobile phones, are arranged in a row against a stark white backdrop. They all have unique looks and styles.", + "style": "Editorial Fashion Photography", + "lighting": "Evenly lit, with soft shadows to highlight the modern silhouettes.", + "outfit": "A diverse range of contemporary fashion. From a long white dress, a cropped sweater and leopard print pants to tailored suits and denim, each model embodies a distinct style, incorporating both classic and trendy elements.", + "location": "Studio setting", + "poses": "Each model is in a relaxed pose, with their attention focused on their phone. They are all standing or semi-squatted and holding their phones at various angles.", + "angle": "Straight-on perspective, capturing the row of models." + }, + "videoPrompt": "Set to a catchy beat, each model performs a dynamic dance move that mirrors a typical mobile phone action - a swipe, a text, an emoji. The dancers transition between models in quick cuts, mimicking how we switch between apps and conversations.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1266706140391465_1758638560116_25.png" + }, + { + "scene": "A Dance of Support and Balance", + "imagePrompt": { + "description": "A group of dancers are engaged in a complex dance performance, relying on each other for support and balance. They form an intricate pyramid structure.", + "style": "Contemporary Dance/Modern Ballet", + "lighting": "Soft, diffused lighting with a subtle gradient effect, creating depth.", + "outfit": "Dancers wear a combination of sleek, modern dance attire - some in leotards and others in flowing gowns. Many are wearing neutral tones like grays, tans, and soft blues.", + "location": "A dark stage with a black backdrop", + "poses": "The dancers are in dynamic poses – some are supported by others, while others reach for balance. There's a sense of interwoven connection between them.", + "angle": "Slightly low angle, giving the dancers prominence and emphasizing their strength." + }, + "videoPrompt": "A burst of energy! The dance continues with the dancers fluidly changing positions, building on the existing pyramid structure. A dancer in a tan leotard is propelled upward, reaching for a peak moment as the others support her, then gracefully comes down. It builds to an energetic crescendo before turning into a more subtle, flowing pace.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12807180188104407_1758638447633_9.png" + }, + { + "scene": "Elegant Dance Ensemble", + "imagePrompt": { + "description": "A group of ten dancers are posed in a dramatic formation, resembling an unfolding flower or sun.", + "style": "Contemporary Photography with a slight nod to classical portraiture", + "lighting": "Soft, diffused lighting with subtle highlights on the dancers' skin and bodies, giving them a luminous quality.", + "outfit": "All ten dancers are wearing flesh-toned leotards that create an unified look. They’re barefoot and have a strong build.", + "location": "A simple studio backdrop, grey in color", + "poses": "The dancers are arranged in a circular shape with arms outstretched, creating a sense of dynamism and unity. Their bodies form the petals or rays of a flower.", + "angle": "Frontal view, slightly below eye level." + }, + "videoPrompt": "A dynamic dance scene where dancers transition from this formation into a fluid movement that mimics a blooming flower. The dancers move in unison, building energy and rhythm, with dancers moving forward as if to draw the audience into the performance. Music should be dramatic orchestral.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\12807180188104407_1758638447739_10.png" + }, + { + "scene": "Urban Athlete", + "imagePrompt": { + "description": "A black and white photograph depicting a male athlete in an athletic pose.", + "style": "Black and White Photography, possibly street photography", + "lighting": "Natural light, slightly overcast giving it good contrast", + "outfit": "Casual, the subject is wearing a grey t-shirt with a pattern, black pants and black shoes. He's also wearing a black beanie.", + "location": "An urban setting, likely a sidewalk or small park in front of brick walls.", + "poses": "The main subject is performing an advanced athletic move, like a complex push-up or overhead press using two short pillars as anchors. His body is parallel to the ground with arms outstretched.", + "angle": "Slightly low angle, giving prominence to the subjects dynamic pose." + }, + "videoPrompt": "A vibrant dance crew takes the urban scene, blending hip-hop and contemporary styles. They start with a single dancer mimicking the pose from the image – the 'urban athlete' – then build into an energetic routine around the pillars, incorporating fluid movements and dynamic transitions between dancers. The camera pans across revealing multiple dancers, using a mix of quick cuts and smooth slow motions to show their skill.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\153615037262834343_1758638886853_0.png" + }, + { + "scene": "A Dynamic Dance Scene", + "imagePrompt": { + "description": "A black-and-white photograph depicting a group of young boys in various stages of climbing and jumping over a chain fence. The image captures a moment of energetic activity, with several boys already in the air or attempting to pull themselves up.", + "style": "Black and White Photography, Documentary Style", + "lighting": "Even lighting throughout the frame, creating high contrast between subjects and background.", + "outfit": "The young boys are wearing a variety of short-sleeved shirts and shorts. Their outfits are simple and casual, suggesting everyday wear.", + "location": "An outdoor area, likely a park or field, with a fence as the main focal point.", + "poses": "Dynamic poses showing energetic activity - climbing, jumping, reaching, and grabbing. Some boys have raised arms in celebration or effort. Many are mid-action.", + "angle": "Slightly upward angle, giving a sense of energy and immediacy." + }, + "videoPrompt": "A dynamic dance scene with the group of boys breakdancing and hip hopping around the fence! Music is upbeat and energetic. The scene transitions between quick cuts showing each boy' in the action. They end in a fun celebratory pose.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\153615037262834343_1758638887597_5.png" + }, + { + "scene": "Dynamic Dance in the Rain", + "imagePrompt": { + "description": "A young man is performing a breakdance move (likely a freeze or a variation of it) while standing on a wet, concrete surface. He's surrounded by falling rain and a basketball court.", + "style": "Black and White Photography with dynamic motion", + "lighting": "Dramatic lighting with contrast, highlighting the water droplets and the shape of the dancer.", + "outfit": "Casual attire - likely a t-shirt and shorts or pants. Sporty footwear in dark color.", + "location": "A basketball court outdoors, probably a schoolyard or public park.", + "poses": "The main subject is engaged in an active dance pose, specifically a breakdance move with one arm extended for balance. The dancer has one leg extended and the other grounded.", + "angle": "Slightly low angle to emphasize dynamism." + }, + "videoPrompt": "The dancer transitions from the initial freeze into a full sequence of breakdancing moves – spins, backdrops, and fluid motions – while continuing to dance in the rain. The scene dynamically expands as he dances with more energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\153615037262834343_1758638890401_19.png" + }, + { + "scene": "Dynamic Duo", + "imagePrompt": { + "description": "A photograph showing two acrobatic performers in a street setting. One is doing a headstand, while the other is balanced on top of them.", + "style": "Modern photography with vibrant colors and contrast.", + "lighting": "Natural light, slightly warm tone, giving it a dynamic feel", + "outfit": "Both acrobats are wearing grey outfits with casual style. One has a pattern on the sleeve.", + "location": "A European city street, cobblestone road, with older buildings in the background. There is also a parking sign visible", + "poses": "Two acrobatic performers. The bottom one is doing a headstand while the other is balanced above them, creating a dynamic pose.", + "angle": "Low-angle shot looking upwards to emphasize the height and dynamic nature of the acrobats." + }, + "videoPrompt": "The duo transitions from their current pose into a quick burst of hip hop dance. They move fluidly down the street, interacting with passersby as they perform a dynamic dance routine, ending in a final pose.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\153615037262834343_1758638891296_24.png" + }, + { + "scene": "Dynamic Breakdance", + "imagePrompt": { + "description": "A person is in the middle of a breakdance move, specifically a 'handstand' with a twist. They are leaning forward, with one hand supporting their weight and the other extending out for balance.", + "style": "Candid Photography", + "lighting": "Natural, slightly cool lighting.", + "outfit": "Casual outfit: A hooded sweatshirt and what appears to be black pants.", + "location": "A stone-floored walkway next to a brick wall. The scene is likely outdoors or an indoor hallway with good ventilation.", + "poses": "The subject is executing a breakdance move, a combination of strength, flexibility, and dynamic movement", + "angle": "Slightly low angle, capturing the dynamism of the dancer." + }, + "videoPrompt": "A fast-paced dance scene featuring a breakdancer. The scene starts with the person in the image executing their move, then transitions into a full burst of energy with dynamic hip-hop moves including spins and freezes. It has to be vibrant and energetic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\153615037262834343_1758638892475_26.png" + }, + { + "scene": "Dance in the Rain", + "imagePrompt": { + "description": "A group of dancers are performing a energetic dance in the rain. A young woman is front and center, wearing an orange top and black pants, with her hair wet from the downpour.", + "style": "Realistic, cinematic", + "lighting": "Dramatic lighting, with a bright spotlight highlighting the dancers and a generally darker setting to show the rainfall.", + "outfit": "Mix of casual streetwear - cargo pants, crop tops, hoodies. The color scheme is dominated by black, orange/red, and some blue.", + "location": "A city street, likely an alley or parking lot, filled with onlookers", + "poses": "Dynamic dance poses, the dancers are mid-movement and energetic. They're confident and expressive.", + "angle": "Slightly low angle to emphasize the dancers and their performance." + }, + "videoPrompt": "The dance continues, escalating into a full-blown dance battle with multiple dancers. The scene expands beyond the initial group, with other dancers joining in from both sides of the street. The rain intensifies, adding drama and energy, with some dancers using the puddles for splash effects.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\161285230400784339_1758638876320_2.png" + }, + { + "scene": "Dance Performance", + "imagePrompt": { + "description": "A large group of people are gathered in a brick-floored hall watching a dancer perform.", + "style": "Candid Photography, Documentary Style", + "lighting": "Warm and dim, with overhead lighting creating a spotlight effect on the dancer.", + "outfit": "Casual modern clothing - t-shirts, jeans, hoodies. The audience is dressed in everyday wear.", + "location": "Indoor hall or event space, possibly a school gymnasium or community center.", + "poses": "The focal point is a female dancer who is performing, with a male dancer watching her and several spectators surrounding the dance floor", + "angle": "Overhead shot, slightly angled to show both the dancers and the audience. A foreground observer is present." + }, + "videoPrompt": "A dynamic hip-hop dance performance unfolds on the brick floor! The female dancer transitions into a complex routine with power moves, while the male dancer joins in, challenging her. Audience members start improvisating with spontaneous dance motions, creating an energetic vibe.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\161285230400784339_1758638876627_3.png" + }, + { + "scene": "Dynamic Dance Battle", + "imagePrompt": { + "description": "A group of dancers are performing a dynamic dance routine in what appears to be a dance studio or competition stage.", + "style": "Realistic photography, reminiscent of a hip-hop dance movie like 'You Got Served'.", + "lighting": "Dramatic, with a mix of bright and shadowed areas, emphasizing the dancers' forms and energy. A spotlight effect adds dimension.", + "outfit": "Casual yet stylish; mostly black athletic wear with pops of color from red, orange and yellow. Some dancers have baseball caps or headbands, while others are in full suits.", + "location": "A dance studio floor, likely a competition setting with an audience in the background.", + "poses": "The dancers are engaged in energetic poses, showing strength and grace. A mix of hip-hop, breakdancing and contemporary styles can be observed.", + "angle": "Slightly low angle, giving the dancers a sense of power and presence." + }, + "videoPrompt": "A quick cut video with dynamic dance moves in a crowded dance studio. The scene starts with the dancers performing their routine, then transitions to a full-blown dance battle between two groups. Add some creative camera angles like spins and zooms to show each dancer'’s skills. Music: A fast-paced hip-hop beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\161285230400784339_1758638876714_4.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A large group of people are engaged in a vibrant hip-hop dance performance, with one person front and center leading the action.", + "style": "Photography - Realistic", + "lighting": "Bright and even lighting, creating strong contrast between dancers.", + "outfit": "Casual street wear - jeans, t-shirts, baseball caps, and a few red outfits are visible.", + "location": "A black dance floor or stage.", + "poses": "The group is in motion, with dancers performing dynamic hip-hop moves. They have varying degrees of enthusiasm and energy", + "angle": "Slightly low angle, giving the impression of a dynamic performance." + }, + "videoPrompt": "A fast-paced hip-hop dance sequence continues with more people joining in, building to a climax with coordinated movements and energetic energy. Add some dancers doing breakdance moves. ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\161285230400784339_1758638877386_9.png" + }, + { + "scene": "Dance Troupe Performance", + "imagePrompt": { + "description": "A large group of dancers stands in a line, performing on a stage. They are dressed in coordinated outfits and are surrounded by an audience.", + "style": "Photography - Stage performance with dramatic lighting", + "lighting": "Warm, dynamic lighting. A spotlight highlights the dancers, with a backdrop suggesting a mix of blue and gold.", + "outfit": "The dancers all wear black pants, with red jackets and orange accents. They have white shoes. Most are wearing baseball caps.", + "location": "A stage in a theatre or performance hall, complete with audience seating", + "poses": "The dancers are arranged in a line, with some of them holding poses as if mid-dance. They appear to be in a dance formation.", + "angle": "Frontal view from slightly below the dancers, giving an eye level perspective." + }, + "videoPrompt": "Dynamic dance scene: The troupe breaks into a fast-paced hip hop dance routine with both smooth and energetic motions. A beat drops at 40 seconds. They move in unison with individual dancers taking turns to lead and show their skills. The performance builds towards an energetic climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\161285230400784339_1758638877549_10.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A large group of people are engaged in a dynamic dance performance within a brightly lit indoor space. A central dancer stands prominently with outstretched arms, while several others surround them in various poses.", + "style": "Realistic photography, similar to a dance magazine or promotional poster", + "lighting": "Warm and bright overhead lighting, creating dramatic shadows and highlights.", + "outfit": "A mix of casual streetwear - black t-shirts, hoodies, jeans, and some dancers wear light pink. The main dancer wears white with a bow tie.", + "location": "Indoor dance studio or gymnasium", + "poses": "The subjects are in dynamic dance poses, including crouching, standing, and reaching, conveying energy and movement.", + "angle": "Slightly low angle, giving the viewer a sense of being immersed in the performance." + }, + "videoPrompt": "A fast-paced dance scene unfolds with dancers breaking into more complex moves. The main dancer initiates a series of smooth transitions from hip hop to contemporary styles and is joined by others who add energy. Camera zooms between dancers, capturing their dynamic movements with a pulsing beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\161285230400784339_1758638877966_11.png" + }, + { + "scene": "Dynamic Flamenco Dancers", + "imagePrompt": { + "description": "A silhouette of five flamenco dancers performing on a stage with a vibrant red background.", + "style": "Dramatic, high contrast photography.", + "lighting": "Strong overhead lighting creating distinct shadows and reflections. Red light backdrops the scene.", + "outfit": "Traditional flamenco dresses – long, flowing gowns in dark colors, likely black or dark shades of red. Dancers are wearing outfits that match with the silhouette", + "location": "A stage – a black space for performance.", + "poses": "Each dancer is in a different pose, suggesting dynamic action and movement. They all hold something above their heads like an object during flamenco dance.", + "angle": "Straight-on, eye-level perspective." + }, + "videoPrompt": "A fast-paced flamenco performance with the dancers engaging in complex steps, arm gestures, and quick turns. The scene builds into a fiery climax as they perform a dynamic dance sequence, starting from the silhouette.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\178032991513245451_1758638837800_7.png" + }, + { + "scene": "A Moment of Collective Tension", + "imagePrompt": { + "description": "The image shows a large group of dancers in a stage setting, appearing to be engaged in a dynamic dance. They are mostly dressed in earthy tones and are arranged in a line or semi-circle.", + "style": "Photorealistic Dance Photography", + "lighting": "Dramatic spotlighting, creating strong shadows and highlighting the dancers' forms.", + "outfit": "A mix of casual and formal attire – some wear shirts, others have bare torsos. All are wearing earthy tones – browns, greens, and grays.", + "location": "Stage with a dark backdrop", + "poses": "The dancers are in various poses: some bent forward, others reaching for each other, creating a sense of interconnectedness and tension. They appear to be mid-dance, capturing a dynamic moment.", + "angle": "Slightly low angle, giving the group prominence." + }, + "videoPrompt": "The dancers burst into a frenzied yet graceful dance, building from the current tension. The dance starts with fluid movements that mimic a ripple effect along the line of dancers. They then transition into more dynamic and energetic movements. The dancers are performing an expressive contemporary dance piece with strong emphasis on unison and collective energy. Music should be dramatic but also have a subtle heartbeat pulse.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\178032991513245451_1758638843740_35.png" + }, + { + "scene": "Neon Dance", + "imagePrompt": { + "description": "Two people in hooded outfits are doing a dynamic dance with neon lights surrounding them.", + "style": "Digital Art, Hyperrealism", + "lighting": "Dramatic neon lighting, primarily orange, pink and yellow with a blue base. Lights create streaks and trails.", + "outfit": "Casual streetwear - denim pants and hooded sweatshirts in bright colors.", + "location": "Dark studio or stage floor, giving the appearance of a spotlight effect", + "poses": "Both dancers are engaged in energetic dance poses – one is crouching while holding his head, and the other is leaping with outstretched arms. ", + "angle": "Slightly low angle, focusing on both subjects." + }, + "videoPrompt": "The duo transition from their dynamic pose into a full-out hip hop dance routine, with neon lights pulsating in time to energetic music. They move between the dancers, creating swirling patterns and trails of light as they execute fluid moves. The video showcases their energy while adding more dancers.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\185492078402368279_1758639055722_1.png" + }, + { + "scene": "Dynamic Duo", + "imagePrompt": { + "description": "A vibrant image featuring a male and female subject in mid-dance, surrounded by colorful swirling shapes.", + "style": "Modern/Abstract", + "lighting": "Bright and dynamic with multiple colors emanating from the swirls around the subjects.", + "outfit": "Casual streetwear: yellow hoodies and dark denim. The woman wears a pink baseball cap.", + "location": "A simple, slightly grayish backdrop to emphasize the colorful swirl.", + "poses": "Energetic dance pose; both subjects are in motion with smiles.", + "angle": "Frontal, dynamic composition." + }, + "videoPrompt": "The duo continues their energetic dance, moving through a kaleidoscope of color and light. They perform a playful routine that's fast-paced and upbeat. The scene transitions between multiple different colorful shapes, adding depth to the dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\185492078402368279_1758639055939_2.png" + }, + { + "scene": "Neon Dance", + "imagePrompt": { + "description": "A vibrant image of a woman performing a dynamic dance move. She is covered in colorful splashes and glowing light, giving her an energetic feel.", + "style": "Digital Art - Glow/Neon", + "lighting": "Intense neon lighting with splashes of various colors (pink, green, blue, orange) creating a glow-in-the-dark effect.", + "outfit": "She's wearing a sporty outfit: a dark sports bra and shorts. The outfit is outlined in glowing neon shades.", + "location": "A black background with splashes of color at the bottom simulating a dance floor, or a stage.", + "poses": "The woman is mid-dance move – energetic and dynamic, almost like she' on her feet", + "angle": "Slightly low angle, giving the dancer prominence." + }, + "videoPrompt": "A fast-paced dance sequence with the woman performing a complex dance routine to upbeat music. She's surrounded by colorful splashes of light that move in time with the beat, and her hair flies around dynamically.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\185492078402368279_1758639057137_8.png" + }, + { + "scene": "Neon Dance Trio", + "imagePrompt": { + "description": "The image depicts three men in suits, rendered as glowing neon lines, performing a dynamic dance.", + "style": "Digital Art - Neon", + "lighting": "Bright and vibrant neon glow with subtle gradients. Starry background to add depth.", + "outfit": "Formal attire - Suits, ties, hats - all rendered in glowing neon lines.", + "location": "A dark stage or dance floor, sprinkled with sparkling dust.", + "poses": "Dynamic poses suggesting a lively dance routine, specifically reminiscent of jazz dancing. The men are in mid-motion, giving energy and dynamism", + "angle": "Slightly low angle to emphasize the dancers' energy." + }, + "videoPrompt": "The neon dancers continue their energetic dance, transitioning into an upbeat Jazz tune with a vibrant stage set including dynamic lighting effects. The scene is fast paced with multiple layers of dance and movement.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\185492078402368279_1758639057845_11.png" + }, + { + "scene": "Neon Dance", + "imagePrompt": { + "description": "A dynamic image of a dancer in a hip-hop style, with neon splashes of color surrounding them.", + "style": "Digital Painting/Illustration with a pop art influence", + "lighting": "Dramatic and vibrant, with bright neon colors contrasting against a dark background. The lighting is almost 'glowing' from within the image.", + "outfit": "The dancer wears casual urban clothing: shorts, a tank top, and a baseball cap. Bright colored socks add to the overall vibe.", + "location": "A black backdrop with splashes of neon color", + "poses": "The dancer is in mid-action, dynamically frozen in a dance pose – likely breakdancing or hip-hop style. Arms are outstretched, creating a sense of energy and movement.", + "angle": "Slightly angled from below, emphasizing the dancer's dynamism." + }, + "videoPrompt": "The dancer continues to break into a full routine with vibrant neon splashes following her movements! Camera cuts between close-ups of her feet and wider shots to show her dance floor. The beat drops!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\185492078402368279_1758639058289_13.png" + }, + { + "scene": "Dynamic Dance Burst", + "imagePrompt": { + "description": "The image depicts four silhouettes of dancers against a vibrant explosion of color. The colors are primarily orange, yellow, turquoise and purple creating an energetic, dynamic scene.", + "style": "Abstract/Impressionist", + "lighting": "Dramatic, with a central light source originating from the burst of color.", + "outfit": "The dancers appear to be wearing flowing garments – likely dresses or long gowns, but are mostly defined by their silhouette.", + "location": "A dark stage with a base layer of red", + "poses": "Each dancer is in a dynamic dance pose - leaping and reaching upwards. They are engaged in energetic movement.", + "angle": "Slightly low angle looking up at the dancers." + }, + "videoPrompt": "The scene begins with the dancers stepping out of a dark splash of paint, their movements become increasingly complex as they move to an upbeat dance song. The colors from the explosion flow around them like glowing energy, creating dynamic and fluid shapes.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\185492078402368279_1758639060403_20.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers performing on a stage with dramatic lighting.", + "style": "Dramatic, Stage Lighting", + "lighting": "Multi-colored stage lights – red, orange and blue – create a vibrant atmosphere. The light is both warm and cool, creating contrast.", + "outfit": "The dancers are wearing fairly similar outfits - possibly dark dance attire with some slight variation in texture.", + "location": "A stage, likely indoors with a black background", + "poses": "The dancers are in dynamic poses, suggesting a powerful and energetic performance. They are performing an active dance routine.", + "angle": "Slightly low angle, giving the scene a sense of grandeur." + }, + "videoPrompt": "A fast-paced video capturing the energy of the dance performance. Dancers move with fluid grace in a contemporary style. The dancers start by building from the base image and then transition into an energetic burst of movement and dynamic choreography. Add some dancers moving forward, spinning, leaping, and interacting with each other. The lighting transitions between red, orange, and blue to create different moods.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582251716_1758638510523_2.png" + }, + { + "scene": "Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A large group of dancers is captured in a dynamic pose, suggesting a burst of energy and movement.", + "style": "Modern dance photography with a focus on action and form. It has a mix of contemporary and hip-hop influences", + "lighting": "Bright and even lighting, creating good contrast and highlighting the dancers' forms.", + "outfit": "Predominantly denim – various shades and styles of jeans, jackets, and tops. A few dancers have white outfits with some form of light gray or black.", + "location": "Simple backdrop – a plain white surface, allowing the dancers to be the main focus.", + "poses": "A variety of dance poses, from leaps and turns to grounded stances. Most dancers are in mid-movement, creating dynamism.", + "angle": "Slightly low angle, giving the dancers prominence and energy." + }, + "videoPrompt": "The group breaks into a full-fledged hip-hop/contemporary dance routine with dancers cascading off each other. The music starts slow and builds up to an intense beat, becoming more energetic as the dance goes on.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582251716_1758638510856_3.png" + }, + { + "scene": "Dynamic Dance Studio", + "imagePrompt": { + "description": "A group of five dancers are performing a hip-hop inspired dance in a brightly lit dance studio.", + "style": "Photo Realism, dynamic action shot", + "lighting": "Warm and bright with good contrast, creating energy.", + "outfit": "Casual and comfortable; the dancers wear a mix of tank tops, shorts, leggings, and sneakers.", + "location": "A spacious dance studio with hardwood floors and neutral walls. A small window is visible in the background.", + "poses": "The dancers are mid-movement, showcasing energy and dynamism. They have varied poses from arms outstretched to angled stances.", + "angle": "Slightly low angle, giving a sense of power and immediacy." + }, + "videoPrompt": "A group of five hip-hop dancers continue their energetic dance routine in the studio, building into a more complex dance with dynamic moves. The scene transitions between dancers, showcasing each person' 's unique style while keeping the energy high. Add some backdrops like light flashes or smoke to build up the vibe.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582251716_1758638511487_4.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "Four dancers are in a brightly lit, spacious studio performing a contemporary dance routine. The dancers are mid-motion, with energetic gestures and expressions.", + "style": "Modern Photography - vibrant and dynamic.", + "lighting": "Bright and even lighting, creating a sense of energy", + "outfit": "Athletic wear – tight blue leggings and a crop top for the main dancer. The other dancers are wearing dark athletic outfits.", + "location": "Large dance studio with white walls and floors, with large windows.", + "poses": "Each dancer is in dynamic poses, indicating movement and energy. They're all facing forward in a line.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "The dance crew transitions seamlessly into an energetic hip-hop routine, with each dancer taking turns leading a short sequence of dynamic moves and spins. The scene builds to a climax, where they all perform a synchronized jump and land.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582251716_1758638512546_8.png" + }, + { + "scene": "Emerald Dancers", + "imagePrompt": { + "description": "A series of dancers are lined up in a row, performing a dance with green fabric.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic spotlighting, creating strong shadows and highlights.", + "outfit": "Black form-fitting outfits, paired with green baseball caps and draped in flowing emerald-green fabric.", + "location": "A dark stage, seemingly minimalist with a white floor.", + "poses": "The dancers are actively engaged in dynamic dance movements, holding the large pieces of fabric. Each dancer has an individual pose but is connected by the row.", + "angle": "Straight on from waist level." + }, + "videoPrompt": "The dancers burst into a fast-paced, energetic contemporary dance routine with the green fabric flowing and swirling around them, culminating in a dramatic group pose where they all are holding the fabric in one large piece. The music should be upbeat and modern.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582251716_1758638513096_9.png" + }, + { + "scene": "Dynamic Dance Trio", + "imagePrompt": { + "description": "Three young women are engaged in a lively dance performance. They are all wearing casual clothing, and appear to be performing a contemporary or urban style of dance.", + "style": "Photorealistic", + "lighting": "Warm orange and purple lighting creates a dramatic effect.", + "outfit": "Each woman wears a different outfit but they’re all casual – denim shorts, tank tops, and cropped shirts. The outfits are paired with white sneakers.", + "location": "A simple studio setting with a grey background.", + "poses": "The three women each have distinctive dance poses, with arms raised and bodies engaged in motion.", + "angle": "Full frontal shot." + }, + "videoPrompt": "The trio continue their dynamic dance performance. The music builds as they transition into a more energetic and expressive routine. One dancer starts the group by leading them to an array of different dance moves, with each dancer taking turns showing off their unique talents. ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582251716_1758638513685_11.png" + }, + { + "scene": "Dynamic Dance", + "imagePrompt": { + "description": "A full shot of a dancer in a modern dance pose. The image is black and white, with the focus on her form and movement.", + "style": "Modern Photography", + "lighting": "Soft and even lighting, creating subtle shadows but no dramatic contrast.", + "outfit": "Minimalist outfit consisting of a crop top and wide leg pants, giving an overall minimalist feel.", + "location": "A simple studio setting with a seamless backdrop.", + "poses": "The dancer is in mid-motion, with one arm extended upwards and the other arm reaching out. She’s balanced on one foot while her opposite leg is bent.", + "angle": "Full body shot from waist up." + }, + "videoPrompt": "A modern dance piece begins with the dancer building on her current pose. Her movements are fluid and graceful, moving into a series of dynamic turns and leaps. The music is ambient and builds in intensity as she dances. She continues to move between controlled and more expressive movement, gradually developing into a vibrant dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582253398_1758638807436_2.png" + }, + { + "scene": "Silhouettes in Dance", + "imagePrompt": { + "description": "Two women are silhouetted against a vibrant sunset, performing a fluid dance.", + "style": "Photorealistic", + "lighting": "Warm and golden; back-lit with the sun as the primary light source.", + "outfit": "Long flowing dresses; elegant and classic.", + "location": "A grassy field at sunset.", + "poses": "Dynamic dance poses, with arms raised and bodies in motion. One woman is slightly forward, creating a focal point.", + "angle": "Eye-level, wide shot." + }, + "videoPrompt": "The two women continue their dance, becoming more dynamic as the sun sets. They begin to twirl and spin, with flowing dresses swaying in rhythm. A small flock of birds flies overhead, adding to the scene’s beauty. The dance becomes a celebration of freedom and joy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\1970393582253398_1758638810788_23.png" + }, + { + "scene": "Dynamic Dance Silhouette", + "imagePrompt": { + "description": "A group of dancers are silhouetted against a light teal backdrop, creating a dramatic effect.", + "style": "Modern dance photography, with an emphasis on form and movement", + "lighting": "Backlit, with soft lighting to create the silhouette effect", + "outfit": "Dancers wear sleek, dark outfits - likely tight-fitting clothing like leotards or dancewear", + "location": "A minimalist studio setting, possibly a stage", + "poses": "The dancers are in dynamic poses, with an emphasis on strong lines and fluid movement. They appear to be mid-dance, creating a sense of energy.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A fast-paced dance sequence unfolds, building from the silhouette into a vibrant, energetic dance. The dancers move in unison, performing complex choreography with dynamic lighting and a pulsing beat. They transition between multiple dance styles - modern, jazz, hip-hop - all while maintaining smooth elegance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638942439_1.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers perform a modern dance on stage with warm orange lighting.", + "style": "Photorealistic", + "lighting": "Warm, dramatic lighting; predominantly orange with subtle gradients.", + "outfit": "Dancers are wearing dark tops and light grey pants. ", + "location": "A theatrical stage, well-lit with a black backdrop.", + "poses": "The dancers are in dynamic poses suggesting a contemporary dance routine. Many have raised arms, some are in mid-step.", + "angle": "Slightly low angle, providing a good view of the entire group." + }, + "videoPrompt": "A fast-paced modern dance continues with the dancers transitioning through various fluid movements and dynamic poses. The lights begin to shift from orange to deep purple as the dancers move into more complex choreography, ending with all dancers in unison.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638942970_5.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing in a dimly lit stage with blue hues dominating the color scheme.", + "style": "Dramatic, theatrical photography", + "lighting": "Low-key lighting with spotlights focusing on the dancers. Predominantly blue tones, creating a mysterious and energetic atmosphere.", + "outfit": "The dancers are wearing dark formal outfits – likely suits or dresses with some level of formality.", + "location": "A stage setting, possibly a theatre or performing arts space.", + "poses": "The dancers are in dynamic poses, suggesting an expressive dance routine. They are reaching upwards and outwards, showing energy.", + "angle": "Medium shot, slightly from below to emphasize the dancers' height and grace." + }, + "videoPrompt": "A troupe of dancers continue their energetic performance with a burst of swirling movement, expanding into more complex choreography. The scene transitions between elegant and dramatic poses, highlighting the interplay of light and shadow, building towards an exciting crescendo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638943793_10.png" + }, + { + "scene": "Dynamic Dance in a Downpour", + "imagePrompt": { + "description": "A group of dancers are performing inside what appears to be an indoor space, illuminated by overhead lighting while being drenched in a heavy downpour. The image is black and white, giving it a dramatic feel.", + "style": "Dramatic Realism - reminiscent of fashion photography with strong contrast", + "lighting": "Overhead artificial lighting mixed with the diffused light from the rain creates high contrast between dancers. It's generally dark but has good contrast.", + "outfit": "A mix of modern and slightly edgy clothing – short pants, tank tops, shirts and a few different styles that are all casual.", + "location": "Indoor space - likely a large gymnasium or industrial area with high ceilings", + "poses": "The dancers are in dynamic poses, suggesting they are actively dancing, some more action than others. Each dancer is unique in their pose.", + "angle": "Slightly low angle, giving the scene dynamism and energy." + }, + "videoPrompt": "A group of dancers continue to dance with increasing intensity in a downpour! Add more dancers and have them move around, doing contemporary or hip-hop style dancing. It's like they are trying to express something through their dance as they become increasingly drenched.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638944000_12.png" + }, + { + "scene": "A Noir Power Play", + "imagePrompt": { + "description": "The image features a woman in multiple poses, all with the same subject. She is wearing a black dress and heels, holding both a gun and a cigarette.", + "style": "Photorealistic, Noir, Dramatic", + "lighting": "Dramatic, low-key lighting with shadows creating contrast.", + "outfit": "Black, elegant evening dress with a corset design, high heels.", + "location": "A simple studio setting with grey backdrop and white cubes.", + "poses": "The woman is seated or standing in various poses, holding weapons and smoking. Each pose presents a different level of confidence and power", + "angle": "Slightly low angle, giving the subject dominance." + }, + "videoPrompt": "Dynamic dance scene: The main character, with strong jazz influence, performs a sophisticated dance routine while she alternates between holding a gun, sipping a whiskey, and blowing smoke. The dance starts with each pose from the image and transitions into an energetic, rhythmic dance that builds in intensity. The music is upbeat Jazz.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638944498_16.png" + }, + { + "scene": "Dance Studio Exhaustion", + "imagePrompt": { + "description": "A young woman lies sprawled on a wooden dance floor in a dance studio, appearing exhausted after a dance session. She's lying face up with her arms outstretched.", + "style": "Contemporary Photography", + "lighting": "Warm overhead lighting creates a slightly orange hue over the scene", + "outfit": "She wears a black crop top and grey camouflage pants with a high waist, creating a modern dance look.", + "location": "A large, well-lit dance studio with hardwood floors.", + "poses": "The woman is lying in a relaxed pose, appearing exhausted but also graceful. Her arms are outstretched as if she' been doing a long and intense dance session", + "angle": "Slightly overhead angle, giving the viewer a good view of the entire scene." + }, + "videoPrompt": "The woman opens her eyes after laying on the floor and gets up with energy. The music changes to upbeat hip-hop, she starts breaking out into an energetic dance routine, blending contemporary movements with confident swagger. She transitions between expressive dance forms in a dynamic dance scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638945216_19.png" + }, + { + "scene": "Electric Stage Presence", + "imagePrompt": { + "description": "A silhouette of a dancer against a vibrant blue backdrop with a digital screen displaying vertical lines, resembling bars or rods.", + "style": "Modern Photography - Dynamic and energetic.", + "lighting": "Cool, electric-blue lighting creating a dramatic effect. The light creates a contrast between the figure and the background", + "outfit": "The dancer is wearing a short, semi-transparent dress that flows with movement; it gives an impression of being dynamic dance.", + "location": "A stage setting, likely part of a concert or performance.", + "poses": "The dancer is in mid-movement, arms outstretched as if embracing the light. The pose suggests energy and confidence.", + "angle": "Slightly low angle, focusing on the dancer's silhouette." + }, + "videoPrompt": "A dynamic dance scene with a dancer moving to a fast-paced electronic song. She starts in the center of stage, then moves into a flowing routine, interacting with the light display behind her. The light begins to change colors and intensity as she dances.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638947304_25.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing in a large, geometric space built from scaffolding. Multiple dancers are positioned at different heights and levels within the structure.", + "style": "Contemporary Photography", + "lighting": "Predominantly cool blue tones with focused spotlights creating dynamic shadows. The lighting creates both drama and sophistication.", + "outfit": "All dancers wear sleek, black, fitted dancewear – likely leotards or tight-fitting outfits – to emphasize the movement and form.", + "location": "A large indoor space, specifically designed for a performance. The backdrop is minimal, focusing attention on the structure.", + "poses": "The dancers are in various poses; some crouching, others reaching, standing, or dynamically dancing. They exhibit fluid motion with energetic dance moves", + "angle": "Slightly elevated angle providing an overview of the entire space and the dancers within it." + }, + "videoPrompt": "A fast-paced contemporary dance unfolds in a large scaffolding structure. Dancers move between levels, using both stairs and dynamic jumps to create a flowing sequence. The lighting shifts subtly with each dancer's movement, building into an energetic crescendo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638949035_27.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A female dancer in a grey tracksuit with the number '8' on her back, is captured mid-dance movement. She's in a dance studio, and has excellent form.", + "style": "Photorealistic with slight dramatic lighting", + "lighting": "Low light, with spotlights highlighting the dancer.", + "outfit": "Grey tracksuit with a prominent white number '8'. The outfit is comfortable but shows her physique.", + "location": "Dance studio with wooden flooring and a brick wall backdrop. A heater sits below the brick wall", + "poses": "Dynamic, energetic dance pose, showing strength and flexibility. She's in mid-motion, like she just started a complex move.", + "angle": "Slightly wide angle to show more of the dancer and her surroundings." + }, + "videoPrompt": "A female dancer continues an energetic, modern dance routine with strong use of rhythm and beat. She transitions between different dance styles – hip-hop, contemporary, and a bit of jazz – using the space around her in dynamic moves. The camera follows closely, showing her form and energy. Add some extra dancers as the scene builds, culminating in a fast paced performance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638949521_31.png" + }, + { + "scene": "Dynamic Stage Performance", + "imagePrompt": { + "description": "A vibrant shot of a female performer surrounded by male dancers on stage. The main subject is wearing a stylish outfit, with a focus on her upper body and legs. ", + "style": "Dramatic Photography", + "lighting": "Dim, cool lighting with spotlights creating shadows and highlights.", + "outfit": "The female performer wears a white top with light grey baggy trousers. The male dancers are wearing dark shorts.", + "location": "A stage with large screens in the background.", + "poses": "The female performer is centre stage, with arms raised, surrounded by dancers who have dynamic poses. They all appear to be mid-dance.", + "angle": "Slightly high angle looking down at the performance." + }, + "videoPrompt": "A fast-paced dance scene unfolds as the female performer leads a troupe of male dancers in an energetic routine, building into a complex choreography with dynamic stage lighting and dramatic movements. ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\19773685859004382_1758638949780_32.png" + }, + { + "scene": "A Local Bodega", + "imagePrompt": { + "description": "The image depicts a person inside a bodega, surrounded by shelves of drinks, particularly Coca-Cola and Sprite.", + "style": "Realistic Photography", + "lighting": "Warm, ambient lighting with some contrast from the fluorescent lights above.", + "outfit": "The subject wears a light green t-shirt with an open collar and grey denim jeans. They also wear yellow work boots.", + "location": "A classic bodega with tiled floors and drink refrigerators.", + "poses": "The person is holding a bottle of green liquid, seemingly in motion, with one foot forward.", + "angle": "Low-angle shot looking up at the subject." + }, + "videoPrompt": "Dynamic dance scene: A breakdancer enters this bodega, grabbing bottles from the fridge while spinning on their feet. The dance starts with a simple head bob and escalates to complex spins and freezes, all while holding a bottle of the green liquid! With warm ambient lighting.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638730120_4.png" + }, + { + "scene": "Dynamic Duo Dance", + "imagePrompt": { + "description": "Two young women are in a dynamic pose, likely from a TikTok dance challenge. The top woman is in a more upright position, while the bottom woman is supporting her weight.", + "style": "Trendy and youthful, reminiscent of early 2000s aesthetic with a modern twist.", + "lighting": "Bright and even lighting, creating a clean look.", + "outfit": "Both women are wearing trendy outfits. The top woman wears a black crop top, denim shorts, and platform boots. The bottom woman wears a gray outfit.", + "location": "A simple white background", + "poses": "The top woman is in an upright position with one arm extended, while the bottom woman is supporting her weight in a crouched pose.", + "angle": "Full shot from waist up." + }, + "videoPrompt": "Set to a fast-paced beat, have both women transition into a series of dynamic dance moves. Start with the duo in their current position, then move into a smooth and energetic dance routine that shows off their stylish outfits.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638730992_7.png" + }, + { + "scene": "Dynamic Urban Dance", + "imagePrompt": { + "description": "A young woman is the primary focus, dressed in trendy urban streetwear. She's mid-action, dynamically posing as if doing a dance move.", + "style": "Modern Commercial Photography with slight vibrancy", + "lighting": "Bright daylight with soft shadows.", + "outfit": "Black tank top, short skirt with blue gradient detail, white shoes and gray socks.", + "location": "A bustling city street with buildings and a large commercial complex. There's traffic visible in the background.", + "poses": "Dynamic dance pose; the woman is leaning back, one arm raised, with her leg extended as if mid-dance move.", + "angle": "Low angle shot, giving a sense of power and dynamism." + }, + "videoPrompt": "The young dancer bursts into a dynamic hip-hop dance routine. She starts with the pose in the image, then transitions to a series of energetic moves, incorporating both fluidity and sharp movements. The camera follows her as she dances across the street, interacting with bystanders and using the cityscape as her stage. Music is upbeat and modern.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638731197_9.png" + }, + { + "scene": "A Dynamic Group Pose", + "imagePrompt": { + "description": "The image features a group of seven people with similar builds and vibrant orange hair, arranged in a dynamic pose.", + "style": "Early 2000s fashion photography. It has a vintage feel, reminiscent of classic hip-hop album artwork", + "lighting": "Dramatic lighting emphasizing the subjects' forms and creating shadows. There is a mix of warm and cool tones.", + "outfit": "The group all wear some combination of denim, leather jackets, and either black or light blue outfits. They have a layered look with a modern take on early and late 90s fashion.", + "location": "A simple backdrop is used to draw focus towards the group itself", + "poses": "The group's poses are dynamic and expressive, each member contributing to a sense of energy. Some models are seated while others stand with confidence.", + "angle": "Slightly low angle, creating a sense of power and presence." + }, + "videoPrompt": "A fast-paced dance routine set to an upbeat hip-hop track begins, taking the group from their dynamic pose into a full-blown dance sequence. They move with energy and confidence, showcasing both smooth moves and powerful transitions. The lights shift between cool blue and warm orange, following the beat of the music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638734572_22.png" + }, + { + "scene": "Urban Dance", + "imagePrompt": { + "description": "A young woman in a black outfit with red accents is doing a dynamic dance pose in front of a vibrant blue and turquoise graffiti wall.", + "style": "Photorealistic, Urban Photography", + "lighting": "Dramatic studio lighting, creating contrast between the dancer and the background.", + "outfit": "Black dance uniform. The outfit consists of a black mesh top with tight sleeves and baggy pants with red trim & straps. Black sneakers.", + "location": "Brick wall covered in vibrant graffiti.", + "poses": "Dynamic pose, mid-action, suggesting a breakdance or hip hop style. The dancer is leaning back, one hand raised as if in performance.", + "angle": "Full body shot, slightly low angle to emphasize the dancer's power and dynamism." + }, + "videoPrompt": "The dancer transitions into a full-blown hiphop dance routine, bouncing between poses with energy. The scene cuts between close-ups of her face, showing confident determination, and wider shots revealing more of the vibrant graffiti wall. Add some beat drops to add rhythm.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638734944_23.png" + }, + { + "scene": "Dynamic Urban Dance", + "imagePrompt": { + "description": "A young woman is frozen in a dynamic pose mid-dance, against a backdrop of brick buildings.", + "style": "Modern Photography - with a wide angle lens and slight distortion", + "lighting": "Bright daylight, creating strong contrast and vivid colors.", + "outfit": "Casual: White t-shirt and denim jeans, paired with vibrant red and white Nike Air Force 1 sneakers.", + "location": "A street lined with brick buildings, suggesting a European urban setting.", + "poses": "The woman is in mid-action - almost like she's reaching for something. A dynamic dance pose with exaggerated expression", + "angle": "Wide angle, circular perspective (fish eye effect) giving the image an unusual and dynamic view." + }, + "videoPrompt": "A young dancer breaks into a fast-paced dance routine on the street, blending urban vibes with energetic movement. She transitions from the frozen pose to a flowing dance sequence, incorporating both smooth and sharp motions, with quick cuts and dynamic angles.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638737180_30.png" + }, + { + "scene": "Skateboarder in mid-air", + "imagePrompt": { + "description": "A young skateboarder is performing a trick over a metal railing, with a backdrop of a modern building and greenery. The skateboarder is airborne, wearing a cap and casual clothing.", + "style": "Candid photography, reminiscent of early '00s skate culture", + "lighting": "Bright daylight, creating strong shadows.", + "outfit": "Casual skateboarding attire: grey t-shirt with 'Thrasher' logo, jeans, and classic tan suede skateboard shoes. Also wearing a baseball cap.", + "location": "Outdoor park setting, likely a modern skatepark or public space.", + "poses": "Dynamic action shot showing the skateboarder in mid-air, performing an ollie or similar trick over the metal railing.", + "angle": "Slightly low angle, capturing the height of the jump and the dynamism of the scene." + }, + "videoPrompt": "A group of dancers break out into a dynamic dance routine around the skateboarder. It starts with rhythmic clapping and builds to a fast-paced hip hop choreography that mimics the fluid motion of skateboarding tricks. The building in the background serves as a backdrop for a modern dance scene, mirroring the energy of the skater.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638737532_32.png" + }, + { + "scene": "Tokyo Pop!", + "imagePrompt": { + "description": "A vibrant and colorful image depicting a young woman in the middle of a bustling Tokyo street, surrounded by pedestrians and bright signage.", + "style": "Japanese Pop Art/Photography with a slight fisheye lens effect", + "lighting": "Bright and cheerful, slightly diffused daylight. A mix of direct sunlight and shadow.", + "outfit": "The model wears an incredibly vibrant outfit consisting of a pink patterned top, adorned with green vines, black cap with pink accents and lots of gold jewelry. The outfit is very 'kawaii' or cute.", + "location": "A busy Tokyo crosswalk, surrounded by buildings and bright advertising signs. Specifically Shibuya district", + "poses": "The model is seated, holding open a large newspaper with an excited expression. She has one hand raised as if reacting to something she is reading.", + "angle": "Fisheye lens creates a wide angle perspective, emphasizing the scale of the city and the proximity to the viewer." + }, + "videoPrompt": "A dynamic dance scene set to upbeat J-Pop music. The model leaps from her seat in the crosswalk with dancers appearing around her as she begins a fast paced dance that takes her through Tokyo’s vibrant streets, incorporating both modern and traditional elements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638737715_33.png" + }, + { + "scene": "Trendy Street Style", + "imagePrompt": { + "description": "A young woman is the focal point of this image, leaning towards the camera in a playful and confident pose. She's dressed in colorful, trendy street wear with a baseball cap.", + "style": "Candid photography with an urban edge; reminiscent of Japanese fashion magazines", + "lighting": "Warm, diffused lighting with some contrast from street lights and possible flash.", + "outfit": "The woman is wearing a pink plaid top, grey sweater, and white shorts. She has striped socks and Nike sneakers. Accessories include a baseball cap, and multiple bags/straps.", + "location": "A bustling city street at dusk; likely Asian (Japanese) with storefronts and vehicles in the background.", + "poses": "The woman is leaning forward with one hand outstretched, as if reaching for the camera. Her pose is dynamic and expressive.", + "angle": "Low-angle shot looking upwards towards the subject." + }, + "videoPrompt": "A vibrant dance routine kicks off in a bustling city street! The dancer, wearing an outfit inspired by the image, leads to a dynamic dance scene with multiple dancers. She starts with a playful and energetic dance that transitions into a more confident hip-hop style, using the environment as her stage. The music is upbeat, with a focus on rhythm and beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2111131073009927_1758638737819_34.png" + }, + { + "scene": "Urban Group Pose", + "imagePrompt": { + "description": "A black-and-white photograph of a group of seven young men, likely from the early 90s, standing on a city street. The group is arranged in a semi-circular formation, with some members crouching and others standing.", + "style": "Black and white photography - reminiscent of hip hop culture photos from the era", + "lighting": "Natural light; slightly overcast giving soft shadows", + "outfit": "Typical early that time period hip hop fashion. The group wears a mix of casual clothing with sportswear elements. Adidas is prominent, visible on jackets and shoes.", + "location": "A bustling urban street – likely New York City or similar with brick buildings and a street.", + "poses": "The men are posing in a variety of stances; some with crossed arms, others more relaxed. There's an attempt at confident presence, like they are defining who is the main character", + "angle": "Slightly low angle - eye level for viewer." + }, + "videoPrompt": "A dynamic dance scene set to hip hop music. The group breaks into a choreographed routine – blending breakdancing and early 90s hip hop style, with smooth transitions between dancers in the group. Add some camera work of slow motion on key movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638582000_1.png" + }, + { + "scene": "Russian Protest - Car Kick", + "imagePrompt": { + "description": "A black-and-white photograph depicting a chaotic scene of a protest. Multiple individuals are engaged in dynamic action, centered around a car. One person is mid-kick, aiming at the hood of the vehicle; others are grappling with the car and contributing to the general frenzy.", + "style": "Photojournalism/Documentary", + "lighting": "Contrast, somewhat dramatic lighting; the image has good contrast between light and dark areas.", + "outfit": "Generally casual clothing – mostly men in shirts, some wearing jackets. The style is typical for late of Russian protest during the early 2000's.", + "location": "A city street, likely Russia, with a backdrop of brick buildings and a Sprite advertisement billboard.", + "poses": "Dynamic and aggressive – kicking, grappling, yelling; onlookers are in various poses from watching to observing.", + "angle": "Slightly angled overhead shot. The camera is at eye level, giving the viewer a sense of being in the middle of the action." + }, + "videoPrompt": "A dynamic dance scene set to energetic Russian music, with dancers mimicking the chaotic energy of the protest. Incorporate breakdancing elements and quick cuts between individuals; make it feel like an explosion of youthful anger turned into a rhythmic, celebratory dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638584579_10.png" + }, + { + "scene": "A Young Cyclist in a Concrete Jungle", + "imagePrompt": { + "description": "A black and white photograph depicting a young boy sitting on his bicycle in front of a large, cylindrical building with numerous windows. The boy is the main focus, positioned centrally within the frame.", + "style": "Black and White Photography - reminiscent of social realism or documentary style", + "lighting": "Even lighting throughout, creating good contrast between the young cyclist and the building. Soft shadows hint at a midday sun.", + "outfit": "The boy is wearing a button-down shirt, jeans, and shoes, classic casual attire for that era.", + "location": "A concrete plaza in front of a modern apartment building - likely urban setting with a distinctly modernist architecture.", + "poses": "Boy is confidently sitting on his bicycle, seemingly posing for the camera. He has good posture and is looking directly at the photographer.", + "angle": "Frontal view – eye level with the cyclist, giving equal weight to both the boy and the building." + }, + "videoPrompt": "Dynamic dance scene: The young cyclist jumps off his bike and breaks into a spirited hip-hop dance right in front of the modern cylindrical building. Multiple dancers join him, echoing the repeated windows and creating a rhythmic flow. Music is upbeat with a jazzy feel.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638585436_13.png" + }, + { + "scene": "A Group of Young Children", + "imagePrompt": { + "description": "A black and white photograph capturing a group of young children, likely in an outdoor setting. The kids are playfully posing for the camera, with several making gestures like thumbs up or peace signs. They have varied expressions – some playful, others slightly more serious.", + "style": "Documentary Photography - evokes a sense of realism and authenticity", + "lighting": "Natural lighting, creating contrast between shadows and highlights giving the image good depth.", + "outfit": "Casual clothing – mix of t-shirts, dresses and patterned outfits. Outfits are simple and practical.", + "location": "Likely an outdoor setting such as a courtyard or street, with a surface that looks like stone or concrete", + "poses": "The children are in playful poses, gesturing towards the camera. Some have arms raised, others are sticking their tongues out. They're generally close to each other.", + "angle": "Top-down angle, creating a sense of immediacy and bringing the viewer into the group." + }, + "videoPrompt": "Dynamic dance scene featuring the children! Start with a beat drop, have them break into a lively modern dance – think hip-hop or afrobeat. Add a bit of playful energy; make it seem like they're spontaneously reacting to an upbeat song. The camera should be dynamic, circling and following their movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638586670_18.png" + }, + { + "scene": "New York City Crossroads", + "imagePrompt": { + "description": "A young Black man stands in the center of a busy New York City street, surrounded by blurred pedestrians. The scene is captured with a warm, vintage feel, giving it a nostalgic quality.", + "style": "Film photography - reminiscent of early 2000s aesthetic", + "lighting": "Warm, natural light – slightly muted to create a retro vibe.", + "outfit": "The man wears a tan-colored suit jacket, likely a lightweight or spring style. He's dressed in a simple outfit with a touch of sophistication.", + "location": "A bustling New York City street, indicated by the brick buildings and classic yellow taxi cabs.", + "poses": "The subject is standing still, looking upwards as if lost in thought. The surrounding pedestrians are blurred, suggesting movement.", + "angle": "Slightly frontal perspective with a low angle to emphasize the height of the man." + }, + "videoPrompt": "Dynamic dance scene set to upbeat R&B music. A group of dancers surround the man, who begins a fluid and expressive dance routine in the middle of the crosswalk. The blurred pedestrians become part of the dance – a mix of street dancing with a modern twist. Yellow taxis drive by as if following the rhythm.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638588566_25.png" + }, + { + "scene": "Urban Breakdance", + "imagePrompt": { + "description": "A black-and-white photograph capturing a dynamic breakdance moment on a bustling street corner.", + "style": "Photojournalism/Documentary Photography", + "lighting": "Natural light, with good contrast. Sunlight is the primary source of illumination", + "outfit": "The dancers wear 80s style outfits - jeans and button-down shirts. onlookers are dressed in everyday clothes.", + "location": "A street corner with storefronts, likely a small town or city.", + "poses": "Multiple subjects are engaged in breakdancing moves: handstands, head spins, and overall dynamic poses", + "angle": "Slightly low angle, giving prominence to the dancers and their immediate surroundings." + }, + "videoPrompt": "A group of breakdancers explode into a full routine with some passerby joining in. The scene is high energy, with a boombox setting the rhythm. Transition from one dancer's spotlight moment to another, showcasing different dance moves.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638590497_30.png" + }, + { + "scene": "A Bedroom Moment", + "imagePrompt": { + "description": "The image captures a person with short hair, looking at the camera while holding a camera in one hand. They're wearing a light-colored t-shirt that reads 'PEACE WITHIN', in a bold font. The room is slightly darkened, with a bed and some books/records visible.", + "style": "Candid photography, slightly moody", + "lighting": "Warm but subdued, with the main source of light coming from the window.", + "outfit": "Casual - t-shirt and likely standard pants. The outfit is simple, emphasizing the message on the shirt", + "location": "A bedroom setting, a little cluttered, giving it an authentic feel.", + "poses": "The person is holding the camera in a fairly natural pose, looking directly at the viewer.", + "angle": "Slightly from above, medium shot." + }, + "videoPrompt": "Dynamic dance scene. The subject starts by taking a selfie with their phone while dancing to a mid-tempo song. They drop the phone and start a smooth, flowing dance that transitions between confident and introspective moments, embodying 'Peace Within'. There's a focus on the bedroom surroundings - bed, books, records - becoming part of the choreography. The dance builds in energy, using the space while remaining grounded.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638591794_33.png" + }, + { + "scene": "Youthful Energy", + "imagePrompt": { + "description": "A group of young boys pose for a black and white photograph in front of a brick wall.", + "style": "Black and White Photography, Candid Portrait", + "lighting": "Slightly diffused lighting, creating contrast between the subjects and the background.", + "outfit": "Casual streetwear with jeans, t-shirts, hoodies and sneakers. One boy wears a shirt that says 'Dream, Sleep, Repeat'.", + "location": "In front of a brick wall, likely outdoors near a building.", + "poses": "A variety of poses - some boys are doing playful hand gestures (thumbs up, fist), while others stand with stoic expressions. One is crouching in the foreground and another has an arm raised.", + "angle": "Full frontal shot, eye-level view." + }, + "videoPrompt": "The beat drops! The group of boys break into a dynamic dance routine – blending hip hop and modern moves, their energy filling the space. As they dance, each boy showcases their unique personality, the brick wall becomes their stage. A funky bassline takes them to another level.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638592132_34.png" + }, + { + "scene": "Dynamic Breakdance Group", + "imagePrompt": { + "description": "A black and white photograph of a group of five young people in athletic wear performing a breakdance pose. They are all wearing suits with distinctive Adidas stripes, mostly dark colors.", + "style": "Black and White Photography - reminiscent of early 90s hip hop culture", + "lighting": "Even lighting, creating good contrast and shadows to accentuate the poses.", + "outfit": "The group is outfitted in athletic suits with Adidas branding. The style is classic breakdance/hip hop attire – mostly black suits with white stripes.", + "location": "Simple white background", + "poses": "Each member of the group is striking a different pose, all relating to breakdancing or hip hop dance. There's a mix of dynamic action and poses that suggest energy.", + "angle": "Full frontal shot, with focus on the entire group." + }, + "videoPrompt": "Fast-paced video showing the breakdance group transitioning from their pose into a full out energetic breakdance routine to a hip hop beat. Focus is on dynamic movement and smooth transitions, blending dance styles.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638592936_37.png" + }, + { + "scene": "Urban Dance", + "imagePrompt": { + "description": "A young man is doing a handstand in the middle of a narrow Japanese street, surrounded by shops and buildings.", + "style": "Realistic Photography", + "lighting": "Natural light with slight shadows, indicating an overcast day or sheltered location.", + "outfit": "The dancer wears a black hoodie and pants, along with green and white sneakers. He's also wearing a Red Bull baseball cap.", + "location": "A bustling Japanese street lined with shops, restaurants, and buildings. There are many signs in Japanese characters.", + "poses": "The main subject is performing a handstand, with his body angled forward, demonstrating flexibility and strength.", + "angle": "Eye-level, slightly low angle to emphasize the dancer's dynamism." + }, + "videoPrompt": "A series of dancers burst into the street, using it as their stage. Starting with the main subject in a handstand, they move forward doing a mix of hip-hop and breakdance moves, flowing down the street. The dance builds in intensity, becoming more complex and energetic as the scene progresses, incorporating different dancers into the flow.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22518066879964986_1758638593279_38.png" + }, + { + "scene": "Boxing & Strength", + "imagePrompt": { + "description": "A beautiful woman with dark hair is leaning against a boxing ring rope, in preparation for a fight or after a round.", + "style": "Photorealistic Photography", + "lighting": "Dramatic and slightly low-key lighting, creating shadows and highlights on the subject's face and body. It suggests both strength and sensuality.", + "outfit": "White tank top with a visible bra underneath, black boxing gloves, and a chunky bracelet.", + "location": "Boxing ring", + "poses": "The woman is leaning forward in an attempt to pull herself up on the rope, her left hand is slightly raised for balance while her right is resting on the rope. She is gazing directly at the camera.", + "angle": "Slightly above eye level, giving a good view of her physique and facial expression." + }, + "videoPrompt": "The woman bursts into a dynamic dance routine, blending boxing moves with graceful fluidity. Starting with a punch thrown forward, she transitions into a breakdance style set to an upbeat hip-hop song. The dance is energetic and bold, showcasing strength and elegance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22588435625158407_1758638409898_1.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of diverse dancers are performing a vibrant dance in a dimly lit club or event space.", + "style": "Contemporary/Urban Photography", + "lighting": "Combination of warm and cool tones, with prominent red lighting creating dramatic shadows.", + "outfit": "Casual streetwear - crop tops, baggy pants, t-shirts, and athletic wear. Lots of neutral colors like gray and white, with some subtle patterns.", + "location": "A club or event space; the floor is slightly reflective.", + "poses": "The dancers are in dynamic poses – lots of energy, expressive arms, legs, and faces. They’re dancing enthusiastically, a mix of individual and group movements.", + "angle": "Slightly low angle, giving the dancers prominence and power." + }, + "videoPrompt": "A fast-paced dance scene continues in the same club setting with more people joining the dance, blending hip hop and contemporary styles. The camera follows a dancer as they move through the crowd, building to a peak where everyone is dancing together in sync.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22588435625158407_1758638410971_9.png" + }, + { + "scene": "Early 2000s Y2K Inspired", + "imagePrompt": { + "description": "A stunning young woman with long braids stands in a room, posing confidently while holding her hand up to her head. She’s wearing a white crop top and matching shorts, creating a sleek early 2000s look.", + "style": "Early 2000s Y2K photography", + "lighting": "Warm, slightly diffused lighting with red tones from the backdrop.", + "outfit": "White cropped set, with subtle details. The outfit is reminiscent of early 2000s fitness or casual wear.", + "location": "A room with a colorful background, likely a bedroom or home interior", + "poses": "The model is in an elegant pose, one hand on her head and the other on her waist, creating a dynamic look.", + "angle": "Slightly upward angle from chest to waist level." + }, + "videoPrompt": "A dynamic dance scene with the young woman, set to a Y2K inspired hip-hop beat. She starts by dancing with her hand touching her head then flows into a full body groove, transitioning between confidence and playfulness, all while maintaining an early   2000s aesthetic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22588435625158407_1758638411270_12.png" + }, + { + "scene": "Dynamic Dance Rehearsal", + "imagePrompt": { + "description": "A large group of dancers is performing a dance routine in a dance studio.", + "style": "Contemporary Photography", + "lighting": "Warm, overhead lighting creating shadows and highlights.", + "outfit": "Mix of outfits including crop tops, shorts, jeans and dresses. Some are wearing heels and others barefoot.", + "location": "Dance studio with a hardwood floor.", + "poses": "A variety of dance poses - dynamic and energetic, with one dancer in the front leading the routine.", + "angle": "Straight-on view from waist height." + }, + "videoPrompt": "The dancers continue their routine, evolving into a more complex choreography. The lead dancer transitions into a solo showcasing smooth, powerful movements. The group then breaks into pairs and perform an energetic dance with dynamic turns and jumps.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22588435625158407_1758638411992_15.png" + }, + { + "scene": "Fashion Show - Runway", + "imagePrompt": { + "description": "A fashion show runway with models walking in a line. The foreground features a model wearing light blue jeans and a gold top, while others are wearing white coats. Audience members sit on either side of the runway.", + "style": "Candid photography", + "lighting": "Dramatic overhead lighting, creating shadows and highlights.", + "outfit": "Mix of modern & casual styles - denim with sophisticated elegance.", + "location": "Indoor fashion show setting, likely a hall or event space.", + "poses": "Models are walking in a straight line, while audience members are seated, some capturing the scene on their phones. ", + "angle": "Slightly angled perspective, showing both models and the audience." + }, + "videoPrompt": "A dynamic dance sequence begins with the runway models, each embodying the style of their outfits. The music swells into a vibrant beat as dancers move in sync, blending casual denim with elegant sophistication. Models start to interact with the crowd, creating an immersive experience.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22588435625158407_1758638412446_19.png" + }, + { + "scene": "Spice Up! - A pop culture moment.", + "imagePrompt": { + "description": "A vibrant image showcasing the Spice Girls alongside a group of hip-hop artists, creating an iconic blend of styles and cultures. The scene is captured in a dynamic composition, with the upper half occupied by the hip-hop crew looking down, and the lower half featuring the Spice Girls.", + "style": "Early as a pop culture photography style, reminiscent of late 90s magazine covers", + "lighting": "Natural sunlight, with some shadow to create contrast.", + "outfit": "The Spice Girls are dressed in their signature looks: Posh in white, Scary in red, Sporty in black, Baby in pink and Victoria in orange. The hip-hop group is dressed in 90s streetwear - jeans, t-shirts, baseball caps", + "location": "A concrete outdoor space, likely a basketball court or park.", + "poses": "The hip-hop artists are posing casually on top of the fence with the Spice Girls in front. The Spice Girls are standing in a row, each displaying their unique personality through posture and expression.", + "angle": "Straight-on, eye level view." + }, + "videoPrompt": "A fast-paced dance routine begins, blending hip-hop moves with the spice girls' signature sass! The beat drops with a heavy bassline. It starts with the Spice Girls and transitions to the Hip-Hop crew, with both groups dancing together in sync, mirroring each other’s energy. A dynamic dance scene is set to a blend of 90s hip-hop and pop music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22588435625158407_1758638413343_22.png" + }, + { + "scene": "Dynamic Dance Sequence", + "imagePrompt": { + "description": "A blurry, yet elegant photograph of a dancer in motion. The image shows multiple 'ghosts' of the same dancer, capturing the flow and dynamism of movement.", + "style": "Abstract Photography/Motion Blur", + "lighting": "Soft, diffused lighting with dramatic contrast.", + "outfit": "The dancer wears a simple, elegant outfit - possibly a fitted shirt and pants. The style is timeless, suited for dance.", + "location": "A stage or dance floor, with a dark backdrop.", + "poses": "The dancer is in mid-motion – likely a graceful turn or expansive arm movement. The 'ghosts' show the progression of the pose.", + "angle": "Slightly low angle, giving prominence to the dancer’s dynamic motion." + }, + "videoPrompt": "A dance troupe bursts into a vibrant, energetic dance sequence on stage. Music is upbeat and dramatic. We see dancers in flowing white outfits performing complex choreography with fluid motions. The camera follows a lead dancer as they move across the stage, building into a crescendo of movement.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22799541855295233_1758638774598_7.png" + }, + { + "scene": "All-White Squad", + "imagePrompt": { + "description": "A group of people, primarily women, dressed in all-white outfits with head coverings resembling turbans or scarves. They are posing for the camera with various hand gestures.", + "style": "Candid Photography", + "lighting": "Bright and even lighting, creating a clean look.", + "outfit": "All white, tight fitting suits with headscarves/turbans and large white sunglasses.", + "location": "Indoor setting, likely a studio or event space. White background.", + "poses": "Multiple people are doing the peace sign, pointing at the camera and generally playful poses.", + "angle": "Slightly front-on perspective." + }, + "videoPrompt": "A dynamic dance scene set to upbeat music. The group of dancers in all-white outfits perform a synchronized modern dance routine, building from simple poses into more complex movements. Camera pans around the dancers, showcasing their energy and confidence. Think early , energetic hip hop.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22799541855295233_1758638776496_16.png" + }, + { + "scene": "Dynamic Dance Rehearsal", + "imagePrompt": { + "description": "A black-and-white photograph of a large group of dancers performing a stretch in a ballroom.", + "style": "Black and White Photography, Documentary Style", + "lighting": "Overhead lighting with some shadows, creating contrast.", + "outfit": "Athletic wear - various outfits. Many are wearing sports bras and shorts or leggings.", + "location": "A large, ornate ballroom, likely within a hotel or convention center.", + "poses": "The dancers are in a dynamic stretch, similar to a lunge or forward bend. They’re all in the same pose with their arms extended.", + "angle": "Wide overhead shot, capturing the entire group and the surrounding space." + }, + "videoPrompt": "A fast-paced dance routine bursts from the image! The dancers transition from the stretch into a powerful, energetic contemporary dance piece. Add some subtle background music with a beat that builds as their energy increases. They are dancing in unison, blending elegance and power. Start with a quick burst of motion, then flow to more complex choreography.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\22799541855295233_1758638777115_18.png" + }, + { + "scene": "Dynamic Team Celebration", + "imagePrompt": { + "description": "A group of thirteen women dressed in business casual attire are posing for a photo, appearing as if celebrating.", + "style": "Professional Photography", + "lighting": "Bright and even lighting", + "outfit": "Black suits with green accents – specifically collars and some detailing. They're wearing black high heels.", + "location": "White background/studio setting", + "poses": "Dynamic poses, most women are reaching upwards as if celebrating a success or victory. Some are in the foreground, while others are behind them. The group is arranged in a line.", + "angle": "Frontal, slightly wide angle to capture the whole group." + }, + "videoPrompt": "The team of thirteen, after posing for the photo, move into a dynamic dance sequence with some funky energy! Start with an energetic, upbeat song. The dancers transition from their pose into a more fluid dance, like they're celebrating a deal or a win. Use quick cuts and dynamic camera angles to show all 'thirteen'.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638522081_4.png" + }, + { + "scene": "A chaotic card game", + "imagePrompt": { + "description": "A group of seven men are engaged in a lively, energetic scene with scattered playing cards.", + "style": "Dynamic photography; it looks like a professional photoshoot.", + "lighting": "Bright and even lighting, with slight shadows to add dimension.", + "outfit": "The men wear a mix of formal and casual outfits; some are wearing button-down shirts with vests and others are in more casual clothing. A few have stylish hats or beanies.", + "location": "A simple backdrop, likely a studio setting.", + "poses": "They're in dynamic poses - one is kneeling, another is mid-air, while others are seated or crouched. They appear to be celebrating and playing cards at the same time", + "angle": "Slightly frontal perspective; it’s as if you’re witnessing the scene directly." + }, + "videoPrompt": "A dynamic dance scene set to upbeat jazz music. The group is in a casino or a card room, with some of them doing an energetic dance routine while playing cards and celebrating their win.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638522696_7.png" + }, + { + "scene": "Dynamic Denim Group Pose", + "imagePrompt": { + "description": "A group of thirteen people are posing in a studio setting with a gray backdrop. The majority of the group is wearing various shades and styles of denim, creating a cohesive look.", + "style": "Studio Photography - Modern", + "lighting": "Soft but prominent lighting, giving good visibility to all subjects.", + "outfit": "Predominantly denim – jackets, jeans, shirts. Some wearers have bare feet; others are wearing sandals. There’s a variety of denim styles: ripped, solid, and patterned.", + "location": "Studio with gray backdrop", + "poses": "A mix of dynamic poses - some people are kneeling or crouching, while others are standing in various positions. Many subjects have lively expressions and gestures, conveying energy.", + "angle": "Full-frame shot, slightly from the front." + }, + "videoPrompt": "The group bursts into a fast-paced dance routine, starting with individual spotlights on each member before they all move together to a beat. They transition between poses shown in the image, adding quick and energetic dynamic dance moves! Think contemporary dance with an emphasis on rhythm and energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638523258_9.png" + }, + { + "scene": "Behind the Scenes & Final Shot", + "imagePrompt": { + "description": "A diptych showing both a behind-the-scenes shot and the final product of a dance group's photoshoot.", + "style": "Photographic, with a mix of modern and classic elements.", + "lighting": "The upper image is lit with soft, diffused light. The lower image has more dramatic lighting", + "outfit": "Formal attire - black dresses and suits for both the group and the photographer", + "location": "A dance studio", + "poses": "Upper: Group of dancers in various poses, a photographer taking photos. Lower: Dancers arranged in formal positions.", + "angle": "Straight-on perspective with the upper image showing the broader scene. The lower image is more centered." + }, + "videoPrompt": "A dynamic dance sequence in a modern dance studio, building on the elegance of the group' in both scenes. Start with the photographer from the top image and follow him as he tries to capture the perfect shot of the dancers. Then transition into an energetic ballet performance by the whole group, using flowing lines and dramatic lighting.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638523779_11.png" + }, + { + "scene": "Executive Board Meeting", + "imagePrompt": { + "description": "A group of young people, dressed in business casual with quirky details, are gathered for what appears to be an executive board meeting. Several subjects have prominent eyewear.", + "style": "Modern Fashion Photography, slightly playful", + "lighting": "Warm, diffused lighting – giving the image a studio feel.", + "outfit": "Business casual with a twist: suits and blazers are dominant, but accessorized with baseball caps, beanies, chunky necklaces, and colorful pins. Some have bright white denim.", + "location": "A simple backdrop – light tan color – suggesting a modern office or studio setting", + "poses": "Varied poses, including seated, standing, leaning forward, and direct eye contact with the camera. The focus is on interaction between subjects", + "angle": "Slightly elevated angle – giving viewers a good view of all the participants." + }, + "videoPrompt": "Dynamic dance scene: A beat drops, and the executive board members break into a synchronized, fast-paced dance routine, transitioning from formal business to a cool, energetic vibe. The scene transitions between subjects while they get increasingly more playful.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638527540_23.png" + }, + { + "scene": "K-Pop Group Pose", + "imagePrompt": { + "description": "A group of seven young women, likely a K-pop group, are posed in front of an interior decorated with warm tones.", + "style": "Contemporary photography, vibrant and colorful.", + "lighting": "Bright and warm lighting, coming from overhead chandelier and possible flash", + "outfit": "The group is wearing brightly colored jackets. A lot of red with blue contrast, a mix of sporty and trendy outfits. White sneakers dominate the bottom half.", + "location": "A luxurious interior space, possibly a hotel lobby or event hall with patterned carpeting and ornate walls.", + "poses": "The girls are arranged in two rows – three in the back row and four in front. They're posing dynamically with relaxed expressions. The group is holding hands", + "angle": "Slightly low angle, eye-level." + }, + "videoPrompt": "Dynamic dance scene set to a K-pop song! Start with the girls breaking into a dance from their pose. Focus on smooth transitions and energetic movements. Add subtle effects like light bursts or color changes in time with the beat", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638528359_27.png" + }, + { + "scene": "A Dynamic Dance Scene", + "imagePrompt": { + "description": "The image depicts five men in business suits engaged in a dynamic, almost comical struggle. They are arranged in a chain-like formation, with each man supporting the weight of those behind him, and pulling on their tie.", + "style": "Photorealistic", + "lighting": "Dramatic, with subtle shadows giving depth to the image.", + "outfit": "All five men wear grey suits, dark ties, and brown leather shoes. They are all in business attire.", + "location": "A simple studio setting with a gray backdrop.", + "poses": "The men are in dynamic poses – pulling, grabbing, and supporting each other to create the chain formation.", + "angle": "Full frontal shot with slight low angle." + }, + "videoPrompt": "A group of business professionals break into a fast-paced, energetic dance routine that turns their struggle into a celebration. The scene starts with them in the pose shown in the image, and then bursts into a dynamic dance with each man leading the next one through an evolving series of steps to the rhythm of upbeat music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2392606045430124_1758638528738_28.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A female dancer is captured mid-motion in a powerful hip hop dance move, resembling a freeze with a back twist.", + "style": "Contemporary Photography, dynamic and bold", + "lighting": "Dramatic lighting with a cool blue tone. A spotlight illuminates the dancer while casting a shadow on the floor.", + "outfit": "Black crop top and matching pants with a black band around her forehead. The outfit is modern and sporty with a slight edge.", + "location": "A simple studio setting with a bright red backdrop", + "poses": "The dancer is in a dynamic pose, almost like a freeze during a breakdance move. One arm is raised, while the other supports her weight on the floor. She has one foot lifted and her back bent.", + "angle": "Slightly low angle to emphasize the power of the dance." + }, + "videoPrompt": "The dancer transitions from the freeze into a full energetic hip hop routine with dancers joining in, incorporating more dynamic moves like spins, grooves, and fluid movements. The camera follows her as she leads a group, building energy with each move.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638499017_0.png" + }, + { + "scene": "Corporate Chaos", + "imagePrompt": { + "description": "Two young men in business suits are engaged in a playful struggle, appearing to be overwhelmed by work or a demanding boss.", + "style": "Editorial Fashion/Contemporary Photography", + "lighting": "Dramatic and vibrant with good contrast. Red background adds intensity.", + "outfit": "Both wear gray suits, white shirts, and blue tie. One is also wearing glasses.", + "location": "A studio setting with a bright red backdrop.", + "poses": "The bottom subject is seated while the top subject is perched over him in an almost-dominant position. The upper subject has one hand grabbing at his shirt, whilst clutching a phone.", + "angle": "Medium shot from waist up, slightly angled to show both subjects." + }, + "videoPrompt": "Dynamic dance scene: A fast-paced hip hop and contemporary dance routine starts with the two men in suits. They begin as if they are battling for dominance and then transition into a playful dance that symbolizes corporate stress. The dancers move fluidly, incorporating smooth transitions between business and playfulness, ending with them confidently grabbing onto a phone.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638499635_4.png" + }, + { + "scene": "Dynamic Hip-Hop Dancer", + "imagePrompt": { + "description": "A male hip-hop dancer is captured mid-motion in a dynamic pose, likely performing a breakdance or freestyle move. He's wearing a white long-sleeved shirt and tan baggy pants, with a white baseball cap.", + "style": "Photorealistic", + "lighting": "Dramatic, slightly shadowed lighting to emphasize the dancer’s form and movement, giving it a stage performance feel.", + "outfit": "Hip-hop inspired: White long-sleeved shirt, tan baggy pants, and white sneakers. It's a classic look for breakdancers and street dancers", + "location": "Indoor space with a concrete background, suggesting a dance studio or urban setting.", + "poses": "The dancer is in mid-motion, showing an energetic pose - likely performing a breakdance move, possibly a freeze or a more dynamic movement. His arms are outstretched, adding to the energy", + "angle": "Slightly low angle, giving the dancer prominence and creating a sense of power." + }, + "videoPrompt": "The dancer transitions into a full-fledged breakdance routine with fluid movements. He goes from this pose into a quick sequence of spins, freezes, and more complex moves, all while maintaining energy. The scene is set to a beat with a strong bassline.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638499988_8.png" + }, + { + "scene": "Dynamic Dance Moment", + "imagePrompt": { + "description": "A young man is captured mid-dance in a studio setting with a white backdrop.", + "style": "Modern Fashion Photography", + "lighting": "Bright, even lighting creates minimal shadows and focuses on the subject's form.", + "outfit": "The model wears an open white jacket over a gray t-shirt, paired with dark brown shorts. He also has bright colored socks and white sneakers.", + "location": "Studio setting with a plain white backdrop.", + "poses": "The man is in mid-motion, dynamically dancing with one arm outstretched and the other pointing downward. His legs are bent in an energetic pose.", + "angle": "Slightly low angle, giving emphasis to his dance move." + }, + "videoPrompt": "The dancer continues his dynamic dance routine, building into a full-fledged hip-hop performance with more dancers joining him! The music builds and the dancer moves seamlessly between energetic poses. He starts by doing a short sequence of smooth transitions before escalating into an upbeat dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638500560_11.png" + }, + { + "scene": "Breakdancing Performance", + "imagePrompt": { + "description": "A black and white photograph depicting a breakdancer in the middle of a performance, surrounded by an audience.", + "style": "Candid photography, with a documentary feel.", + "lighting": "Dramatic overhead lighting, creating strong shadows and highlights.", + "outfit": "The breakdancer is wearing casual attire, including what appears to be a light-colored jumpsuit or pantsuit. Audience wears varied outfits in both modern & classic styles", + "location": "An indoor space with a wooden floor, likely a dance studio or event hall.", + "poses": "The main subject (breakdancer) is mid-performance in a dynamic pose, executing a breakdancing move. The audience is observing attentively.", + "angle": "Slightly above eye level, giving a clear view of the dancer and the surrounding audience." + }, + "videoPrompt": "A fast-paced dance sequence showing the breakdancer continuing her routine, with smooth transitions between different moves. Camera follows the dancers energy, showcasing the dynamism & rhythm, incorporating an energetic beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638501139_13.png" + }, + { + "scene": "Dynamic Dance - Red and Gold", + "imagePrompt": { + "description": "A muscular African-American man is captured mid-dance, wearing a dramatic red and gold kimono-inspired outfit. The garment has flowing sleeves and an intricate pattern, reminiscent of both Japanese and African textile artistry.", + "style": "Dramatic Photography - influenced by Japanese Ukiyo-e", + "lighting": "Soft but powerful studio lighting with subtle shadows to emphasize the dancer's physique.", + "outfit": "A red and gold kimono-inspired outfit. The garment is loose, flowing, and dramatic, allowing for freedom of movement. It has a mixture of Japanese patterns and African textile designs.", + "location": "Neutral gray background", + "poses": "The dancer is in a dynamic pose – one arm raised, the other extended with the hand reaching forward. He' the body is arched slightly to emphasize his physique, with both feet firmly grounded.", + "angle": "Full-length shot, eye-level." + }, + "videoPrompt": "A troupe of dancers, dressed in red and gold kimono-inspired outfits, burst into a dynamic dance scene. The dancer starts in the pose, then transitions to a fast paced dance sequence that blends contemporary and traditional Japanese dance styles. The camera follows the dancer as they move around with rhythmic speed. ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638501228_14.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of seven dancers in a performance setting, wearing business casual attire.", + "style": "Contemporary Photography", + "lighting": "Dramatic stage lighting with spotlights and shadows.", + "outfit": "Gray suits with black shorts and white socks. Each dancer has a gray suit and black shoes.", + "location": "A stage in front of a backdrop that looks like a brick wall or building facade, complete with some industrial elements.", + "poses": "The dancers are in dynamic poses – some standing, some kneeling, others actively dancing. One dancer is holding what appears to be a microphone.", + "angle": "Slightly low angle, emphasizing the dynamism of the dance." + }, + "videoPrompt": "A group of dancers perform a high-energy dance routine with an upbeat rhythm and jazz music. They move from dynamic poses into flowing transitions, building into a crescendo where the lead dancer takes center stage while holding a microphone. The scene is vibrant, energetic and fast-paced.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\262756959505097956_1758638502496_19.png" + }, + { + "scene": "Youthful Hip-Hop Dance Crew", + "imagePrompt": { + "description": "A group of six young people are performing a hip-hop dance in a stage setting.", + "style": "Realistic, candid photography with a focus on youthful energy.", + "lighting": "Warm and bright overhead lighting, creating dramatic shadows.", + "outfit": "Mix of 90s inspired streetwear: basketball jerseys, tracksuits, hoodies, baseball caps. A mix of vibrant colors like purple, orange, and blues.", + "location": "A stage with a gray backdrop, likely a theater or performance space", + "poses": "Dynamic poses suggesting they are mid-dance routine. Some are in stance, others are reaching out with energy.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "The hip-hop dance crew explodes into a fast-paced dance sequence! The lead dancer starts with an intricate footwork routine then moves to a combination of breakdancing and popping. Camera follows them in dynamic motion. Add some smooth transitions between dancers, making it a vibrant choreography.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638421454_5.png" + }, + { + "scene": "Dynamic Dance Rehearsal", + "imagePrompt": { + "description": "A group of dancers is performing a contemporary dance routine in a brick warehouse space. A young female dancer takes center stage, while others surround her and mirror her movements. The scene has dynamic energy with both male and female dancers.", + "style": "Candid photography, documentary style", + "lighting": "Warm overhead lighting, creating shadows on the floor and adding dimension to the dance space.", + "outfit": "Variety of casual outfits – black t-shirts, shorts, leggings, baseball caps. The young dancer wears a short denim outfit with a white crop top.", + "location": "A brick warehouse or loft space, with wooden floors and exposed brick walls.", + "poses": "The dancers are in motion, performing a contemporary dance routine. A mixture of energy – dynamic poses that convey rhythm and movement.", + "angle": "Wide shot capturing the whole group, slightly from the dancer's perspective." + }, + "videoPrompt": "A fast-paced video shows the dance team transitioning into a full dynamic dance sequence with more dancers joining in. The music builds to an upbeat tempo. Use quick cuts between dancers, focusing on their energy and coordination.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638421986_7.png" + }, + { + "scene": "Dramatic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing on a stage, lit with blue light. They're in various poses - some seated or kneeling, others standing and reaching.", + "style": "Contemporary Photography", + "lighting": "Blue ambient lighting creates a dramatic mood, with shadows adding depth.", + "outfit": "Mix of casual and modern outfits – black shirts/tops and light beige trousers dominate the ensemble. Some dancers wear clothes with 'UNITED' printed on them.", + "location": "A stage, likely within a theatre or performance space.", + "poses": "Dynamic range - from seated/kneeling to standing with reaching arms – suggesting a complex dance sequence. The dancers are in both individual and group poses", + "angle": "Slightly low angle, giving the performers prominence." + }, + "videoPrompt": "The dancers transition seamlessly from their current positions into a fast-paced, energetic dance routine set to an upbeat electronic track. They move with fluidity and power, building on the drama of the initial scene. The choreography emphasizes both unity and individual expression, reflecting themes of strength and resilience.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638423623_14.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A large group of dancers perform a hip-hop inspired routine on stage. They are dressed in dark blue jeans and white tops, with some wearing crowns or headpieces. The stage is lit with cool blue light creating a dramatic effect.", + "style": "Photography - Stage Performance", + "lighting": "Cool Blue, Dramatic", + "outfit": "Dark blue jeans, white tops, some dancers wear crowns/headpieces. Casual but stylish.", + "location": "Indoor stage with audience", + "poses": "Dynamic dance poses; multiple dancers in a variety of positions - arms extended, legs bent. Energetic and expressive.", + "angle": "Slightly front-on perspective, allowing the viewer to see most of the group." + }, + "videoPrompt": "The hip-hop dance crew breaks into a more complex routine with an emphasis on rhythm and synchronization! The dancers move in unison, building from the base positions to a dynamic burst of energy. Add some dramatic headpieces and build suspense for the ending!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638423953_15.png" + }, + { + "scene": "Dynamic Dance Crew", + "imagePrompt": { + "description": "A group of six young adults are posing in a hip-hop dance style, with bright colors and modern outfits.", + "style": "Modern photography with dynamic lighting.", + "lighting": "Dramatic multi-colored lighting - purples, greens, oranges - creating high contrast.", + "outfit": "Casual streetwear with a focus on comfortable and stylish clothing. There's a mix of hoodies, sweatpants, baseball caps, and bright colors.", + "location": "Studio setting with a white backdrop", + "poses": "Each person is in a different pose, adding to the dynamic feel. The poses are inspired by hip-hop dance moves.", + "angle": "Slightly low angle, eye level camera." + }, + "videoPrompt": "The dance crew breaks into a fast-paced and energetic hip-hop dance routine with a focus on smooth transitions between different movements. They're in sync, but each person has moments to showcase their own unique style. The music is upbeat and modern.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638424559_17.png" + }, + { + "scene": "Urban Dance Crew Pose", + "imagePrompt": { + "description": "A group of eight people in a dance crew pose, wearing stylish outfits with masks.", + "style": "Modern/Hip-Hop Photography", + "lighting": "Dramatic and somewhat gritty; the light is focused on the group, creating shadows.", + "outfit": "Mix of black and white, with gold accents. Members wear jackets, shirts, pants, and white shoes. Many members wear masks and caps.", + "location": "A brick wall indoor setting", + "poses": "A mix of dynamic poses – squatting, kneeling, standing; some are in hip-hop dance stances", + "angle": "Slightly low angle, giving the group prominence." + }, + "videoPrompt": "The crew breaks into a fast-paced Hip Hop dance sequence with fluid movements. The setting is a warehouse, and the music is energetic. They move from their current pose and transition into a dynamic dance routine that continues in an elegant way.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638424925_18.png" + }, + { + "scene": "Dynamic Breakdancing Performance", + "imagePrompt": { + "description": "A breakdancer is performing a complex move in the center of a room, surrounded by an audience. The floor is patterned with black and white squares. The dancer is mid-motion, his body is bent low to the ground as he reaches out.", + "style": "Candid Photography", + "lighting": "Dramatic overhead lighting, creating shadows and highlighting the dancer's form.", + "outfit": "Casual street wear - the dancer wears a peach colored shirt with jeans. Audience members have variety of outfits ranging from casual to semi-formal.", + "location": "Indoor performance space, possibly a gymnasium or dance studio", + "poses": "The main subject is in dynamic action – a breakdancer performing a complex move. The audience is watching attentively.", + "angle": "Slightly low angle, bringing the viewer into the performance." + }, + "videoPrompt": "A series of dancers build off each other with energetic breakdancing moves, using the patterned floor as a dynamic backdrop. Shots alternate between close-ups of the dancer’s face and wider shots showing the whole room. The music builds to a crescendo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\26388347810401564_1758638425636_22.png" + }, + { + "scene": "Elegant Dance Ensemble", + "imagePrompt": { + "description": "A striking black-and-white photograph featuring a group of nine dancers in a contemporary dance pose.", + "style": "Photorealistic, Dramatic", + "lighting": "Dramatic studio lighting with high contrast. The light source seems to be directly in front and slightly above, creating shadows and emphasizing the form of the bodies.", + "outfit": "Dancers are wearing minimal clothing – a mix of nude-toned leotards and a flowing dark skirt for the main dancer.", + "location": "A seamless white backdrop creates a minimalistic stage setting.", + "poses": "The dancers are arranged in layers, with the bottom dancer in a seated pose, supporting several others. They all have outstretched arms, creating a sense of fluidity and dynamism. The upper level dancers are more relaxed in their poses", + "angle": "Eye-level, frontal perspective" + }, + "videoPrompt": "A dynamic dance scene unfolds with the ensemble transitioning from the pose in the image into a flowing choreography that builds on the elegance of the moment. Each dancer takes turns to show a short solo dance and then blends into a more group oriented dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2674081014585117_1758639083930_0.png" + }, + { + "scene": "Elegant Ballet Dancers", + "imagePrompt": { + "description": "A group of young female ballet dancers posing for the camera. They are wearing black leotards and nude pointe shoes or ballet slippers. The dancers are arranged in two rows, with some kneeling and others standing, creating a dynamic composition.", + "style": "Photorealistic", + "lighting": "Soft, even lighting, creating good contrast to show details of the dancers’ forms and their facial expressions", + "outfit": "Black leotards with varying detail. Some have lace detailing on the chest. Nude ballet slippers or pointe shoes.", + "location": "A dance studio with a black backdrop", + "poses": "The dancers are in dynamic poses, some standing, others kneeling. Most have arms raised in classical ballet form. Their faces show confident and happy expressions.", + "angle": "Slightly elevated angle, giving a good view of the group." + }, + "videoPrompt": "A fast-paced dance scene unfolds with the dancers transitioning from their pose into a dynamic sequence, incorporating smooth turns and graceful leaps. The lights dim slightly as the dancers move in unison, performing a complex ballet routine with flowing movements. Music swells to create an energetic mood.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\2674081014585117_1758639084065_1.png" + }, + { + "scene": "Elegant Dance Troupe", + "imagePrompt": { + "description": "A large group of young women are posing in a studio setting, dressed in coordinated outfits.", + "style": "Contemporary photography with a focus on elegance and form.", + "lighting": "Soft, even lighting – possibly from overhead softboxes – creating minimal shadows.", + "outfit": "All dancers wear light tan/beige dresses with a fitted bodice and flowing skirt. Some have short sleeves while others have longer ones. The outfits are semi-formal, evoking a sense of understated grace.", + "location": "A simple white backdrop in a dance studio.", + "poses": "The group is arranged in layers, with some dancers seated or kneeling in the front and others standing in the back. They're mostly looking forward, with subtle variations in pose – some slightly turned, others directly facing the camera. There's an overall sense of stillness but readiness.", + "angle": "Frontal view, eye-level." + }, + "videoPrompt": "A dynamic dance scene following a contemporary piece, starting with the dancers now in flowing motion, building into a complex choreography that uses both smooth and energetic movements. The dance should transition from grounded stability to elegant fluidity, mirroring their costumes. Focus on intricate hand gestures and subtle facial expressions. Music is epic and atmospheric.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\27021666509682531_1758638957833_4.png" + }, + { + "scene": "A group of young female dancers", + "imagePrompt": { + "description": "A group of thirteen young women, likely dancers or models, are posed in a semi-circular formation. They all wear the same outfit: ribbed tan/beige tank tops and matching ribbed shorts with slight waistbands. Their hair is neatly styled, pulled back from their faces.", + "style": "Modern photography - clean lines, slightly dramatic.", + "lighting": "Soft, even lighting – creates a sense of elegance without strong shadows.", + "outfit": "Ribbed tan/beige tank tops and shorts. Minimalist and cohesive.", + "location": "A simple studio setting with a light beige backdrop.", + "poses": "The girls are posed in a semi-circular formation, facing the camera. They have slightly serious expressions.", + "angle": "Frontal – direct eye level." + }, + "videoPrompt": "A dynamic dance scene begins with the dancers transitioning from their static pose into a flowing modern dance routine. The music builds, and each dancer's individual grace is highlighted in a fast-paced sequence of movements. They are all in sync, building to a crescendo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\27021666509682531_1758638959637_10.png" + }, + { + "scene": "Human Stack - Left", + "imagePrompt": { + "description": "A large group of people are piled on top of each other in a human stack, creating a pyramid-like shape. They are all wearing similar outfits.", + "style": "Photorealistic", + "lighting": "Soft and even lighting, with subtle shadows", + "outfit": "Neutral toned clothing - primarily beige or light tan sweaters and dark pants, giving them an almost uniform look", + "location": "A neutral background; a seamless studio setting.", + "poses": "The subjects are arranged in a complex stack. Their faces are relatively calm, though some have slightly anxious expressions.", + "angle": "Straight-on, eye-level view." + }, + "videoPrompt": "The human pyramid begins to 'grow' – people emerge from the base of the pile, adding more layers and complexity as they transition into a dynamic dance. The dancers move in unison, blending a modern dance with an emphasis on both stability and fluidity.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\27021666509682531_1758638960511_13.png" + }, + { + "scene": "Dance Team Pose", + "imagePrompt": { + "description": "A group of thirteen young women are posing in a dance routine, wearing black crop tops and leggings.", + "style": "Photorealistic", + "lighting": "Natural daylight, slightly overcast", + "outfit": "Black sports bras and matching black leggings. Some have black mesh detailing on the upper part of their crop top.", + "location": "A paved waterfront area with a river in the background. A city skyline is visible across the water.", + "poses": "The dancers are arranged in various poses, creating depth and dynamism. Most are standing, while one dancer is kneeling in the front. They're all facing towards the camera.", + "angle": "Slightly low angle, giving a sense of power and presence." + }, + "videoPrompt": "The dance team transitions from their pose into a dynamic contemporary dance routine. The dancers move with fluid grace, blending strength and elegance. As they dance, their movements become more complex, incorporating turns, jumps, and flowing arm motions. The backdrop changes to show a vibrant city at dusk.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\27021666509682531_1758638960915_14.png" + }, + { + "scene": "Dance Class Warm-Up", + "imagePrompt": { + "description": "A group of young girls in black leotards are engaged in a dance warm up with their instructor.", + "style": "Photorealistic, Candid", + "lighting": "Soft and diffused lighting, creating a slightly dramatic feel.", + "outfit": "All the girls wear simple black leotards. The instructor wears a long black dress.", + "location": "A studio with a white backdrop.", + "poses": "The children are in various poses of dance warm-up, with raised arms and slight bends. The instructor is centered, facing the group.", + "angle": "Frontal, slightly low angle to emphasize the height of the dancers." + }, + "videoPrompt": "A dynamic sequence showing the girls transition from their warm up into a fluid dance routine. Start with a simple ballet movement then evolve into more complex choreography. Use soft music and create a sense of youthful energy and grace.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\27021666509682531_1758638961289_18.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of young dancers performing a hip-hop style routine with energy and enthusiasm.", + "style": "Photography - Studio, vibrant colors", + "lighting": "Bright, even lighting to highlight the performers and their costumes.", + "outfit": "All the dancers are wearing blue outfits. They consist of shorts or black pants and a blue top. Some have headbands and gloves.", + "location": "A dance studio with a dark floor", + "poses": "The dancers are in dynamic poses, suggesting energy and movement. There is one dancer central, and others surrounding him/her.", + "angle": "Slightly low angle to emphasize the performers' dynamism." + }, + "videoPrompt": "A fast-paced hip hop dance scene with the group of young dancers bursting into a complex routine! The dancers begin by performing their current poses then transition into more dynamic movements like spins, jumps, and freezes. They are set in an energetic dance studio.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638634500_10.png" + }, + { + "scene": "A Dynamic Group Pose", + "imagePrompt": { + "description": "A group of young kids are posing in a dynamic arrangement with bright red color dominating the image.", + "style": "Photography - studio portrait", + "lighting": "Bright and even lighting, creating minimal shadows.", + "outfit": "Most children wear red hats and either red or black clothing. Some have a kangaroo logo on their clothes.", + "location": "White background", + "poses": "A mix of dynamic poses: some kids are doing handstands, others are in crouching positions, while others are sitting or standing. A few kids are holding a kangaroo.", + "angle": "Full-frontal view with medium shot." + }, + "videoPrompt": "The group breaks into an energetic dance routine, incorporating breakdancing moves and synchronized gestures. They move around the red table, mimicking a kangaroo jump. The music is upbeat and dynamic, giving it a playful energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638635261_12.png" + }, + { + "scene": "Young Pilots", + "imagePrompt": { + "description": "A group of young children, dressed in matching olive-green flight suits, pose for a photo.", + "style": "Studio Photography – Professional", + "lighting": "Bright and even lighting, creating clean visibility.", + "outfit": "Matching olive-green flight suits with black boots. Each suit has a patch on the chest.", + "location": "White backdrop, studio setting", + "poses": "A mix of standing and crouching children, all in similar positions. They're posing as if they've just landed or are ready to take off.", + "angle": "Frontal view – straight-on perspective." + }, + "videoPrompt": "The kids burst into a dynamic dance routine mimicking the movements of pilots preparing for takeoff, with an energetic beat and quick cuts between the children. They transition from a pose as if they' 1000’s of feet up in the air to a playful dance that represents their journey.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638636546_17.png" + }, + { + "scene": "A Dynamic Dance Crew", + "imagePrompt": { + "description": "A group of seven people wearing full-body blue suits with white stripes, and black masks are posing in a dynamic dance scene.", + "style": "Retro/Hipster Photography", + "lighting": "Bright studio lighting, creating even illumination across the subjects.", + "outfit": "Full-bodied navy blue tracksuits, paired with white shoes. All crew members wear black masks that cover their heads and faces.", + "location": "A simple backdrop of a light-colored wall.", + "poses": "The group is arranged in a dynamic composition with several poses: some are pointing, some have fists raised, while others show hand gestures like thumbs up.", + "angle": "Slightly low angle, giving the crew prominence and dynamism." + }, + "videoPrompt": "A fast-paced dance routine set to upbeat hip hop music. The crew breaks into a synchronized dance using both their bodies as well as their hands with dynamic hand gestures. They transition between poses like 'thumbs up' or pointing while they are performing a short burst of energy dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638638378_24.png" + }, + { + "scene": "Dynamic Dance Team Pose", + "imagePrompt": { + "description": "A group of seven young girls are posing for a photograph, likely representing a dance team.", + "style": "Studio Photography – bright and clean with focus on the dancers.", + "lighting": "Bright, even lighting – giving the scene a cheerful feel", + "outfit": "Mix of black, red, and white in outfits. Some girls are wearing tight-fitting tops and skirts, others are wearing more casual pieces like shirts and shorts. There's a mix of both sporty and slightly retro styles.", + "location": "White backdrop – creating an isolated and clean space", + "poses": "A variety of poses: some dancers are in full stands, while others are kneeling or squatting. They have crossed arms to give the scene dynamic energy.", + "angle": "Waist-level shot with a front view." + }, + "videoPrompt": "The dance team bursts into an energetic routine! Starting with a fast tempo and building up to a more complex choreography, each girl gets a chance to showcase her individual flair. They transition between both sporty and retro styles throughout the dance, mirroring their outfits.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638638972_26.png" + }, + { + "scene": "A Dance Scene", + "imagePrompt": { + "description": "A group of young girls are posing for a photo in colorful outfits.", + "style": "Studio Photography, bright and cheerful", + "lighting": "Soft, even lighting. It's a well-lit studio shot.", + "outfit": "The girls mostly wear colorful patchwork costumes with red shoes. One girl is wearing a pink princess dress.", + "location": "A white backdrop in a dance studio.", + "poses": "The majority of the girls are standing with arms raised, holding their hands in circular shape. One girl stands central as if presenting herself.", + "angle": "Frontal view, eye-level." + }, + "videoPrompt": "A dynamic dance scene! The music swells, and the girls begin a lively dance routine. They move from a line to a circle, then split into pairs doing a playful dance with a colorful patchwork theme. One girl transitions smoothly from leading the group to a spotlight moment.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638639410_27.png" + }, + { + "scene": "Dynamic Dance Duo", + "imagePrompt": { + "description": "A young boy and a woman are performing a hip-hop dance pose in front of a white backdrop.", + "style": "Commercial Photography/Dance Studio Style", + "lighting": "Bright, even lighting with minimal shadows. It's likely a studio setup using softbox lights.", + "outfit": "Both subjects wear purple t-shirts and white pants. The boy has a baseball cap, while the woman wears a baseball cap as well. They have a logo on their clothes.", + "location": "Dance Studio with a white backdrop", + "poses": "The boy is in an expansive pose with arms outstretched, while the woman is leaning down to create a dynamic frame. They are both energetic and confident.", + "angle": "Full-front view with a slight emphasis on the subjects." + }, + "videoPrompt": "A fast paced hip-hop dance routine starts as the duo transitions into more complex moves, building up to an energetic finale. The background changes from white to a colorful dance floor, and some dancers join in.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638639817_28.png" + }, + { + "scene": "Sparkling Dance Trio", + "imagePrompt": { + "description": "Three young female dancers stand in a row, facing the camera with confident expressions.", + "style": "Dance photography - commercial/studio style", + "lighting": "Bright and even lighting, creating a clean look.", + "outfit": "Each dancer wears a sparkly long-sleeved top (teal, red, silver), black pants with a wide leg and a silver shoe. Each has matching headbands.", + "location": "White backdrop in a dance studio", + "poses": "The dancers stand with arms crossed, in a dynamic pose.", + "angle": "Frontal perspective - eye level." + }, + "videoPrompt": "Fast-paced, energetic hip-hop dance routine. The trio starts with synchronized movements and transitions into individual freestyle sections. Add some dramatic spotlights. Focus on sleekness and power!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\288863763623046436_1758638640185_29.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of five women are silhouetted against a bright backdrop, standing in a line with an almost mirrored floor.", + "style": "Dramatic, high-contrast photography.", + "lighting": "Strong overhead lighting with spotlights creating dramatic shadows and reflections. Bright but subtle gradient from top to bottom", + "outfit": "Short black outfits, likely dancewear or stage costumes. A mix of sleek and playful.", + "location": "A stage or studio with a reflective floor.", + "poses": "Each woman is in a different pose, suggesting movement and energy. The poses are dynamic and expressive, like they're mid-dance.", + "angle": "Frontal view, slightly low angle to emphasize the dancers." + }, + "videoPrompt": "The five women explode into a fast-paced dance routine, incorporating hip-hop and contemporary styles. They move as one unit, with each dancer getting a moment to shine in the spotlight. The scene is energetic and vibrant, building to a climax where they are all together in a dynamic pose.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297378381665089416_1758638825106_19.png" + }, + { + "scene": "Dynamic Duo Dance", + "imagePrompt": { + "description": "A black and white photograph of a male and female dancer in mid-motion, appearing to be engaged in a dynamic dance.", + "style": "Black and White Photography, Action Shot", + "lighting": "Bright, even lighting with some shadows giving depth.", + "outfit": "The woman is wearing a black dress and shoes. The man wears a light colored button-down shirt, dark pants, and shoes.", + "location": "A simple stage with a dark background.", + "poses": "Both dancers are leaping in motion with arms outstretched. They appear to be engaged in energetic dance movements.", + "angle": "Full shot, slightly from the side." + }, + "videoPrompt": "The duo continues their dynamic dance, building into an exciting duet that shows a progression of emotion and connection between them. The music starts soft then builds to a crescendo with dramatic lighting changes. They move across the stage in a fluid motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297378381665089416_1758638825491_20.png" + }, + { + "scene": "Dynamic Soccer Game", + "imagePrompt": { + "description": "A black and white image depicting a soccer game in progress. Five players are captured, their forms mostly as shadows, suggesting dynamic movement.", + "style": "Black and White Photography with Dynamic Action", + "lighting": "Strong overhead lighting creates distinct shadows, emphasizing the action.", + "outfit": "Casual clothing, likely athletic wear - shorts and t-shirts", + "location": "A concrete soccer pitch or court.", + "poses": "The image is filled with dynamic poses. One player kicks the ball, another defends, and a third watches intently. There's an overall sense of energetic movement.", + "angle": "Overhead perspective, giving a good view of the whole scene." + }, + "videoPrompt": "A group of dancers performs a modern dance routine inspired by a soccer game. The dancers move with fast and fluid motions, mirroring how players would pass and kick the ball. The dance starts with one dancer kicking an imaginary 'soccer ball' and moves into energetic spins and jumps. Bright colors add to the vibrant energy. No slow motion!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638991403_5.png" + }, + { + "scene": "Basketball Court Action", + "imagePrompt": { + "description": "A top-down view of a basketball court with three people in casual outfits playing a game or engaged in a dynamic scene. One person is reaching for the basketball, while another is kneeling and looking toward the ball.", + "style": "Realistic Photography", + "lighting": "Natural light, creating shadows on the court surface.", + "outfit": "Casual streetwear including shorts, t-shirts, and jeans. Some people are wearing sunglasses.", + "location": "Outdoor basketball court, with a clear backdrop.", + "poses": "Dynamic action: one person is reaching for the ball, another kneeling, and others in relaxed positions. One person is laying on the ground.", + "angle": "Top-down perspective – aerial view." + }, + "videoPrompt": "A dynamic dance scene, starting with the basketball players moving into a hip-hop dance routine. The dancers are energetic, using the whole court to create a vibrant, fast-paced movement. One dancer reaches for the ball while doing a spin, another is kneeling and reaching for it. All of them are in sync, creating an energetic vibe.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638992068_9.png" + }, + { + "scene": "New York City Street - Kids Playing", + "imagePrompt": { + "description": "A vibrant color photograph of a group of young kids playing a game, likely hopscotch, in the middle of a New York City street. The scene is bustling with older cars and buildings lining both sides.", + "style": "Mid-century modern photography - reminiscent of Saul Leiter or Robert Frank", + "lighting": "Natural light, slightly warm tone with some contrast, suggesting early afternoon.", + "outfit": "Typical mid-20th century clothing – boys wear shorts and button-down shirts, while others have simple dresses. The style is casual and practical.", + "location": "A bustling New York City street, lined with brick buildings. The architecture suggests a working-class neighborhood.", + "poses": "Dynamic poses - the kids are in motion, playing hopscotch. One is actively jumping, while others look at him. Their bodies reveal their energy and playfulness", + "angle": "Slightly elevated perspective, giving a broad view of the scene." + }, + "videoPrompt": "A dynamic dance sequence unfolds in the street, beginning with the kids finishing their hopscotch game. The music swells into jazzy swing music as dancers begin to interact with the cars and buildings. The dance is energetic and quick, mirroring the kid' that are playing hopscotch. It transitions from a playful hopscotch dance routine to full-blown dynamic dance scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638992461_10.png" + }, + { + "scene": "Dynamic Dance Circle", + "imagePrompt": { + "description": "A group of eight people are arranged in a circle, almost as if suspended mid-air. Each person is facing upwards with their back towards the viewer, creating a dynamic and slightly unusual composition.", + "style": "Fashion Photography - Editorial", + "lighting": "Soft, diffused lighting with a blue backdrop giving it an overall cool tone.", + "outfit": "The group are wearing a mix of contemporary clothing: plaid shirts, patterned orange dresses, denim jeans and black jackets. The outfits have a fashionable edge, suggesting modern styling.", + "location": "Abstract - the location is fairly undefined, the light blue backdrop suggests it could be open air.", + "poses": "Each person is in a dynamic pose with their bodies tilted upwards as if engaged in a dance or movement sequence.", + "angle": "Low angle looking up at the group, giving them a sense of power and dynamism." + }, + "videoPrompt": "A fast-paced dance scene. The group bursts into energy, performing a complex choreography that flows from one dancer to another, with each person taking turns leading the motion. There is a lot of dynamic movement, incorporating contemporary dance styles. Each dancer has a short moment in the spotlight before the next dancer takes over.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638993309_15.png" + }, + { + "scene": "Blended Motion - Runners in Time", + "imagePrompt": { + "description": "This image depicts multiple runners blended into a blurred motion effect, creating an almost ghostly feel. The runners are wearing shorts and what appears to be tank tops.", + "style": "Photorealistic with a blur/motion effect", + "lighting": "Soft, diffused lighting - giving the scene a warm tone.", + "outfit": "Athletic wear - specifically running shorts and tank tops.", + "location": "Outdoors, potentially on a track or field.", + "poses": "Dynamic action - runners in full stride with blurred motion indicating speed.", + "angle": "Slightly low angle, capturing the runner's forward momentum." + }, + "videoPrompt": "A dynamic dance scene featuring multiple dancers who transition between graceful and energetic movements. The dancers begin as individual forms and blend into a unified group, mimicking the runners blurred motion effect. As they move, their costumes shift colors, mirroring the orange and white tones in the image.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638993547_16.png" + }, + { + "scene": "Energetic Dance Crew", + "imagePrompt": { + "description": "A group of young people are joyfully dancing in front of a vibrant, colorful graffiti mural.", + "style": "Realistic photography with a youthful energy.", + "lighting": "Bright and natural lighting, giving the scene vibrancy.", + "outfit": "Casual streetwear; including denim jeans, crop tops, and bright colored pants. The outfits have a retro vibe.", + "location": "An outdoor location in front of a colorful graffiti mural.", + "poses": "Dynamic dance poses with energy and enthusiasm. A mix of individual movements and group action.", + "angle": "Eye-level perspective to capture the full scene." + }, + "videoPrompt": "A fast-paced, energetic dance routine unfolds in the urban setting. The dancers break into a more complex sequence with both modern and classic hip hop moves. They move from a choreographed group to a dynamic duo, then back into the whole crew, all set to an upbeat beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638993655_17.png" + }, + { + "scene": "Urban Dance Performance", + "imagePrompt": { + "description": "A young man is performing a breakdance move in the foreground, while three others stand as observers. The background features modern buildings, creating an urban setting.", + "style": "Candid photography with a dynamic feel.", + "lighting": "Natural daylight with slightly diffused shadows.", + "outfit": "Casual streetwear; the main dancer wears denim overalls and a baseball cap. Others wear a mix of striped and solid-colored outfits.", + "location": "An urban street in front of modern buildings, likely a city center.", + "poses": "The main subject is in a dynamic breakdance pose – a headspin. The others are standing in various poses, watching the performance.", + "angle": "Slightly low angle to emphasize the dancer's energy and the surrounding architecture." + }, + "videoPrompt": "A group of dancers transition from this breakdance into a full routine with urban hip-hop elements. The dance starts with a burst of energy, then transitions into a more dynamic scene, where each dancer takes turns in spotlight. ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638994599_18.png" + }, + { + "scene": "A Vibrant Dance Battle", + "imagePrompt": { + "description": "A large crowd of people are gathered in a brightly lit arena, witnessing a dynamic dance battle between two dancers on a circular stage. The scene is bathed in green light, giving it an energetic and vibrant feel.", + "style": "Photo-realism with dynamic lighting", + "lighting": "Dramatic overhead lighting, predominantly green, creating a sense of energy and excitement. Some areas are illuminated by spotlights.", + "outfit": "A mix of casual and formal outfits; many people wear dark suits or dresses but the color is dominated by green.", + "location": "An indoor arena, potentially a concert hall or large event space.", + "poses": "The dancers are in dynamic poses, actively competing. The crowd is enthusiastic and engaged, with some people watching intently while others are dancing.", + "angle": "Overhead shot (aerial) giving the sense of grand scale." + }, + "videoPrompt": "The dance battle intensifies! Two dancers go head-to-head in a vibrant dance floor. They start with a hip-hop beat and transition to a dynamic mix of contemporary, breakdance, and jazz styles. The crowd cheers as they begin a energetic dance competition.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638994820_20.png" + }, + { + "scene": "A Dynamic Olympic Runner", + "imagePrompt": { + "description": "The image is a vibrant poster for a Japanese television program, likely related to the Olympics. It features a central runner surrounded by multiple copies of himself in various stages of the run. The duplicates are semi-transparent, giving a ghost-like effect.", + "style": "Japanese Poster/Art Style - reminiscent of traditional Japanese design with modern elements", + "lighting": "Dramatic lighting – bright and golden, creating strong contrasts between light and shadow.", + "outfit": "The runner wears a classic white running uniform with black shorts. He also has a pair of black running shoes.", + "location": "A solid gold background serves as the location.", + "poses": "The main subject is in full stride, actively running. The duplicates are in various phases of the run - some are dropping items (like a bottle) or starting their run.", + "angle": "Frontal perspective with slight dynamic angle." + }, + "videoPrompt": "A dance troupe consisting of several runners bursts into energetic dance, using smooth and fast transitions. The dancers move in synchrony, mimicking the runner’ has multiple stages of his stride. It is set to upbeat music with a Japanese feel.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638996212_26.png" + }, + { + "scene": "The Bird of Paradise", + "imagePrompt": { + "description": "A black and white image depicting a person dressed as a bird in a crowded indoor space, possibly a shopping mall or event hall. The bird is the primary focus, with large wings dominating the frame. A group of people are seated or standing behind it, watching its performance.", + "style": "Monochrome photography, reminiscent of early 90s street culture", + "lighting": "Soft, diffused lighting creating dramatic shadows. A mix of light and shadow adds dimension to the scene.", + "outfit": "The 'bird' is wearing a full body suit with large wings. The people surrounding it are in casual clothing – jeans, t-shirts, sweaters.", + "location": "A spacious indoor setting, likely a shopping mall or event hall. There’s visible signage and details of the location indicating a retail or common area", + "poses": "The 'bird' is performing a dynamic dance move, with its body in motion. People are seated or standing watching it, some in relaxed poses.", + "angle": "Slightly low angle, giving the bird prominence and a sense of dynamism." + }, + "videoPrompt": "A dancer wearing an elaborate feathered costume bursts into a fast-paced dance routine, blending hip hop moves with graceful avian movements. The scene is set in the mall, so the dancers use the space to create dynamic flow with onlookers.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638996467_27.png" + }, + { + "scene": "Crosswalk Momentum", + "imagePrompt": { + "description": "A blurred image of a crosswalk with pedestrians. A young man stands in the center, holding a skateboard. He's wearing a tan coat and dark pants, standing amongst a blur of people walking across a street.", + "style": "Photorealistic, with motion blur", + "lighting": "Warm, slightly muted lighting giving it a nostalgic feel.", + "outfit": "The young man wears a light-colored jacket with dark pants. The other pedestrians are wearing a variety of casual clothing.", + "location": "A busy urban crosswalk during the day.", + "poses": "The primary subject is in a relaxed stance, holding his skateboard. Surrounding him are blurred figures indicating motion.", + "angle": "Slightly overhead perspective, giving a view of the entire crosswalk." + }, + "videoPrompt": "A dynamic dance scene begins with the young man executing a smooth trick on his skateboard in the center of the crosswalk. The surrounding pedestrians join in a fluid dance routine, their movements matching the rhythm of city life. They begin to move and dance in a fast paced beat, as if the main actor has released energy into the street.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638996711_29.png" + }, + { + "scene": "Automotive Elegance", + "imagePrompt": { + "description": "A black and white photograph of a woman surrounded by the wreckage of a car, creating an elegant portrait.", + "style": "Dramatic Black & White Photography - reminiscent of 70s fashion photography with a modern edge", + "lighting": "Strong contrast between light and shadow, giving a dramatic feel. Overall soft lighting that creates a moody atmosphere.", + "outfit": "The woman is wearing an elaborate outfit – long sleeves with a deep V-neck, and high waisted bottoms. Her attire is both fashionable and evocative of the time period.", + "location": "A studio setting, perhaps a warehouse or industrial space, providing a backdrop for the car wreckage", + "poses": "The woman sits amidst the debris, leaning against the car parts in a relaxed but powerful pose. She is seated with confidence, surrounded by automobile elements.", + "angle": "Medium shot – focuses on the subject and her immediate surroundings, allowing details to be seen." + }, + "videoPrompt": "Dynamic dance scene: The woman is a mechanic who lives amongst the car wrecks in a modern industrial space. She begins a dynamic dance routine with smooth movements, using both car parts as props for her dance, moving from elegant and sensual, into powerful and energetic. Her dance starts with soft movements, then evolves into more intense, fast-paced motions, almost as if she is battling the wreckage. The camera follows her closely, showing the elegance of her form amongst the industrial environment.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638996830_30.png" + }, + { + "scene": "Ephemeral Struggle", + "imagePrompt": { + "description": "Three dancers in a contemporary dance setting are engaged in a physical struggle against an unseen force, represented by a large black sketch on the wall. They appear to be trying to either escape or be contained by the sketch.", + "style": "Contemporary Dance Photography", + "lighting": "Natural light with slightly cooler tones, creating a sense of drama and effort.", + "outfit": "All three dancers wear sleek black form-fitting outfits, enhancing their silhouettes and emphasizing the dance's physicality.", + "location": "A simple studio space with a wooden floor, and a backdrop with some aging texture. It creates a minimalist stage for the dancers.", + "poses": "The dancers are in dynamic poses, as if actively engaged in pulling themselves forward or backwards against the large sketch on the wall.", + "angle": "Medium shot from waist-up showing all three dancers." + }, + "videoPrompt": "The dancers begin to embody the sketched lines, moving fluidly between them. A more energetic dance is happening with a dynamic and powerful tempo. Their movements become increasingly frantic as they attempt to escape or be consumed by the sketch, culminating in an elegant dance that finishes with the dancers becoming part of the sketch itself.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638996933_31.png" + }, + { + "scene": "A Line of Models", + "imagePrompt": { + "description": "A series of six male models are arranged in a line, each progressively more facing the viewer.", + "style": "Fashion Photography - Modern", + "lighting": "Soft natural light with subtle shadows.", + "outfit": "Each model wears a pink jacket and tan trousers. The outfit has a semi-formal look with a base layer of white shirt. They're all wearing black sandals.", + "location": "A concrete or stone wall serves as the backdrop, giving it a modern urban feel.", + "poses": "The models are arranged in a walking pose, creating a dynamic line.", + "angle": "Frontal perspective with slight focus on the centre of the line." + }, + "videoPrompt": "A dynamic dance scene featuring the models. Starting with a simple walk, they move into an energetic and modern dance, which is set to upbeat music, utilizing the whole space in front of the stone wall. The final image should show them all moving in unison.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\297589487900599930_1758638998531_37.png" + }, + { + "scene": "Dynamic Duo", + "imagePrompt": { + "description": "Two young women stand back-to-back in a dynamic pose, as if they're about to engage in an action or dance. One is darker skinned with curly hair and wears a black leather jacket, while the other has red hair and a grey top.", + "style": "Fashion editorial/modern", + "lighting": "Bright and even lighting, creating clear visibility of both subjects.", + "outfit": "Both women are wearing stylish outfits. The darker skinned woman is in a black leather jacket and jeans, while the redhead wears a grey top and dark bottoms.", + "location": "A white background creates a minimalist studio setting.", + "poses": "The darker skinned woman points forward with one hand, while the redhead has an arm raised as if gesturing. They are both in dynamic poses with their upper bodies rotated.", + "angle": "Straight-on frontal view." + }, + "videoPrompt": "Fast-paced dance scene, set to a rhythmic beat, showing the two women engaging in a competitive dance battle. Start with them facing each other then move into a fluid dance routine that builds in intensity. Use quick cuts and dynamic camera angles.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\308285537014131834_1758638380327_1.png" + }, + { + "scene": "Dynamic Yellow-Suited Scene", + "imagePrompt": { + "description": "A young person is frozen in a dynamic pose, appearing to be mid-motion or 'superhero' style. They are wearing goggles and a bright yellow jumpsuit with black accents, giving them a playful yet stylish look.", + "style": "Modern, slightly dramatic photography. The image has strong contrast and an almost cinematic quality", + "lighting": "Bright, natural lighting. There is some subtle shadow casting but overall the scene is brightly lit", + "outfit": "A bright yellow jumpsuit/tracksuit with black accents and goggles. It’s a playful or sporty look.", + "location": "A paved road in front of a modern building. The background features architectural details, suggesting an urban environment.", + "poses": "The subject is frozen mid-motion, leaning forward as if 'flying' or attempting to pull themselves forward", + "angle": "Low angle shot with a slight tilt. It gives the impression that the person is both powerful and playful." + }, + "videoPrompt": "A dynamic dance scene in a bustling urban environment. The subject dances with energy, transitioning between poses using fluid motions and breaks as if frozen in moments of motion. Music: A fast-paced beat with strong bass.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\308285537014131834_1758638381139_10.png" + }, + { + "scene": "Urban Dance", + "imagePrompt": { + "description": "A young woman with vibrant red hair squats in the middle of a busy city street. She's wearing a full grey jumpsuit, and translucent white sneakers. The image has a slight fisheye effect, giving it an interesting perspective.", + "style": "Modern photography, slightly edgy", + "lighting": "Bright daylight, with some contrast between light and shadow.", + "outfit": "Full grey jumpsuit, casual streetwear, white sneakers.", + "location": "A bustling city street, likely a main road with buildings and shops.", + "poses": "Squatting, dynamic pose, looking directly at the camera.", + "angle": "Low angle fisheye perspective." + }, + "videoPrompt": "The girl transitions into an energetic dance routine. She starts with quick movements that match the beat of a pop song. The scene cuts to wide shots showing her in the middle of several dancers, all wearing similar outfits. The camera pans and zooms, using smooth transitions to show her skill and energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\308285537014131834_1758638381695_15.png" + }, + { + "scene": "Masked Dancers", + "imagePrompt": { + "description": "A group of dancers are clustered together in a dramatic scene, most wearing white masks. They appear to be performing a dance or stage performance.", + "style": "Dramatic and artistic photography, resembling a modern dance production.", + "lighting": "Dimly lit with subtle back lighting, creating shadows and highlighting the forms", + "outfit": "The dancers wear flowing garments in earthy tones, predominantly browns and blacks. Some are wearing white outfits as well. All clothing is smooth and elegant.", + "location": "A dark stage or studio, with a backdrop of smoke to create depth.", + "poses": "Dancers have dynamic poses - some are reaching upward while others hold each other in the dance. They convey emotion through their movements despite wearing masks", + "angle": "Slightly low angle looking up at the dancers." + }, + "videoPrompt": "A group of dancers, both masked and unmasked, perform a dynamic modern dance routine to a haunting orchestral score. The dance begins with the dancers in tight formation, then evolves into more expansive movements that mirror their emotions. One dancer leads in an expressive solo, then is joined by others as they move through flowing transitions.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030975931138_1758638929771_2.png" + }, + { + "scene": "Dance Rehearsal", + "imagePrompt": { + "description": "A wide shot of a dance troupe rehearsing in a spacious studio. Dancers are scattered throughout the gray floor, some sitting, others lying down, and still others performing dynamic movements.", + "style": "Contemporary Photography", + "lighting": "Overhead fluorescent lighting with natural light from large windows.", + "outfit": "Casual dancewear - variety of colors and styles. Mostly dark or muted tones with splashes of blue and yellow.", + "location": "Large dance studio, possibly a professional rehearsal space.", + "poses": "A mix of stillness and dynamic movement. Dancers are in various poses – sitting, lying down, bending, and performing active dance moves. They appear to be mid-rehearsal.", + "angle": "Overhead aerial shot, looking slightly downward." + }, + "videoPrompt": "The dancers transition from a grounded position into an energetic burst of contemporary movement, flowing through the space with fluid grace. A spotlight focuses on one dancer as they lead the group in a dynamic dance sequence, building to a crescendo. The music is percussive and rhythmic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030975931138_1758638930288_4.png" + }, + { + "scene": "Dance Rehearsal - Dynamic Pyramid", + "imagePrompt": { + "description": "A group of dancers are performing a dance routine in a brightly lit indoor space, likely a dance studio. They've formed a human pyramid with one dancer at the top.", + "style": "Photorealistic", + "lighting": "Bright and even lighting, creating a good contrast for the dancers.", + "outfit": "Casual athletic wear - mix of shorts, leggings, tank tops and t-shirts. Colors include black, grey, pink, blue, green and white.", + "location": "Indoor dance studio with a grey floor", + "poses": "The dancers are in dynamic poses; some are reaching up to support the dancer at the top, while others are supporting the base of the pyramid. The dancer on top is in an expressive pose.", + "angle": "Slightly overhead perspective, giving a good view of the whole pyramid." + }, + "videoPrompt": "The dancers continue their dynamic dance with flowing transitions from the human pyramid into a series of quick turns and fluid movements, showcasing their strength and coordination. The music swells to match the energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030975931138_1758638930874_6.png" + }, + { + "scene": "Human Connection & Tension", + "imagePrompt": { + "description": "A group of approximately ten people are engaged in a contemporary dance performance. The central figures are locked in an intricate physical connection, supporting each other in a dynamic pose.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic and focused lighting; warm tones with cool shadows.", + "outfit": "Casual but coordinated clothing - mostly neutral colours like greys and browns. Some dancers wear red or light tan coloured outfits, giving the image a sense of both unity and individuality.", + "location": "A minimalist stage setting, likely a black box theatre, with a smooth white floor.", + "poses": "The central group is in an active pose that suggests weight sharing and connection. A secondary group stands in the background, observing. The dancers are dynamic and expressive, using both strength and fluidity.", + "angle": "Slightly low angle, giving the scene a sense of power and immediacy." + }, + "videoPrompt": "The dancers build on their current pose, transitioning into a fluid sequence where they create a 'human chain' that snakes across the stage. They move in unison, driven by rhythm and a subtle soundscape. The dance culminates with them falling to the floor as one, then rising again as individuals.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030975931138_1758638931087_8.png" + }, + { + "scene": "Dramatic Dance Performance", + "imagePrompt": { + "description": "A stage with a row of dancers in various positions, all facing forward. A central figure stands prominently, performing an expressive dance. The scene is set against a dark backdrop.", + "style": "Photorealistic", + "lighting": "Warm and dramatic lighting, creating shadows on the stage floor.", + "outfit": "All dancers are wearing black outfits that compliment their bodies.", + "location": "A professional theatre or dance stage with a dark background.", + "poses": "The dancers are in dynamic poses. Some are kneeling, others have arms raised, and all show expressive body language.", + "angle": "Slightly elevated angle, giving a good view of the entire row of dancers." + }, + "videoPrompt": "A sweeping camera shot follows the central dancer as she begins a powerful dance sequence with fluid motions. The other dancers respond in unison, creating an energetic and dynamic flow. As they move forward, their black outfits become more visible in the light, showcasing their movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030975931138_1758638932478_11.png" + }, + { + "scene": "The Quintessential Core", + "imagePrompt": { + "description": "A dramatic image featuring a central figure surrounded by four identical figures in a circular arrangement. All subjects are nearly nude, adorned with red tendrils that look like veins or vines.", + "style": "Dramatic and theatrical; reminiscent of a stage performance.", + "lighting": "Warm orange-red lighting creates a halo effect behind the figures, emphasizing their forms. The foreground is subtly lit to show detail.", + "outfit": "Nearly nude with black skin tight outfits; red tendrils act as both clothing and symbolic connections.", + "location": "A stage setting, likely with a white or light-colored floor.", + "poses": "The figures are in dynamic poses – arms outstretched, bodies contorted, and facing forward. The central figure is slightly more prominent, standing at the center of the ring.", + "angle": "Frontal view; straight on to emphasize symmetry." + }, + "videoPrompt": "A fast-paced dance scene with the quintet performing a fluid routine, building from a tight circle to an expansive spiral. The dancers move in unison, mimicking flowing vines and capillaries. The music is rhythmic and dramatic, starting with a slow beat then builds up into a dynamic dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030977678864_1758638720648_10.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers is captured in a dramatic dance performance, with focus on the central dancer.", + "style": "Contemporary Photography", + "lighting": "Warm, golden lighting creating strong shadows and highlights. Dramatic side lighting.", + "outfit": "Neutral tones - beige or light tan, with loose fitting clothing, likely pants and tops. Some dancers wear a simple outfit.", + "location": "A dark stage or dance studio.", + "poses": "Dynamic poses showing fluid movement. Dancers are in mid-movement; arms raised, bodies angled, suggesting energy and emotion.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A group of dancers continues their dynamic dance performance, with a focus on smooth transitions between modern and energetic movements. The camera follows them as they move across the stage in sync, building to a crescendo of emotion and rhythm.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3237030977678864_1758638721055_14.png" + }, + { + "scene": "Urban Dance Battle", + "imagePrompt": { + "description": "A vibrant image depicting a hip-hop dance battle in an indoor urban setting.", + "style": "Realism with a touch of dynamic energy, similar to a promotional poster for a video game.", + "lighting": "Combination of bright overhead lighting and shadow from the dancers creating contrast", + "outfit": "A mix of hip-hop fashion. Includes: baseball caps, sneakers, t-shirts, shorts, tight pants, and bright yellow accents.", + "location": "An indoor space that looks like a concrete underpass or parking garage, with graffiti in the background", + "poses": "The main focus is on two dancers; one is doing an acrobatic move (likely a headspin) while another stands dynamically. Other people are watching and dancing.", + "angle": "Slightly low angle, creating a dynamic feel that suggests energy and momentum." + }, + "videoPrompt": "A fast-paced dance sequence with two dancers; one is doing an acrobatic move (likely a headspin) while another stands dynamically. The scene transitions between dancers as they compete in a hip-hop dance battle, all set to energetic hip-hop music!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\324822191858964149_1758638568404_2.png" + }, + { + "scene": "Dynamic Breakdancing", + "imagePrompt": { + "description": "A breakdancer in mid-motion against a vibrant graffiti wall.", + "style": "Photorealistic with a slight urban edge.", + "lighting": "Bright and colorful, emphasizing the vibrancy of the graffiti.", + "outfit": "Casual breakdancing outfit - jeans, denim jacket, cap, and red sneakers", + "location": "A street or parking lot in front of a large graffiti wall.", + "poses": "Breakdancer performing a dynamic pose, mid-motion with arms extended.", + "angle": "Slightly low angle to emphasize the dancer's power." + }, + "videoPrompt": "The breakdancer continues his dance routine, building into an energetic sequence of spins and freezes. The scene transitions between shots showing close-ups on his movements and wider shots showcasing the entire graffiti wall.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\324822191858964149_1758638568976_4.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of five people are leaping in the air against a backdrop of vibrant graffiti art.", + "style": "Candid Photography, energetic and playful.", + "lighting": "Natural light with slight contrast, giving it a lively feel.", + "outfit": "Casual: Most people wear white shirts, black pants or jeans. One person wears a baseball cap.", + "location": "An outdoor urban setting, in front of a graffiti-covered wall.", + "poses": "Dynamic and energetic poses; the group is mid-jump, creating a sense of movement and excitement.", + "angle": "Slightly low angle shot, emphasizing the height of the jump." + }, + "videoPrompt": "The scene transitions into a full-fledged dance routine. The dancers begin with a synchronized hip-hop dance, building energy until it evolves to a more dynamic breakdance segment, ending with a collective pose.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\324822191858964149_1758638570618_10.png" + }, + { + "scene": "Dynamic Street Dance Performance", + "imagePrompt": { + "description": "A vibrant photograph captures a street dancer in mid-performance during a packed audience event.", + "style": "Candid photography, with an energetic feel.", + "lighting": "Bright and sunny daylight, creating strong contrast.", + "outfit": "The dancer is wearing yellow pants and a dark shirt. The crowd features a variety of casual clothing – jeans, t-shirts, jackets.", + "location": "A checkered plaza or square with surrounding buildings, palm trees and an audience seated around it.", + "poses": "The main subject is doing a dynamic dance move - possibly a 'headspin' or similar. The crowd is mostly watching attentively.", + "angle": "Slightly high angle looking down, giving a good view of the entire scene." + }, + "videoPrompt": "A fast-paced street dance competition takes place on the checkered plaza, with dancers exchanging energetic moves in sync. Add some subtle camera shake and dynamic transitions between shots to show the dancer's energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\324822191858964149_1758638571209_12.png" + }, + { + "scene": "Dynamic Breakdance Performance", + "imagePrompt": { + "description": "A breakdancer is in the midst of a dynamic move, with an audience watching from behind.", + "style": "Candid photography, with a focus on action and movement.", + "lighting": "Bright and vibrant, with spotlights highlighting the dancer.", + "outfit": "The dancer wears a light-colored tracksuit and a baseball cap, with white shoes", + "location": "A stage or event space for breakdancing competition, likely indoors.", + "poses": "The dancer is in mid-movement, performing a complex dance move. He's dynamic and energetic.", + "angle": "Slightly low angle, capturing the dancer’s energy and the audience." + }, + "videoPrompt": "A breakdancer continues his performance with quick transitions, spins and freezes, becoming more intense as the music builds up. The scene is vibrant and energetic, showing a dynamic dance routine.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638602388_0.png" + }, + { + "scene": "Dynamic Duo", + "imagePrompt": { + "description": "A photograph of a male and female dancer performing a hip-hop style dance in front of a brick wall.", + "style": "Modern photography, with an emphasis on action and energy.", + "lighting": "Dramatic studio lighting; spotlight effect focusing on the dancers, creating shadows.", + "outfit": "Both dancers are wearing casual but colorful outfits. The male dancer is wearing a white shirt and grey trousers with black shoes, and a baseball cap. The female dancer wears a yellow top under a pink jacket and black pants with white sneakers, and has curly hair.", + "location": "A simple indoor space; the floor appears to be a dark gray or black, and behind them is a textured brick wall.", + "poses": "The male dancer is in a classic breakdancing pose - a handstand with his legs extended. The female dancer is leaping upwards in mid-air, creating an dynamic energy between both dancers.", + "angle": "Full shot; the camera is at eye level with the dancers, slightly lower to emphasize their height and energy." + }, + "videoPrompt": "The scene transitions into a fast-paced hip hop dance battle. The female dancer initiates a energetic routine by throwing an elegant move with her hands while the male dancer follows by a quick spin. Both dancers build on each other' or add more complex moves as their dance becomes more intense.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638603153_4.png" + }, + { + "scene": "Dynamic Breakdance", + "imagePrompt": { + "description": "A young male breakdancer is frozen in a complex pose, executing a handstand with a full body spin.", + "style": "Realistic Photography", + "lighting": "Dramatic studio lighting, creating high contrast and shadows.", + "outfit": "Casual street wear: Light-colored pants, a jacket with tan sleeves, and a baseball cap. The outfit is both modern and stylish.", + "location": "A black box theater stage with smooth flooring", + "poses": "The breakdancer is in the middle of a full spin, balanced on one hand and one foot.", + "angle": "Slightly low angle, allowing the viewer to see the dancer’s movement." + }, + "videoPrompt": "The breakdancer continues the dynamic spin, transitioning into a series of fluid movements: popping, locking, and some smooth transitions. The dancer's energy builds as they go from controlled spins to quick bursts of motion, incorporating a little bit of hip-hop flavor.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638603679_5.png" + }, + { + "scene": "A Cascade of Falling Dancers", + "imagePrompt": { + "description": "The image shows a collection of dancers in various stages of falling or tumbling, arranged in a vertical cascade. It's almost like they are falling through time.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic and moody, with a mix of light and shadow emphasizing the dynamic poses.", + "outfit": "Most dancers wear casual athletic attire - shorts, t-shirts, or tank tops. Some have more formal attire like shirts and pants.", + "location": "A neutral black backdrop", + "poses": "Each dancer is in a different pose representing an active fall with dynamic motion. Some are fully contorted while others appear to be mid-fall.", + "angle": "Straight on, frontal view of the cascade." + }, + "videoPrompt": "A group of dancers perform a fast-paced dance routine that simulates a complex cascading tumble. The dancers move in sync with each other, building from the top and bottom, culminating in an energetic finale that gives them dynamic movement.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638603869_7.png" + }, + { + "scene": "Breakdance Crew", + "imagePrompt": { + "description": "A black and white photograph of a breakdancing crew of five people. They are all wearing tracksuits with Adidas stripes, in various shades of gray.", + "style": "Black & White Photography - Dynamic Action", + "lighting": "Studio lighting, generally even but with some contrast to highlight the forms.", + "outfit": "Tracksuits with Adidas stripes, classic breakdance style. Each person has a slightly different configuration of their outfit - one wears a headband", + "location": "A plain white backdrop or studio setting.", + "poses": "The group is in dynamic poses, mimicking breakdancing moves and expressions. Each member has distinct pose. One is crouched in front, another is with an arm raised, while the rest are in various positions to create a dramatic effect", + "angle": "Full-frame shot, slightly from the angle to capture all 5 people." + }, + "videoPrompt": "A dynamic dance scene unfolds! The breakdance crew explodes into a fast-paced routine with more complex breakdancing moves. They are in sync with a hip hop beat, and the background is now a dimly lit urban environment. The dancers move from one pose to another, seamlessly transitioning between poses.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638605660_16.png" + }, + { + "scene": "Dynamic Breakdancing Trio", + "imagePrompt": { + "description": "Three young individuals are performing a breakdance move in a brightly lit indoor space.", + "style": "Photorealistic, Action Photography", + "lighting": "Bright and even lighting, with slight shadows to emphasize the dancers’ forms. A spotlight effect giving dynamic dance scene.", + "outfit": "Casual street wear – including t-shirts, pants, and baseball shoes. Each dancer wears a different color top (green, beige, red) adding diversity.", + "location": "A simple indoor setting, possibly a dance studio or gymnasium with white walls.", + "poses": "Each dancer is in the middle of a breakdance pose – specifically a handstand/headspin variation. They are frozen mid-motion, showing athleticism and energy.", + "angle": "Slightly low angle to emphasize their dynamism." + }, + "videoPrompt": "The dancers move seamlessly from headspins into a series of complex breakdance moves including top rocks, freezes, and power moves. The camera follows the trio as they transition between different dance styles, building intensity with each move.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638606940_20.png" + }, + { + "scene": "Energetic Band Pose", + "imagePrompt": { + "description": "A group of five young men are posing in a vibrant, energetic shot. They are positioned in front of a white backdrop and are arranged so that their feet are prominently visible.", + "style": "Contemporary Photography with a slight edge.", + "lighting": "Bright, even lighting – almost like studio lights giving it a clean look", + "outfit": "A mix of trendy streetwear with touches of retro. There's denim, plaid, and graphic tees, along with bold colors like orange and red.", + "location": "Appears to be a white indoor space - possibly a studio or large room.", + "poses": "Each member is striking a dynamic pose, emphasizing their shoe wear.", + "angle": "Low-angled, looking up at the subjects, accentuating their feet." + }, + "videoPrompt": "The band drops to the floor in a synchronized dance move, transitioning into a fast-paced dance routine that shows off their energy. They're now performing a dynamic dance with smooth transitions between each member, and the camera focuses on their movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638607511_22.png" + }, + { + "scene": "Urban Dance Crew", + "imagePrompt": { + "description": "A group of seven people are posing in front of a brick building with vibrant street art.", + "style": "Modern, dynamic photography - similar to a promotional photoshoot for an urban dance crew.", + "lighting": "Natural light with slight shadows. The image is well-lit, allowing all subjects to be seen clearly.", + "outfit": "Casual and trendy streetwear; jeans, t-shirts, hoodies, sneakers. Some individuals have unique patterns or designs on their clothing.", + "location": "A slightly grungy urban setting – brick building with a large gate. The background is filled with colorful street art.", + "poses": "The group is semi-posed. One individual (a woman in the middle) is executing a dynamic dance pose, while others are standing in various positions - some looking at the camera and others interacting with each other", + "angle": "Slightly low angle, giving the dancers a sense of prominence." + }, + "videoPrompt": "A fast-paced urban dance sequence begins, starting with the main dancer's energetic pose. The crew breaks into full-out choreography incorporating various dance styles (hip hop, breakdancing) - utilizing the vibrant backdrop as an inspiration for their movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638607798_23.png" + }, + { + "scene": "Dynamic Dance in Madrid", + "imagePrompt": { + "description": "A black-and-white photograph of a dancer performing a dynamic move in front of the iconic Edificio Metrópolis building in Madrid, Spain. The dancer is mid-air, with one foot off the ground, creating an energetic and playful feel.", + "style": "Black & White Photography", + "lighting": "Natural light, slightly overcast, giving the image a classic look", + "outfit": "Casual streetwear: A white cap, light-colored tank top, and grey pants. The dancer wears chunky sneakers.", + "location": "Madrid, Spain - specifically in front of the Edificio Metrópolis building, a landmark architectural structure.", + "poses": "The dancer is frozen mid-motion with a dynamic pose resembling a dance move – either a breakdance or urban hip-dance action. ", + "angle": "Low angle, slightly below eye level, creating a sense of power and dynamism." + }, + "videoPrompt": "A fast-paced dance sequence begins in the same spot as the image. The dancer transitions into a full routine with a group of dancers using the architecture of Madrid as the backdrop. The music is upbeat and energetic, combining urban hip-dance moves with modern choreography. No slow motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638608159_24.png" + }, + { + "scene": "Dynamic Breakdance Performance", + "imagePrompt": { + "description": "A male breakdancer is in mid-performance, executing a complex move with his body arched and arms extended. He's wearing a tan top and grey pants, with black shoes. There are observers sitting and standing around him.", + "style": "Realistic Photography", + "lighting": "Dramatic lighting, creating shadows on the floor that emphasize the breakdancer's motion.", + "outfit": "Casual dance attire - Tan top, grey pants, black shoes.", + "location": "Indoor dance studio with a mirrored wall and a simple backdrop.", + "poses": "The main subject is in a dynamic pose, demonstrating an acrobatic move. The onlookers are observing, some seated, others standing.", + "angle": "Slightly low angle to emphasize the dancer's power and movement." + }, + "videoPrompt": "A breakdancer continues his performance, seamlessly transitioning between several complex moves. He starts with a spin, then leads into a power move like a headspin followed by a graceful floorwork sequence. The dance progresses in time with upbeat music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\33706697205949595_1758638609462_31.png" + }, + { + "scene": "A Pyramid of Dancers", + "imagePrompt": { + "description": "The image depicts a large group of dancers forming a pyramid with one dancer at the top, reaching upwards as if in praise or offering. The dancers are positioned on a stage, under dramatic lighting.", + "style": "Contemporary Dance/Performance Photography", + "lighting": "Dramatic and focused - spotlighting the pyramid, with shadows surrounding it. Warm tone overall.", + "outfit": "All dancers wear similar outfits: light grey leotards or dancewear.", + "location": "A stage, likely inside a theater or performance space.", + "poses": "The bottom layer of dancers are kneeling/sitting in a semi-circle formation. The pyramid rises upwards with dancers progressively building on each other. Top dancer is reaching upwards with outstretched arms", + "angle": "Slightly low angle, creating monumentality of the pyramid." + }, + "videoPrompt": "The pyramid begins to shift and evolve into multiple smaller groupings of dancers, all in sync, flowing out from the main structure in a dynamic dance. They transition into a modern dance sequence with an emphasis on fluidity and grace. The top dancer leads them into a more complex, faster pace, but grounded.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\345721708912670745_1758638707882_7.png" + }, + { + "scene": "Masked Dancers in a Dramatic Embrace", + "imagePrompt": { + "description": "A group of dancers wearing white masks are intertwined in an embrace, creating a sense of mystery and drama. The foreground is dominated by several figures, while others are partially obscured behind them.", + "style": "Contemporary Dance/Photography with dramatic lighting.", + "lighting": "Dim and moody, with the primary light source coming from the front, creating shadows and highlighting the dancers' forms. There is a sense of smokiness in the air", + "outfit": "Dancers are wearing minimalist outfits; some in white dresses, others mostly nude with subtle coverings, all fitting with a modern dance aesthetic.", + "location": "A darkened stage or studio setting, seemingly minimalist and spacious.", + "poses": "Dynamic poses suggesting a dance routine. Dancers are reaching, grasping, and embracing one another, creating a complex interplay of forms. The dancers have expressive arms.", + "angle": "Slightly low angle, emphasizing the dancers' physicality and their connection to an unseen audience." + }, + "videoPrompt": "A dynamic dance scene with flowing music begins with the dancers breaking from the embrace. One dancer leads in a complex turn, reaching for the light while others follow, creating a spiraling group of dancers. The dancers move through a smoky stage, their masks both obscuring and revealing emotion in a fast-paced modern dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\345721708912670745_1758638708144_8.png" + }, + { + "scene": "Dynamic Human Stack", + "imagePrompt": { + "description": "A vibrant photograph depicting a human stack of five young people, all in various poses. They appear to be mid-air, with an emphasis on dynamic motion and playful chaos.", + "style": "Candid photography, reminiscent of early 2000s fashion magazines", + "lighting": "Bright, natural lighting, with a slight warm tone suggesting afternoon sunlight.", + "outfit": "A mix of casual streetwear – plaid shirts, baseball jerseys, sweatshirts and pants. The outfits are colorful but not overly trendy, giving the image a sense of timelessness.", + "location": "Outdoor setting, likely a grassy field or park with some foliage visible in the background", + "poses": "The subjects are arranged in a dynamic human stack, appearing as if they' 're mid-motion. Their bodies are angled to convey momentum and playfulness. One person is throwing a frisbee.", + "angle": "Slightly upward angle, giving an impression of height and dynamism." + }, + "videoPrompt": "A group of five young people, in the same outfits, perform a dynamic dance routine that builds on their human stack, flowing into a hip-hop inspired dance. The dance starts with a series of quick movements mirroring their initial pose then turns to a more fluid and energetic set as they move forward in unison.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639005504_0.png" + }, + { + "scene": "Urban Night", + "imagePrompt": { + "description": "A group of five people are posing in a semi-outdoor urban setting at night. The foreground is dominated by a person sitting, with the rest standing behind them.", + "style": "Photorealistic, contemporary fashion photography", + "lighting": "Dramatic and moody; blue tones dominate, with a reddish glow visible overhead.", + "outfit": "The group wears an array of casual outfits, with a focus on outerwear like jackets and a mix of denim. The style is modern streetwear with a touch of sporty chic.", + "location": "A rooftop or elevated outdoor space, likely in a city, with concrete surfaces and a simple backdrop.", + "poses": "The group uses dynamic poses; the main subject is lounging, while others are standing to create an interesting visual composition. The use of both seated and standing positions add depth.", + "angle": "Slightly low angle, looking up towards the subjects, giving them dominance in frame." + }, + "videoPrompt": "Dynamic dance scene with a hip-hop feel. Start with the main subject (the person lounging) breaking into a smooth dance move, then transition to the whole group doing a synchronized dance routine inspired by breakdancing and contemporary styles. The lighting should shift between blue and orange tones, creating an energetic vibe.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639005615_1.png" + }, + { + "scene": "Dynamic Dance Duo", + "imagePrompt": { + "description": "Two dancers are frozen in a dynamic pose, performing a breakdance/hip-hop routine. The top dancer is mid-air with an extended leg, while the bottom dancer is in a classic breakdance pose.", + "style": "Urban Photography - capturing raw energy and dynamism", + "lighting": "Natural light, slightly overcast but bright enough to create good contrast.", + "outfit": "Casual streetwear. The top dancer wears a white hoodie and jeans while the bottom dancer is in a tan hoodie and jeans with red sneakers. Both have baseball caps.", + "location": "Underneath an indoor walkway or bridge structure, possibly made of metal beams", + "poses": "The dancers are engaged in energetic breakdancing moves. One dancer is in a freeze pose, while the other appears to be executing a move.", + "angle": "Slightly low angle, looking upwards at the dancers for dynamic effect." + }, + "videoPrompt": "A group of dancers burst into a full-blown hip hop dance routine under the walkway. The dancers transition between breakdance moves and energetic contemporary styles as they flow through the space, with one dancer doing an elegant spin that transitions to a high energy breakdance move, while the other dancers use the walkway as their stage.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639007249_9.png" + }, + { + "scene": "Skateboarder's Dynamic Progression", + "imagePrompt": { + "description": "A series of images showing a skateboarder progressing through a trick, culminating in an almost completed flip.", + "style": "Modern Photography - Action/Dynamic", + "lighting": "Natural light with some shadows giving depth to the scene.", + "outfit": "Casual: The skateboarder wears a black cap and a dark, likely grey, outfit.", + "location": "An urban outdoor space. It's a plaza or park area, with steps leading up to buildings.", + "poses": "The skateboarder is in dynamic action - progressing through a trick from beginning to almost completion", + "angle": "Slightly low angle, eye-level view of the progression." + }, + "videoPrompt": "A fast-paced dance routine incorporating hip hop and urban styles. The dancers start with simple steps on the ground, then build into dynamic jumps mimicking a skateboard trick. They move in time with a beat that is rhythmic and builds. The scene should transition between each frame of the progression.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639007809_15.png" + }, + { + "scene": "A Colorful Chaos: A Korean Family Navigates a Toy Store", + "imagePrompt": { + "description": "The image depicts a brightly lit, somewhat chaotic scene within a toy store. Several individuals are surrounded by mountains of toys, creating an overwhelming sense of abundance. The foreground features a man kneeling and looking at something in the pile, while others stand around him. An upper layer shows more people standing among the toys.", + "style": "Photorealistic with a slightly vintage feel – reminiscent of early ’s 2000s Korean photography", + "lighting": "Bright and colorful, creating a warm atmosphere despite the abundance of items in the image.", + "outfit": "The subjects mostly wear white shirts and brown ties. Some have short hair while others have longer ones with bangs. The outfits are formal but casual, giving off an everyday look.", + "location": "A densely stocked toy store, likely a Korean one based on the language and style", + "poses": "The kneeling man is focused and looking at something in front of him. Other individuals stand with slightly curious expressions. All subjects appear to be engaged with the toys around them.", + "angle": "Slightly low angle, allowing for the viewer to see most of the toy pile" + }, + "videoPrompt": "Dynamic dance scene: The family breaks into a fast-paced, energetic dance routine among the mountains of toys. Toys are thrown and caught in rhythm with the music, creating a playful but dynamic scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639008556_19.png" + }, + { + "scene": "Dynamic Parkour & Fitness", + "imagePrompt": { + "description": "A group of people are engaged in a dynamic parkour/fitness activity at an outdoor gym with concrete structures. The central figure is performing a backflip, while others are jumping and engaging in various exercises.", + "style": "Action Photography - vibrant and energetic", + "lighting": "Bright daylight, natural light creating strong contrast between the shadows and sunlit areas.", + "outfit": "Casual workout attire – shorts, t-shirts, and some bare feet. A mix of bright colors like pink, green, and white.", + "location": "Outdoor parkour/fitness area with concrete structures and a few trees in the background", + "poses": "A variety of dynamic poses showing jumping, flipping, grabbing, and running. Multiple people are in action.", + "angle": "Wide-angle lens, slightly from below to emphasize the height and dynamism." + }, + "videoPrompt": "A group of parkour athletes break into a vibrant dance routine on the fitness course. Starting with quick transitions between jumps and flips, they move to a more fluid, energetic dance sequence incorporating elements of hip-hop and contemporary dance, building in tempo as they progress.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639010182_23.png" + }, + { + "scene": "A Feast of Pop Culture", + "imagePrompt": { + "description": "The image depicts a group of five people enjoying a casual meal in what appears to be a cluttered room, surrounded by books and pop culture artifacts.", + "style": "Pop Art/Contemporary Photography with vibrant colors.", + "lighting": "Bright, warm lighting creates a playful atmosphere. A mix of direct light and reflected light from the surroundings.", + "outfit": "A variety of casual outfits, including plaid shirts, baseball caps, and comfortable pants. The style is trendy, modern, and slightly quirky.", + "location": "The room appears to be a home's living space or a studio with bookshelves overflowing with books and magazines, creating an atmosphere of relaxed creativity.", + "poses": "Each person in the group has distinct poses—a mix of leaning forward, reaching for food, and relaxing. They have dynamic poses that are very comfortable", + "angle": "The camera angle is slightly above eye-level, giving a clear view of all five subjects." + }, + "videoPrompt": "A vibrant dance sequence starts with each person grabbing an item from the feast—a slice of pizza, a bowl of noodles, etc—and using it as inspiration for their dance moves. The music builds into a energetic beat that has them bouncing between books and magazines, showcasing their individuality and creating a dynamic flow.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639010297_24.png" + }, + { + "scene": "Urban Dance on a Hong Kong Rooftop", + "imagePrompt": { + "description": "A group of five people are engaged in a dynamic dance performance atop a Hong Kong building, surrounded by dense cityscapes.", + "style": "Candid Photography with a slight retro feel.", + "lighting": "Natural daylight, creating soft shadows and highlights.", + "outfit": "Casual, dark clothing - mostly black outfits. Most people are wearing short sleeves.", + "location": "A Hong Kong rooftop overlooking a densely packed urban environment.", + "poses": "Dynamic dance poses; some individuals are jumping or mid-movement, while others have more relaxed stances.", + "angle": "Wide angle overhead shot with slight distortion." + }, + "videoPrompt": "A group of dancers perform a energetic hip-hop routine on the Hong Kong rooftop. The camera follows them as they move from one dance to another, incorporating smooth transitions and building in intensity. Add some dynamic shots of the city skyline while the music builds.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639010402_25.png" + }, + { + "scene": "Basketball & Dinosaurs", + "imagePrompt": { + "description": "A vibrant, surreal image depicting a basketball game in progress with a giant dinosaur looming overhead. The scene is set in a classic outdoor basketball court.", + "style": "Photorealistic, with a slight vintage feel.", + "lighting": "Bright, sunny daylight.", + "outfit": "Casual street wear - shorts, t-shirts and baseball caps.", + "location": "Outdoor basketball court, with red brick buildings in the background.", + "poses": "Dynamic action – players are dribbling, shooting, and jumping. A child is looking up at the dinosaur.", + "angle": "Slightly low angle, giving prominence to the basketball player and the dinosaur." + }, + "videoPrompt": "A dynamic dance scene set in the same basketball court. Players, children, and even the dinosaur join a fast-paced hip-hop dance routine that uses the basketball as part of the choreography. The music is upbeat and energetic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\351773420913990065_1758639010757_27.png" + }, + { + "scene": "Dynamic Dance Celebration", + "imagePrompt": { + "description": "Silhouettes of four people in celebratory poses against a backdrop of colorful paint splatters.", + "style": "Vector Illustration / Graphic Design", + "lighting": "Bright and vivid, with a focus on the colors of the splatters.", + "outfit": "Casual, modern clothing - shorts and tops. It is hard to tell the specific outfits since they are silhouettes.", + "location": "Abstract setting, almost a stage or backdrop", + "poses": "Dynamic dance poses, joyful celebration, with one person reaching for the sky.", + "angle": "Frontal view, slightly low angle focusing on the subjects." + }, + "videoPrompt": "A group of dancers break into full-blown energy in a dynamic dance scene. The dancers begin to move rhythmically and bounce between several different paces and styles. They are covered with vibrant colors, as if splashed by paint, as they dance along a base line.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\359162139052573524_1758638537777_8.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of seven young dancers are performing on stage, illuminated by vibrant orange and purple lighting.", + "style": "Live performance photography, similar to a dance recital or show.", + "lighting": "Warm orange highlights with cooler purple tones create contrast, giving the scene dynamic energy.", + "outfit": "The dancers wear bright orange jackets over blue tops and pants. A mix of both male and female dancers are wearing similar outfits", + "location": "A stage in a performance hall, likely indoors with a black backdrop and floor.", + "poses": "The group is arranged in a pyramid shape, with some dancers kneeling and others standing, creating dynamic poses that suggest energetic motion. They're performing a dance move, possibly a freeze or peak moment.", + "angle": "Slightly low angle, capturing the performance from the audience' more perspective." + }, + "videoPrompt": "The dance crew breaks into an upbeat hip-hop routine with quick transitions between dancers. The dancers begin to branch out of their pyramid formation and start a dynamic dance sequence where they move as one unit.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\359162139052573524_1758638538158_10.png" + }, + { + "scene": "Dynamic Dance Club", + "imagePrompt": { + "description": "A vibrant image depicting a group of people silhouetted against a colorful backdrop, performing in a dance club.", + "style": "Vector Illustration", + "lighting": "Bright and colorful with rainbow effects. The lighting is dynamic, simulating spotlights and neon lights.", + "outfit": "Modern outfits; dancers are dressed in casual attire appropriate for a party or dancing.", + "location": "A dance floor/club setting.", + "poses": "The subjects are engaged in various dance poses, indicating energy and dynamism. They're actively performing!", + "angle": "Slightly angled from the bottom up to create dynamic scene." + }, + "videoPrompt": "Fast-paced video of dancers moving with energetic rhythm. Focus on fluid transitions between dancers as they move in sync with a modern dance beat. Add some subtle light flashes for extra dynamism.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\359162139052573524_1758638540781_20.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A stunning image of a dancer in mid-motion, surrounded by swirling smoke.", + "style": "High fashion photography with dramatic lighting.", + "lighting": "Dramatic contrast between cool blue and warm yellow tones. A single vertical line of light adds to the drama", + "outfit": "White crop top and white cargo pants. The outfit is semi-formal, in a modern style.", + "location": "A studio setting with a dark floor and ambient smoke.", + "poses": "The dancer is in a dynamic dance pose, with arms outstretched and one foot forward. It's an energetic and striking pose.", + "angle": "Slightly low angle, emphasizing the dancer’s power." + }, + "videoPrompt": "A vibrant dancer is now in a more expansive dance routine, moving between the smoke and light to create dynamic shapes with her body! The dancer starts with a quick burst of movement, then transitions into a flowing contemporary dance. Her hair is tossed back as she throws herself into the dance!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\359162139052573524_1758638541761_23.png" + }, + { + "scene": "Dynamic Dance Party", + "imagePrompt": { + "description": "A vibrant image showcasing a lively dance party with silhouettes of people dancing in the foreground, centered around a microphone.", + "style": "Vector Illustration/Graphic Design", + "lighting": "A mix of bright and warm colors – purples, pinks, blues – creating a dynamic, energetic feel. Central glow with radiating lines.", + "outfit": "The dancers are silhouetted, but appear to be wearing modern dance outfits - various styles from casual to more festive.", + "location": "A stage or dance floor setting, indicated by the ground and light effects", + "poses": "Dancers are in dynamic poses – raising hands, jumping, and generally celebrating. Silhouettes indicate energetic motion.", + "angle": "Slightly angled overhead shot, emphasizing both dancers and microphone." + }, + "videoPrompt": "The dance floor explodes into energy! A fast-paced music video set to a pop song, showcasing a diverse group of dancers in dynamic moves. The camera pans between dancers, highlighting their energetic expressions while the scene is bathed in colorful light effects. No slow motion, be creative and generate dynamic dance scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\372672937937547419_1758638856816_17.png" + }, + { + "scene": "Colorful Celebration", + "imagePrompt": { + "description": "A vector illustration depicting six silhouetted figures joyfully dancing amidst a vibrant splash of color.", + "style": "Vector Illustration, Modern", + "lighting": "Bright and colorful, with the colors spreading from the center.", + "outfit": "Casual attire; the dancers appear to be wearing various outfits - shorts, tops, dresses. All are modern.", + "location": "Abstract space; a backdrop of color splashes.", + "poses": "Dynamic poses showing exuberance and celebration; dancing, jumping, raising arms.", + "angle": "Frontal view, eye-level." + }, + "videoPrompt": "A fast-paced dance sequence with dancers moving in sync to an upbeat song. The scene transitions between a variety of color splashes that mimic the image's layout - yellow, orange, pink, purple and blue - and creates a dynamic and energetic atmosphere.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\372672937937547419_1758638857264_20.png" + }, + { + "scene": "Dynamic Dance Trio", + "imagePrompt": { + "description": "Three young women in a vibrant dance performance wear red Nike branded t-shirts, with denim and gray pants.", + "style": "Contemporary Photography", + "lighting": "Dramatic overhead lighting, creating shadows and highlighting the dancers' forms.", + "outfit": "Casual streetwear: Red Nike t-shirts paired with denim and gray pants. All three are wearing sneakers.", + "location": "Dance studio with a dark backdrop and gray floor.", + "poses": "The trio is frozen in a dynamic dance pose, suggesting strength, energy and collaboration. Top dancer has arm raised and the middle dancer is holding her.", + "angle": "Slightly upward angle, giving a sense of power and dynamism." + }, + "videoPrompt": "The dancers transition from this frozen position into a fluid, energetic dance routine with a focus on hip-hop/urban choreography. The music builds as they move, progressing through the studio. Add some quick cuts between dancers.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638668523_1.png" + }, + { + "scene": "Dynamic Dance Crew", + "imagePrompt": { + "description": "A group of six people are performing a hip-hop dance in a studio setting.", + "style": "Contemporary Photography, with a focus on dynamic action and vivid color.", + "lighting": "Dramatic multi-colored lighting – primarily purple, blue, yellow, and orange – creating a vibrant atmosphere.", + "outfit": "Casual streetwear including hoodies, sweatpants, jackets, and sneakers. Outfits are colorful but not overly formal", + "location": "A simple studio backdrop with a white floor, allowing the dancers to be the primary focus.", + "poses": "Each dancer is in a dynamic pose, suggesting energetic movement. They all have an air of confidence.", + "angle": "Slightly low angle, giving the dancers prominence and a sense of power." + }, + "videoPrompt": "The dance crew transitions into a more complex routine with a focus on rhythm and coordination. The scene is dynamic, fast-paced, and energetic, building to a climactic peak where each dancer gets a moment in the spotlight.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638668619_2.png" + }, + { + "scene": "Solitary Contemplation", + "imagePrompt": { + "description": "A lone figure stands in a field of lush green grass, facing a single, prominent tree. A soft mist envelops the scene, creating a sense of quiet solitude and mystery.", + "style": "Photorealistic painting with slight dreamlike quality; reminiscent of surrealism", + "lighting": "Soft, diffused lighting with subtle contrast. The overall tone is cool and slightly melancholic.", + "outfit": "The figure wears a formal outfit – possibly a suit or jacket – giving them a classic appearance. ", + "location": "A spacious field, gently rolling with grass, set against an atmospheric backdrop of mist.", + "poses": "The figure is facing the tree in profile; standing still and facing the tree.", + "angle": "Wide shot, slightly low angle to emphasize the height of the scene." + }, + "videoPrompt": "A dynamic dance unfolds between the lone figure and an ethereal dancer. The pair move around each other with a flowing fluid motion as they perform an elegant waltz in the field, becoming more energized as the music builds; set to instrumental jazz music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638669142_5.png" + }, + { + "scene": "Puma Collection - Dynamic Group Shot", + "imagePrompt": { + "description": "A group of seven young people wearing Puma sportswear in a modern urban setting.", + "style": "Fashion photography, commercial style.", + "lighting": "Bright and natural lighting with subtle shadows.", + "outfit": "The models are dressed in various Puma items; including hoodies, tracksuits, shorts, and colorful sneakers. Outfits feature blocky color patterns of black, white, yellow, and green", + "location": "An urban area with a concrete base and colorful geometric shapes as backdrop.", + "poses": "A mix of seated, standing, and crouching poses; the models are interacting in a dynamic group pose.", + "angle": "Slightly low angle, giving the group prominence. Wide shot." + }, + "videoPrompt": "The beat drops and each model breaks into a fluid dance routine with the Puma gear showcasing its vibrant colorways. The dancers move across the concrete space while incorporating some modern urban dance styles like popping and locking. Camera pans between models as they transition from solo to group moves.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638670266_9.png" + }, + { + "scene": "Dynamic Dance Crew Pose", + "imagePrompt": { + "description": "A group of young girls, predominantly wearing white or black outfits, are posing in a dynamic dance stance. They're arranged in front of a black backdrop creating a strong contrast.", + "style": "Contemporary Dance/Performance Photography", + "lighting": "Dramatic and focused; the lighting emphasizes the dancers with shadows and highlights on their faces and bodies", + "outfit": "Mix of casual streetwear – white t-shirts, black pants, some girls wear baseball caps. Some girls have printed shirts.", + "location": "A stage or studio with a black backdrop.", + "poses": "Each girl is in a different pose contributing to the overall dynamic feel. They're mix of stances - crouching, standing, and leaning – indicating a dance routine", + "angle": "Slightly low angle shot, giving the dancers prominence." + }, + "videoPrompt": "A hip-hop dance crew is performing a fast-paced dance routine to an upbeat song. They start with a pose similar to the image and transition into a dynamic dance routine, incorporating both modern and energetic moves. Use fluid transitions between poses and add some dramatic lighting effects.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638670354_10.png" + }, + { + "scene": "Y2K Revival", + "imagePrompt": { + "description": "A group of five young women pose dynamically in a Y2K-inspired fashion photoshoot.", + "style": "Early 2000s pop culture/fashion photography. Think magazine cover for a girl group.", + "lighting": "Bright, sunny daylight with minimal shadows.", + "outfit": "The image is overflowing with early 2000's trends: low-rise denim jeans, crop tops, brightly colored cargo pants, pastel colors, and bold accessories. One woman wears a bright orange top, another a blue cropped top, one in lilac, and others wearing bright pink and yellow.", + "location": "A courtyard or outdoor space with brick walls and classic architecture.", + "poses": "Each subject is posing confidently. The main focus is on the center woman who stands with her hands crossed. Other models are using dynamic poses.", + "angle": "Slightly low angle, full shot of the group." + }, + "videoPrompt": "Dynamic dance scene set to a Y2K pop song! Start with a close-up shot of each model, showing their unique style and confidence. Then move into a fast-paced dance sequence that uses both simple and complex choreography in a variety of different shots.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638670869_12.png" + }, + { + "scene": "Retro Autumn Fashion", + "imagePrompt": { + "description": "A group of seven diverse models pose in a street setting with European architecture in the background.", + "style": "Candid photography, reminiscent of early 2000s fashion editorials.", + "lighting": "Natural light with a slight warm tone, creating a cozy autumn feel.", + "outfit": "The models wear a variety of autumnal outfits including hoodies, jackets, and pants in shades of tan, brown, orange, green, and cream. Many outfits feature color-blocking and retro designs.", + "location": "A European street with classic architecture – possibly Paris or another major city.", + "poses": "The models are posed in a variety of dynamic positions - crouching, standing, leaning - creating a natural feel.", + "angle": "Frontal shot at eye level." + }, + "videoPrompt": "A fast-paced dance scene set to retro funk music. The group starts with coordinated movements, mimicking the poses in the image. As they progress, the dancers move into more dynamic and free flowing movements – resembling a street dance competition. Transition between models using smooth camera cuts.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638671551_15.png" + }, + { + "scene": "Energetic Lindy Hop Dance", + "imagePrompt": { + "description": "A vibrant photograph capturing a male-female pair in the midst of a lively Lindy Hop dance. The man is wearing tan pants and a white shirt, while the woman wears a striped blue dress and a red hair accessory. They are positioned center frame, with onlookers surrounding them.", + "style": "Candid photography, reminiscent of vintage dance scenes", + "lighting": "Warm, slightly dramatic lighting; likely overhead spotlights giving a stage-like feel", + "outfit": "1940s era - The man wears classic Lindy Hop attire with tan pants and white shirt. The woman is in a light blue dress perfect for dancing.", + "location": "A large indoor dance floor, possibly a ballroom or event space", + "poses": "Dynamic poses showing the energy of the Lindy Hop dance; the couple are engaged in energetic movement with onlookers watching", + "angle": "Slightly low angle to emphasize the dancers' motion and dynamism." + }, + "videoPrompt": "The dance floor explodes into a whirlwind of activity! The couple continues their energetic Lindy Hop routine, leading into a full-fledged dance scene. Cameras move quickly between closeups showing the dancer's smiles and wider shots showcasing the energy of the whole crowd. Music is upbeat Jazz music.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638672746_20.png" + }, + { + "scene": "Vibrant Pop & Energy", + "imagePrompt": { + "description": "A fashion-forward duo pose against a backdrop of bright, contrasting colors. A female model sits with her arm on the back of a cube and wears a fuzzy blue coat, while a male model lounges beside her. Both are wearing white pants, and distinctive pale green shoes.", + "style": "Fashion photography, vibrant pop art", + "lighting": "Bright, colorful lighting - primarily turquoise, yellow, and teal - with a slight glow effect.", + "outfit": "Modern streetwear with a focus on color blocking. The female model is wearing a fuzzy blue coat while the male model has a pale green shorts set. Both are in white pants", + "location": "A minimalist studio setting with a large, colorful cube as a focal point", + "poses": "The female model sits in an upright position, with one arm resting on the back of a colored cube. The male model is slouching while leaning against the cube.", + "angle": "Straight-on, eye-level shot" + }, + "videoPrompt": "Dynamic dance scene! Set to upbeat music, have the duo bust into a fluid dance routine, moving between different poses and interacting with the colorful cube. Focus on energy, vibrancy, and youthful exuberance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638673185_21.png" + }, + { + "scene": "Dynamic Group Pose", + "imagePrompt": { + "description": "A group of nine young people are posing in a studio setting, creating an energetic vibe.", + "style": "Modern photography with a focus on youthful energy", + "lighting": "Soft and even lighting, with slight shadows to add depth.", + "outfit": "The group wears bright, colorful clothing in a mix of streetwear and casual styles. Outfits include bright orange pants, red cap, white sweaters, beige trousers, and more, creating a vibrant look.", + "location": "A simple studio setting with a neutral backdrop.", + "poses": "The group is posed in a variety of dynamic poses; some are seated on a stool, others are kneeling or standing. They have multiple different hands signs like peace sign, thumbs up and other gestures.", + "angle": "Full shot from waist to head." + }, + "videoPrompt": "A dynamic dance scene with the group breaking into an energetic dance routine, mixing in hip-hop, pop, and contemporary styles. The dancers move in unison, then split into smaller groups for individual moments, all while maintaining a vibrant energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\3729612228764589_1758638674274_22.png" + }, + { + "scene": "Post-Party Exhaustion", + "imagePrompt": { + "description": "A black and white photograph depicting a large group of people in what appears to be a gymnasium or large hall. The scene is crowded with bodies, some standing, others seated or lying on the floor. There's evidence of a party - scattered debris (likely bottle caps) are strewn across the floor. A woman in the foreground is prominently featured, lying gracefully on her side, slightly bent at the elbow as if holding an invisible object. She’s dressed in a dark colored outfit.", + "style": "Black and White Photography, Documentary Style", + "lighting": "Overall lighting is dim but atmospheric, with some light coming from overhead sources, creating shadows and contrast.", + "outfit": "A mix of casual clothing – some people are wearing dresses, others more formal outfits. The main subject wears a dark dress or suit.", + "location": "Indoor gymnasium or large hall", + "poses": "Variety of poses - standing, sitting, laying down. The foreground woman is in a relaxed pose, seemingly exhausted after a party.", + "angle": "Slightly high angle, giving the viewer a good view of the entire scene." + }, + "videoPrompt": "Dynamic dance scene: The image transforms into a fast-paced, energetic dance scene with dancers jumping and spinning amidst falling confetti. Music is upbeat and electronic. Focus on the foreground woman who slowly gets up and joins in the dancing as well as others around her. It' on the move, and the gymnasium becomes a vibrant party, all in motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638650062_0.png" + }, + { + "scene": "Band in a Waterfall", + "imagePrompt": { + "description": "A band of four members stands within the flow of a waterfall, with a skeletal base emerging from the water.", + "style": "Photorealistic, slightly surreal", + "lighting": "Dramatic and cool, with emphasis on greens and browns. The light source is ambient, creating shadows but also reflecting off the wet surfaces.", + "outfit": "A mix of casual and formal – a black blazer, a white shirt with a black jacket, a tan shirt, and a white shirt with a black-and-white striped cardigan.", + "location": "A natural waterfall setting, likely outdoors. The background is a mossy wall with a waterfall", + "poses": "The band members are positioned in the water, some kneeling/squatting, others standing as though they're performing. They appear calm amidst the scene.", + "angle": "Slightly low angle looking up at the group, emphasizing their presence within the flow of the waterfall." + }, + "videoPrompt": "Dynamic dance with a band playing in a waterfall setting! The music shifts between energetic and melanchic as the water flows around them. One member jumps into the main flow of the waterfall while keeping the pace!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638656277_21.png" + }, + { + "scene": "Punk Rock Rebellion", + "imagePrompt": { + "description": "A black and white photograph of four young men standing in a street, likely after a gig or as part of the punk rock scene.", + "style": "Black and White Photography - reminiscent of early 70's gritty realism", + "lighting": "Low-key lighting with strong contrast; shadows dominate the lower half of the image. The light source seems to be slightly in front, casting subtle shadows.", + "outfit": "All four men are wearing leather jackets, tight jeans, and boots. A classic punk rock look - rebellious and stylish.", + "location": "A dimly lit urban street with a storefront behind them; possibly London or New York.", + "poses": "They're all standing fairly still, looking directly at the camera. Each man has a slight swagger, displaying confidence and attitude.", + "angle": "Slightly low angle, giving the band prominence. A mid-shot, with their bodies occupying most of the frame." + }, + "videoPrompt": "Dynamic dance scene: The punk rock group is suddenly thrust into a fast-paced dance routine in an urban street; each man has a unique move and is in time with the music. They're still wearing leather jackets, but now they are moving to the beat, their bodies becoming fluid and energetic. A mix of classic punk energy and modern hip-hop movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638657362_25.png" + }, + { + "scene": "Energetic Dance", + "imagePrompt": { + "description": "A black and white photograph capturing a woman dancing energetically in a crowded nightclub or dance hall. She's the focal point, dressed casually but stylishly for the era.", + "style": "Black and White Photography - reminiscent of 1980s/Early 90s candid photography", + "lighting": "Low light with dramatic shadows – typical nightclub lighting", + "outfit": "The dancer is wearing a t-shirt with the slogan 'Think Big!', paired with high-waisted, slightly distressed pants and a black belt. She has a baseball cap on.", + "location": "A crowded dance floor inside a nightclub or large event space.", + "poses": "The woman is captured mid-dance, with an energetic fist pump in the air. There are other dancers around her, some more visible than others. People are enjoying themselves and dancing.", + "angle": "Slightly angled from above, giving a sense of energy and dynamism." + }, + "videoPrompt": "A dynamic dance scene set to upbeat 80s/90s music! The dancer continues her energetic dance, building into a full-blown dance routine. The camera pans around the room, showing more dancers joining in. Include some close ups of other people's reactions and details of the nightclub environment.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638658254_28.png" + }, + { + "scene": "Energetic Crowd at a Concert", + "imagePrompt": { + "description": "A black and white photograph capturing a dynamic scene within a crowded concert setting. The focal point is a person in the front, wearing a leather jacket, with another person supported on their shoulders. Above them, a person is semi-prone, with one foot raised.", + "style": "Black and White Photography - reminiscent of early Punk/New Wave photography", + "lighting": "Dramatic, low-key lighting. The scene is relatively dark, but well lit enough to show details.", + "outfit": "Mix of casual and punk fashion – leather jackets, t-shirts, jeans, and a focus on practicality with the concert attendees' outfits.", + "location": "Indoor Concert Venue - likely a club or small music hall", + "poses": "A mix of enthusiasm and energy; people are grabbing each others’ hands, supporting weight, and reacting to the music. The top person is in a semi-prone position, with their legs extended upwards.", + "angle": "Slightly low angle - giving viewers an immersive feel." + }, + "videoPrompt": "Fast-paced dance scene! A group of dancers break into a frenetic dance routine – energetic and dynamic. They are bouncing around the concert venue with the energy, like they’re about to fall over. The music is fast-paced, driving the rhythm!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638658670_29.png" + }, + { + "scene": "Rhythmic Soul", + "imagePrompt": { + "description": "A trio of men are seated in a relaxed pose against a backdrop of ornate patterned fabric, creating a warm and inviting scene.", + "style": "Contemporary Photography with a slight vintage feel.", + "lighting": "Warm, slightly diffused lighting that creates shadows and highlights, emphasizing the subjects' features. It is mostly mid-tone with some contrast.", + "outfit": "The men are dressed in casual but stylish outfits. One wears a striped shirt, another a solid white undershirt with a light tan jacket, and the last one a scarf. All three wear denim jeans.", + "location": "A slightly darkened room, dominated by the patterned fabric backdrop. It looks like a lounge or living area.", + "poses": "The men are seated in relaxed poses. The central figure is the main focus with his hand gesturing as though he's explaining something. One has an open face and expression while the other one appears contemplative", + "angle": "Slightly low angle, giving the subjects a confident presence." + }, + "videoPrompt": "Dynamic dance scene, set to soulful music. The trio, now in a slightly more modern setting – think a jazz club or urban space - begin a fluid and dynamic dance routine. They move from relaxed poses into energetic movements, their styles are smooth but impactful. Focus on the central figure's expressions as they lead the group through an expressive dance with lots of hand gestures", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638660614_36.png" + }, + { + "scene": "A Church's Electric Embrace", + "imagePrompt": { + "description": "The image showcases a vibrant electric guitar in the center of a grand, ornate church. The guitar is resting on a black stand and is adorned with artwork depicting various scenes. A large silver vase sits beside it. In the background, we see an altar laden with flowers and candles, framed by stained glass windows and arched ceilings.", + "style": "Photorealistic", + "lighting": "Warm, diffused lighting from both the church's natural light sources and subtle artificial lights, creating a sense of reverence and beauty.", + "outfit": "The guitar is the main focal point; its design contains numerous artwork depicting various scenes.", + "location": "A majestic European church with high ceilings, stone floors, and ornate decorations.", + "poses": "The guitar is the primary subject. It's positioned in a way that suggests it’ [is] ready to be played, or in a dance.", + "angle": "Slightly low angle, giving the guitar prominence within the grand setting." + }, + "videoPrompt": "A dynamic dance scene unfolds inside the church. A dancer, dressed in modern attire, begins a dance with an electric guitar, the music starts with a classical sound and evolves into upbeat pop/dance rhythm. The dancers move to a fast-paced beat, weaving between pews and altar as they groove with the guitar, while the light shifts creating a vibrant spectacle.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\373376625332980608_1758638661203_38.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "Three young men are engaged in a lively dance performance outdoors. The central figure is mid-air, with arms outstretched, creating the focal point of attention. To his left, a man with an Afro stands in a relaxed pose, and to the right another man mirrors the central figure but slightly less energetic. The scene takes place on a paved area with some degree of industrial surroundings.", + "style": "Modern photography, vibrant colors", + "lighting": "Natural daylight, creating shadows across the pavement", + "outfit": "The men are wearing brightly colored, modern outfits; the central figure is in a floral shirt and tan pants. The man on the left wears pink, while the right has yellow-gold tones.", + "location": "An outdoor industrial area with a brick building in the background.", + "poses": "Dynamic dance poses, energetic action", + "angle": "Slightly low angle, eye level" + }, + "videoPrompt": "The three men break into a fast-paced dance routine. The central figure leads with a burst of energy and dynamic moves. They move forward, incorporating some complex choreography that continues the vibe in the image.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638390342_3.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of male dancers are performing a hip-hop style dance on a stage. They're all wearing matching outfits.", + "style": "Photography, realistic", + "lighting": "Dramatic overhead lighting, creating shadows and highlights", + "outfit": "All the dancers wear dark gray caps, black t-shirts with orange accents and black pants. They also have white gloves.", + "location": "A stage in a theater or performance space. Black background.", + "poses": "The dancers are performing dynamic poses, including jumps, turns, and hand gestures. There's an energy of excitement", + "angle": "Slightly frontal angle, giving a full view of the group." + }, + "videoPrompt": "The dance crew breaks into more complex moves with syncronized popping and locking. The stage lights shift to orange, and a spotlight follows one dancer as he does a breakdance spin. They transition seamlessly into a hip-hop routine with energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638390581_6.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of six young dancers are performing a modern dance routine in a dimly lit stage.", + "style": "Contemporary Photography", + "lighting": "Low-key, with dramatic shadows and focused spotlights on the dancers.", + "outfit": "Casual but stylish - mix of hoodies, t-shirts, short tops and plaid shirt. Dancers wear athletic shoes.", + "location": "A stage in a dance studio or performance space.", + "poses": "Dynamic poses, with dancers mid-motion showing energy and enthusiasm. They are performing a modern, energetic dance.", + "angle": "Slightly low angle to emphasize the dynamism of the dance." + }, + "videoPrompt": "The dancers continue their energetic dance routine, transitioning into an intricate combination of hip-hop and contemporary styles. The lights shift creating a dynamic atmosphere as they move in sync, with one dancer leading into a more complex solo that builds up to a climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638390868_7.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of six dancers are performing a hip-hop/urban dance in a studio with a brick wall background.", + "style": "Realistic Photography, Urban Style", + "lighting": "Dramatic lighting, with spotlights highlighting the dancers. Some shadows create depth.", + "outfit": "Casual and modern clothing – mix of tank tops, hoodies, plaid shirts, shorts, jeans and sneakers. Variety in colors, but generally a darker palette.", + "location": "Indoor dance studio with brick walls and a dark floor", + "poses": "Dynamic poses – dancers are mid-motion, exhibiting energy and enthusiasm. Mix of individual and group interactions.", + "angle": "Slightly low angle, giving the dancers prominence. Wide shot captures the whole group." + }, + "videoPrompt": "The dance scene escalates into a full blown hip hop battle, with dancers breaking out into more complex moves and incorporating more dynamic transitions. The dancers begin to interact with each other, building momentum and creating an energetic vibe!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638391275_9.png" + }, + { + "scene": "Dynamic Hip-Hop Performance", + "imagePrompt": { + "description": "A large group of dancers in a hip-hop performance setting. The central dancer is performing a dynamic pose, while the surrounding dancers create a frame around him.", + "style": "Photojournalism/Hip-Hop Photography", + "lighting": "Dramatic low-key lighting with a focus on the stage and a subtle glow from below.", + "outfit": "Casual hip-hop attire - t-shirts, jeans, baseball caps, bandanas. Predominantly dark colors with some brighter accents.", + "location": "A stage or indoor performance space, possibly a European dance competition (indicated by the text on the image)", + "poses": "The central dancer is in an active pose, almost like he's about to drop low. The surrounding dancers are in various poses - raising hands, cheering, creating a supportive frame.", + "angle": "Low-angle shot, giving the dancers prominence and power." + }, + "videoPrompt": "The beat drops! The scene explodes into a fast-paced hip-hop dance battle. The dancers transition between energetic breakdancing, popping, locking, and smooth grooves. Focus on dynamic angles and fluid transitions. Add some 'B' girls to make it more lively.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638391491_11.png" + }, + { + "scene": "Breakdancing at the Airport", + "imagePrompt": { + "description": "A group of seven people are performing a breakdance routine in front of a modern airport terminal.", + "style": "Realistic photography, urban style", + "lighting": "Bright daylight with slight shadows, creating contrast.", + "outfit": "Casual streetwear with athletic influence. Many wear neutral tones like grey and white, with splashes of color (blue, red). Some have baseball caps or beanies.", + "location": "Airport terminal forecourt, likely European airport", + "poses": "Dynamic breakdancing poses – a central dancer is doing a handstand/spin, others are in various positions of hip-hop dance. One person has arms raised and fingers pointing.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A group of breakdancers perform an energetic routine, building on the initial scene. They move from a base set to a dynamic dance sequence with smooth transitions, ending with all members breaking into unison.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638391611_12.png" + }, + { + "scene": "A Group Pose with Bold Fashion", + "imagePrompt": { + "description": "A large group of people are seated on a teal couch against a white backdrop.", + "style": "Fashion photography, editorial style", + "lighting": "Bright and even lighting, creating clear visibility of the subjects and their outfits", + "outfit": "Diverse range of fashionable clothing; including denim, crop tops, bold prints, statement jackets, and mix-and-match styles. Outfits are mostly modern with a touch of edge.", + "location": "A simple white backdrop with a teal couch.", + "poses": "Most subjects are seated in various poses, some are looking directly at the camera while others are engaging with each other. Poses are dynamic and reflect confidence", + "angle": "Frontal view, slightly below eye level." + }, + "videoPrompt": "A fast-paced dance scene set to a trendy beat starts with the group in the pose from the image. Each member gets a spotlight moment, showcasing their unique style. The dancers move dynamically, transitioning between individual and group poses. A vibrant energy is created using quick cuts and bold color grading.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638392872_18.png" + }, + { + "scene": "Urban Dance & Hip Hop Culture", + "imagePrompt": { + "description": "A colorful photograph capturing a hip hop dance crew in action against a backdrop of vibrant graffiti.", + "style": "Candid Photography, 1980s", + "lighting": "Natural light, slightly overcast giving it an authentic urban feel.", + "outfit": "Typical 1980s hip hop fashion: jeans, t-shirts, shorts and tank tops. Some crew members are wearing white sneakers.", + "location": "A concrete sidewalk next to a wall covered in large scale graffiti.", + "poses": "One dancer is doing a headspin; another holds a boombox, while others stand in various poses showcasing hip hop style.", + "angle": "Slightly low angle, focusing on the dancers and their backdrop." + }, + "videoPrompt": "The crew drops into a full-blown dance battle with energetic breakdancing, locking, and popping. The boombox player begins beatboxing while the background is lit with neon colors.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\42080577764442272_1758638393256_22.png" + }, + { + "scene": "Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A group of seven female dancers are captured in a dynamic pose, appearing to be mid-dance.", + "style": "Contemporary dance photography. It has the look of a high end dance magazine cover.", + "lighting": "Soft and even lighting, creating dramatic shadows on the floor", + "outfit": "Black leotards or tight black bodysuits", + "location": "A minimalist white studio with a seamless backdrop.", + "poses": "Each dancer is in a unique pose, ranging from arching backs to outstretched limbs. They are interconnected and fluid, showing strength and grace.", + "angle": "Slightly low angle, emphasizing the dancers' connection to the floor." + }, + "videoPrompt": "The dance ensemble transitions into a fast-paced, energetic routine with dancers flowing between more intricate poses. A burst of music starts as they move in unison, then splits into smaller groups, each dancer showcasing a unique skill and style. The lights dim slightly, adding to the drama.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\430516045652711697_1758638470388_0.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of ten female dancers are performing a complex dance sequence in a studio setting.", + "style": "Contemporary Photography, with a focus on form and movement.", + "lighting": "Soft, even lighting – creates a smooth look for the scene. ", + "outfit": "All dancers wear identical light-yellow leotards", + "location": "A simple studio space with a grey backdrop.", + "poses": "The dancers are in various positions: some are grounded in a semi-squat, while one dancer is leaping upwards and outward. The others support her.", + "angle": "Slightly low angle, emphasizing the dancers' form and their dynamic performance." + }, + "videoPrompt": "A group of dancers perform an energetic dance sequence with the backdrop changing from grey to gold as they build into a crescendo. They transition from grounded positions to more complex movements, including leaps and turns. The scene is fast-paced with smooth transitions between poses.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\430516045652711697_1758638471792_5.png" + }, + { + "scene": "Elegant Dance Group", + "imagePrompt": { + "description": "A group of young girls in black ballet costumes are arranged symmetrically around a woman, who is standing directly between them. The girls are all seated in a split position, creating a circular arrangement with the central figure.", + "style": "Professional Photography", + "lighting": "Warm and diffused lighting, creating a soft glow on the subjects.", + "outfit": "All the girls wear black leotards and black ballet shoes. The woman is wearing a dark formal outfit - possibly a suit or dress.", + "location": "A simple studio setting with a light orange backdrop.", + "poses": "The young dancers are in an elegant split position, creating a dynamic circular arrangement. The central figure stands in a more upright pose, holding her arms.", + "angle": "Frontal shot, slightly below eye level." + }, + "videoPrompt": "A fast-paced dance scene with the group of girls transition from the seated split position into a flowing ballet routine. They move gracefully between several different positions, accompanied by dynamic music. The woman is their instructor and leads them through a lively dance that builds in intensity.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\430516045652711697_1758638472065_8.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of nine dancers are arranged in a complex, interconnected pose resembling a human pyramid or large dance wheel.", + "style": "Contemporary Dance Photography", + "lighting": "Soft and even lighting, creating good contrast to highlight the dancers’ forms.", + "outfit": "Black and teal patterned unitards with long sleeves. The outfits have a modern design with flowing patterns.", + "location": "A white background studio setting.", + "poses": "The dancers are in flexible positions, showcasing their strength and coordination. They're arranged to create a fluid shape resembling a large dance wheel.", + "angle": "Straight-on perspective from waist level." + }, + "videoPrompt": "A dynamic dance scene with the group of dancers transitioning into an array of different formations, building on the flexible positions shown in the image. Add flowing musical notes and use quick cuts between dancers to give the appearance of a fluid shape changing.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\430516045652711697_1758638473641_13.png" + }, + { + "scene": "Dynamic Dance Pyramid", + "imagePrompt": { + "description": "A group of ten female dancers are posed in a complex pyramid formation against a stark white background.", + "style": "Contemporary Dance Photography", + "lighting": "Soft, even lighting – creates shadows but doesn’ to overshadow the scene.", + "outfit": "All dancers wear gray, fitted dancewear with semi-transparent overlay. They're wearing shorts and tops in a contemporary style.", + "location": "Dance studio with a white backdrop", + "poses": "The dancers are arranged in a pyramid shape, with multiple layers of dancers supporting each other. Top dancer has arms outstretched to frame the scene. The bottom layer is grounded and supports those above. There's an emphasis on fluid movement.", + "angle": "Frontal view, slightly below eye level." + }, + "videoPrompt": "The pyramid collapses into a dynamic dance sequence, with dancers flowing off each other in contemporary style, creating a fluid wave of motion that transitions from a structured pose to a more open and expressive dance. The dancers are energetic but controlled.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\430516045652711697_1758638474632_17.png" + }, + { + "scene": "Nutcracker Dancers", + "imagePrompt": { + "description": "A group of young ballet dancers dressed as snowflakes, arranged in a circular pattern. They are wearing white tutus and silver tiaras with delicate snowflake designs.", + "style": "Photography - Dance/Performance", + "lighting": "Bright, overhead lighting creates soft shadows but maintains good visibility.", + "outfit": "White ballet costumes with shimmering details; Tutus, leotards, and sparkling headpieces.", + "location": "A dance studio floor, likely carpeted.", + "poses": "The dancers are in a variety of poses: some are lying on their backs with arms raised, others are seated in circles. Most have bright smiles", + "angle": "Overhead shot, almost directly above the circle of dancers." + }, + "videoPrompt": "The dancers begin to perform a dynamic ballet routine, inspired by the Nutcracker's 'Snowflake' scene! They move from their current positions into a swirling dance, mimicking falling snowflakes. The dancers’ movements are fluid and energetic, building in intensity as they transition through different snowflake shapes. Music swells with a delicate piano melody.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\430516045652711697_1758638477335_29.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are silhouetted against a warm, golden light source, creating dramatic shadows and an energetic feel. They're in motion, with varying degrees of movement from raised arms to forward strides.", + "style": "Dramatic Photography; Contemporary Dance", + "lighting": "Strong directional lighting, originating from the front, creating prominent shadows. Warm, golden tone.", + "outfit": "Simple, modern dance outfits - likely dark clothing allowing focus on form and movement.", + "location": "A stage or dance floor, possibly a theater with a darkened setting", + "poses": "Dynamic poses – dancers are in motion, some reaching forward, others with raised arms, suggesting energetic dancing. They're mid-movement, indicating a burst of energy.", + "angle": "Slightly low angle, capturing the group as a whole and giving them dynamism." + }, + "videoPrompt": "A modern dance troupe bursts into life on stage! Start with dancers in silhouette, building to dynamic, fast paced choreography. Add dramatic lighting shifts, and focus on fluid movements – both forward strides and elegant curves. Include quick cuts between dancer's faces as they move through the scene, building intensity.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\43699058880991705_1758638788257_3.png" + }, + { + "scene": "Dynamic Dance Rehearsal", + "imagePrompt": { + "description": "A black and white photograph of a large group of dancers performing in a dance studio.", + "style": "Photorealistic, Dramatic", + "lighting": "Dramatic overhead lighting, creating strong shadows and highlights. The light is fairly uniform across the scene.", + "outfit": "Mix of athletic wear - mostly black with some white accents. Dancers are wearing sports bras, shorts, and leggings.", + "location": "A large dance studio with a hardwood floor. It seems to be an indoor space with simple overhead lighting", + "poses": "The dancers are in various poses, indicating a dynamic dance routine. Some have their arms raised, others are crouched or mid-stride. They're energetic and expressive.", + "angle": "Slightly elevated angle, giving the viewer perspective on the whole group." + }, + "videoPrompt": "A fast-paced video showing the dancers transitioning from a dramatic dance routine into an upbeat hip-hop performance in the same studio. The camera sweeps around the group, showcasing their energy and skill, culminating in a final pose with all dancers.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\43699058880991705_1758638789026_6.png" + }, + { + "scene": "Elegant Silhouette", + "imagePrompt": { + "description": "A striking silhouette of a woman in profile, set against a large circular backdrop.", + "style": "Classic Stage Lighting/Dramatic Photography", + "lighting": "Single light source creating a strong contrast between the silhouette and the bright circle. Warm tones with subtle texture on the background.", + "outfit": "A sleek, fitted dress – likely long and flowing to accentuate her curves. Suggests elegance and sophistication.", + "location": "Stage or studio setting, minimal distractions.", + "poses": "The woman is in a dynamic pose - slightly arched back, arms extended as if performing a dance move. Suggests grace and confidence.", + "angle": "Straight-on view of the silhouette." + }, + "videoPrompt": "A dancer performs a flowing modern dance routine, starting with the silhouette. The dance builds in intensity, using smooth movements to follow the silhouette's form. The scene transitions from an elegant solo dance to a partner, dynamic duo dance on stage, featuring rich color and warm lighting.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\43699058880991705_1758638792622_20.png" + }, + { + "scene": "Red Alert", + "imagePrompt": { + "description": "A group of four women stand in a dramatic scene with a building engulfed in flames, and a fiery red backdrop.", + "style": "Dramatic, high-contrast photography. Similar to a music video still for a Kpop group.", + "lighting": "Predominantly red lighting, creating an overall warm tone. The fire creates a dynamic light source.", + "outfit": "The women are wearing dark outfits with varying levels of sophistication; black tops and bottoms with some sparkle or shine. One is in a red ensemble.", + "location": "A warehouse-like building, possibly industrial, with a reflective surface underneath them.", + "poses": "The group is standing in a line, facing forward, with an air of confidence and power. They are striking poses", + "angle": "Low angle, giving the women dominance and power." + }, + "videoPrompt": "A dynamic dance scene set to a beat, showcasing the four women moving gracefully amongst flames and smoke. The building is in ruins but they are unfazed by it. They begin with powerful movements, then transition into a more intricate choreography as the fire intensifies, culminating in a climactic pose. Add subtle red color grading.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\43699058880991705_1758638795625_29.png" + }, + { + "scene": "A Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A large group of dancers, likely performing a contemporary or ballet piece, are clustered in the center of the stage. The dancers appear to be embracing and supporting each other, creating an intricate web of movement.", + "style": "Photorealistic, Dramatic", + "lighting": "The lighting is dramatic with a blue hue cast over the scene, creating depth and emphasizing the dancers' forms. It appears to be a theatrical stage setting with focused spotlights.", + "outfit": "Dancers are wearing dark blue or teal colored dancewear that hugs their form, likely leotards or unitards. Some have flowing fabrics like skirts adding dimension.", + "location": "A formal theatre stage, well-lit and spacious.", + "poses": "The dancers are in dynamic poses, with some reaching upward and others intertwining, suggesting a blend of strength, emotion and connection. They're performing an expressive dance routine.", + "angle": "Slightly low angle, giving the ensemble prominence." + }, + "videoPrompt": "A sweeping camera shot reveals more dancers in flowing blue fabrics, starting with a delicate duet then building to a full energetic dance sequence on stage. The music swells and builds into a crescendo of movement as they perform a dynamic contemporary dance routine, showcasing their connection and strength.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\442267625928636175_1758638976427_1.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of eight dancers are performing on a stage with a dark backdrop. Most of the dancers are wearing shades of blue, ranging from light to dark indigo. The dancers appear to be in motion, with several reaching upwards and outward.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic overhead lighting, creating shadows and highlighting the dancers’ forms. A subtle blue hue is cast throughout the image.", + "outfit": "The dancers are wearing a variety of blue outfits - some in suits with wide legs, others in dresses, and some wearing simple tops and trousers. The style is modern but elegant.", + "location": "A stage with a dark backdrop", + "poses": "The dancers are captured mid-motion, showing dynamic energy. A central dancer is the focal point, leaping upwards with outstretched arms. Other dancers are positioned around, reaching for the light and creating flowing lines.", + "angle": "Frontal view of the stage, slightly below eye level." + }, + "videoPrompt": "The dance continues as a burst of energy flows through the group. Dancers transition into more fluid movements with quick turns and dynamic leaps. The dancers start to interact with each other, building on their initial positions, creating an energetic dance scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\442267625928636175_1758638977379_8.png" + }, + { + "scene": "Electric Fairies", + "imagePrompt": { + "description": "A group of ballet dancers performing in a stage setting with dramatic lighting.", + "style": "Photorealistic, Dramatic", + "lighting": "Blue and pink ambient lighting, with sparkles or glowing effects throughout the scene. There's a reflection on the floor.", + "outfit": "Traditional ballet outfits: tutus in light colors (primarily white) and skin-toned tights.", + "location": "A stage setting, likely indoors, with a reflective surface.", + "poses": "The dancers are performing, specifically doing a dance move with lifted legs. They're arranged in rows or layers to give depth. ", + "angle": "Low angle, capturing the dancers from below, emphasizing their elegance and power." + }, + "videoPrompt": "A dynamic ballet scene with a group of dancers dancing with bright glowing sparkles all around them. The music is fast-paced and enchanting. They move in sync with graceful motions and elegant forms. Each dancer has unique movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\442267625928636175_1758638977488_9.png" + }, + { + "scene": "Starry Night Dance", + "imagePrompt": { + "description": "A silhouette of a young girl performing a dance in front of a dazzling backdrop of twinkling lights, resembling stars.", + "style": "Dramatic Photography, Black and White", + "lighting": "Backlit, with the main light source coming from the 'stars' creating dramatic shadows.", + "outfit": "A short dress, possibly a dancer's outfit. Though it’s a silhouette, its likely a formal or dance-appropriate style.", + "location": "A stage or studio, with a backdrop of twinkling lights.", + "poses": "The girl is in motion, dynamically dancing with one arm raised and her other hand holding something (possibly a prop).", + "angle": "Slightly low angle, capturing the dynamic pose." + }, + "videoPrompt": "A young dancer performs an energetic dance routine on stage. The scene starts with the girl in silhouette, dancing amidst falling 'stars' – glittering confetti or light streams. She spins and twirls, her movements becoming more dynamic as she progresses. Her dance is a mix of modern and classic, inspired by both elegance and energy. It develops into a fast-paced dance sequence, highlighting the dancer’s grace and skill with sparkling lights.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\442267625928636175_1758638980076_22.png" + }, + { + "scene": "A dramatic tableau from a ballet performance.", + "imagePrompt": { + "description": "A group of dancers surround a central figure in a ballet setting, creating a sense of both adoration and oppression. The dancers are arranged in a semi-circle around the main dancer with their arms outstretched, giving an impression of either worship or being held captive.", + "style": "Dramatic Ballet Photography", + "lighting": "Low light with dramatic shadows, spotlight on the central figure.", + "outfit": "Ballet costumes - dancers wearing tan colored leotards and dark green patterned tops. Some are in a kneeling position while others are standing.", + "location": "A stage setting, possibly a theater with black backdrop", + "poses": "The central dancer is surrounded by other dancers who have outstretched arms. The dancers below the main figure are lying down in a row. Arms are reaching out as if to worship or support.", + "angle": "Slightly low angle, focusing on the central figures." + }, + "videoPrompt": "A flowing dance sequence begins with the main dancer breaking free from the surrounding dancers. The dancers then transition into an energetic and dynamic dance scene, showing the evolution of a transformation or power shift. The music builds in intensity.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\4785143350486770_1758638693993_15.png" + }, + { + "scene": "Ethereal Dance", + "imagePrompt": { + "description": "A dimly lit stage with a group of dancers performing a contemporary piece. One dancer is in the foreground, executing a fluid movement while several others stand in a line behind them.", + "style": "Dramatic Modern Dance Photography", + "lighting": "Subtle and dramatic lighting; predominantly dark with a focused spotlight on the main dancer.", + "outfit": "Dancers are wearing neutral-colored, possibly earth-toned, flowing garments – likely long sleeves or dresses.", + "location": "A stage in a theater; minimalistic set.", + "poses": "The main dancer is mid-movement, with an expressive and fluid body language. The other dancers stand in a line looking forward.", + "angle": "Slightly elevated angle giving a good view of the whole scene." + }, + "videoPrompt": "A dynamic dance continues as more dancers join the foreground, building into a complex choreography. The music swells and becomes more intense with rhythm; the dancers move in unison while one dancer leads to an energetic climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\4785143350486770_1758638695217_20.png" + }, + { + "scene": "A Chorus of Grief", + "imagePrompt": { + "description": "A group of dancers are performing a contemporary dance on a stage with a black backdrop. The dancers all wear similar grey outfits, resembling flowing gowns or robes.", + "style": "Contemporary Dance/Performance Art", + "lighting": "Dramatic and focused, creating shadows and highlighting the dancers' forms.", + "outfit": "Grey, long flowing gowns with some sort of elegant headpieces. The dancers are wearing ballet shoes.", + "location": "A stage with a black backdrop.", + "poses": "The dancers have dynamic poses, some reaching out as if in mourning or anguish, while others are curled up on the ground. One dancer is prominently featured in the center, bent over in an expression of sadness and pain.", + "angle": "Slightly low angle, giving the viewer a sense of immersion within the performance." + }, + "videoPrompt": "The dancers begin to move with increasing intensity, their grief transforming into a powerful struggle. They reach for one another, attempting to pull each other up while still in mourning. The scene builds into a dynamic dance that expresses both sorrow and resilience, culminating in an elegant group formation.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\4785143350486770_1758638695816_22.png" + }, + { + "scene": "Dynamic Dance Ensemble", + "imagePrompt": { + "description": "A group of dancers in a monochrome setting, arranged in various poses indicating a dynamic dance sequence.", + "style": "Contemporary Photography", + "lighting": "Soft and diffused lighting, creating contrast between the subjects.", + "outfit": "Mix of simple outfits – some dancers are wearing tight-fitting tops with trousers/leggings, others are in loose fitting clothing. Most wear minimalist styles.", + "location": "A seamless studio backdrop.", + "poses": "The group is arranged in a variety of poses from crouching to standing, indicating an active dance sequence. Many figures have dynamic angles, and some show interaction between dancers.", + "angle": "Wide-shot, slightly below eye level." + }, + "videoPrompt": "A flowing contemporary dance routine begins with the ensemble in their current positions. As the music swells, they transition into a fast-paced series of interconnected moves, building from fluid and graceful to more intense and energetic. The dancers move as one unit, sometimes separating into smaller groups, then reforming. They perform an intricate choreography that blends power and elegance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\4785143350486770_1758638696195_24.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing a contemporary dance in a dimly lit stage.", + "style": "Dramatic, theatrical photography", + "lighting": "Warm but subdued lighting with dramatic shadows and highlights. A spotlight focuses on the center of the stage.", + "outfit": "The dancers are wearing semi-formal outfits – likely dark tan or beige, giving them a unified look", + "location": "A stage, possibly a theatre or performance space.", + "poses": "The dancers are in various poses, most are doing handstands with their legs outstretched. They appear to be engaged in a dynamic dance sequence.", + "angle": "Slightly low angle looking up at the dancers giving them more prominence." + }, + "videoPrompt": "The dance builds from stillness into a whirlwind of motion and energy, with the dancers transitioning between handstands, spins, and leaping jumps. They move forward in unison, creating a flowing wave of dynamic movement. The dancers begin to interact, building towards a climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\4785143350486770_1758638696978_27.png" + }, + { + "scene": "Dance Rehearsal", + "imagePrompt": { + "description": "A brightly lit dance studio with a group of dancers in black outfits. A photographer is capturing the moment.", + "style": "Candid Photography", + "lighting": "Bright and even, overhead fluorescent lighting", + "outfit": "All subjects are wearing dark, contemporary dance attire - likely leotards or tight-fitting tops with pants.", + "location": "A spacious dance studio with a black dance floor and white walls.", + "poses": "The dancers are arranged in a dynamic pose – a central group with a dancer standing on top. The photographer is capturing the scene.", + "angle": "Slightly angled, eye-level view of the action." + }, + "videoPrompt": "A dynamic dance sequence begins with the dancers shifting from their base pose into a flowing contemporary dance routine. The lights dim slightly as they move to emphasize the flow and energy of the dance. The music builds in intensity, culminating in an energetic finale.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\49539664648663316_1758639073022_7.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing on a stage, bathed in warm yellow light.", + "style": "Dramatic Photography - similar to a dance performance still shot.", + "lighting": "Warm, directional lighting. Predominantly golden hues with shadows creating depth and contrast.", + "outfit": "Dark, sleek outfits – likely leotards or tight fitting costumes for dancers.", + "location": "A stage with a dark reflective surface.", + "poses": "The dancers are in mid-motion, with energetic poses suggesting a dynamic dance performance. They appear to be performing a complex routine.", + "angle": "Slightly low angle – gives the sense of grandeur and power." + }, + "videoPrompt": "A group of dancers continue their energetic dance routine on the stage, building into a more intense sequence with quick movements and jumps. The dancers move in sync, moving from one pose to another seamlessly. They are performing an expressive modern dance with strong emphasis on rhythm and energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638434094_1.png" + }, + { + "scene": "A Backbend in Elegance", + "imagePrompt": { + "description": "A woman with her hair pulled back into a bun is captured mid-backbend, creating an elegant and dynamic pose. She's wearing a black form-fitting dress that accentuates her physique.", + "style": "Candid Photography - similar to a fashion shoot", + "lighting": "Soft, natural lighting; slightly diffused to create subtle shadows on the skin", + "outfit": "Black V-neck dress; simple and elegant. Form fitting but not overly revealing.", + "location": "A studio or dimly lit space; likely a dance studio given the subject’s posture.", + "poses": "The main pose is a backbend, creating a graceful curve of her spine. Her arms are slightly raised in the bend. She's displaying strength and flexibility", + "angle": "Slightly low angle, capturing the upper body and torso." + }, + "videoPrompt": "A dancer performs an intricate routine with flowing movements, starting from a backbend and evolving into a dynamic dance sequence with a mix of modern ballet and contemporary styles. The scene is set in a dimly lit studio, with soft lighting that emphasizes her form and movement.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638434677_8.png" + }, + { + "scene": "Elegant Duet", + "imagePrompt": { + "description": "A dramatic image of two dancers performing a contemporary dance routine on a wooden stage.", + "style": "Photorealistic, Dramatic", + "lighting": "Warm and golden lighting, with a dark background to emphasize the performers.", + "outfit": "Both dancers are wearing neutral-toned, fitted costumes in a shade of tan. The female dancer is wearing a long, flowing dress while the male dancer has more traditional dance attire.", + "location": "A stage inside a theatre or performance space", + "poses": "The dancers are in dynamic poses, appearing to be mid-movement. They are both reaching outward with outstretched arms and legs, creating a sense of expansive movement.", + "angle": "Slightly low angle, giving the viewers a good view of their bodies." + }, + "videoPrompt": "The duet continues, building into a dynamic dance sequence where the dancers interact more closely. The female dancer leads with a fluid flow while the male dancer responds to her movements in rhythmic tempo, culminating in a powerful shared moment on the stage.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638435143_11.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing in a brightly lit stage with a blue background.", + "style": "Photorealistic, Dramatic", + "lighting": "Predominantly cool blue lighting creates a dramatic atmosphere. Some warm light is visible as well.", + "outfit": "The dancers are wearing casual outfits - some white shirts and others wear black tops along with pants.", + "location": "A stage in a theatre or dance studio.", + "poses": "The dancers have dynamic poses, they're mid-performance, appearing energetic.", + "angle": "Slightly front-on angle of the group." + }, + "videoPrompt": "A modern dance troupe continues their performance. The lights become more dynamic, with a spotlight focusing on each dancer as they perform complex moves. The dancers transition into a synchronized routine, showcasing fluid movements and powerful energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638435602_13.png" + }, + { + "scene": "Energetic Dance Performance", + "imagePrompt": { + "description": "A large group of people are performing a dynamic dance routine in a warmly lit indoor space.", + "style": "Contemporary, with a slight retro feel reminiscent of the 70s/80s", + "lighting": "Warm and diffused overhead lighting creates dramatic shadows. The lighting is slightly golden-toned.", + "outfit": "A mix of business casual and playful outfits—think plaid suits, wide legs, cropped tops, and some schoolgirl uniforms. There's a variety of pale pinks, tans, beiges, browns and light grays.", + "location": "An indoor stage or gymnasium with wooden flooring and a backdrop.", + "poses": "The dancers are in mid-motion, displaying energy and confidence. A lot of raised arms, dynamic angles, and energetic poses", + "angle": "Slightly low angle, giving the group prominence." + }, + "videoPrompt": "A dance crew breaks into a high-energy dance routine set to funky music. The dancers transition from synchronized movements to individual bursts of energy—a mix of breakdancing, jazz and contemporary styles. They are dressed in retro-inspired outfits that make them look like they' 70s/80s. After the performance, the crowd goes wild!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638435750_14.png" + }, + { + "scene": "Modern Dance Performance", + "imagePrompt": { + "description": "A group of dancers perform a modern dance routine in a gymnasium or large hall.", + "style": "Photorealistic, Dramatic", + "lighting": "Warm and dramatic overhead lighting. The light source is above the center of the room, creating strong shadows on the wooden floor.", + "outfit": "A mix of dancers wearing white clothing with some having a tan base color, all in modern dance attire – likely leotards or fitted separates.", + "location": "Indoors, gymnasium/large hall. There are rows of seating visible in the background, suggesting an audience. The stage is set on a wooden floor.", + "poses": "Dynamic poses – dancers are mid-movement with expressive arms and bodies. Some dancers stand upright, others crouch low to the ground, creating varied shapes.", + "angle": "Slightly high angle looking down at the performers." + }, + "videoPrompt": "A modern dance group continues their performance, building into a more dynamic, energetic routine with fluid transitions between dancers. Add in some dancers breaking away from the primary group and performing individual expressive movements. Use smooth camera transitions to follow the dancers as they move across the stage.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638436304_18.png" + }, + { + "scene": "A Dramatic Stage Performance", + "imagePrompt": { + "description": "A beautiful woman stands in the center of a stage, performing a dance routine under a sparkling chandelier. The backdrop is dark purple with scattered twinkling lights, resembling stars.", + "style": "Dramatic Photography", + "lighting": "Warm and dramatic lighting, creating both shadows and highlights on the performer.", + "outfit": "A sparkly silver-toned outfit with a corset top and low waistline. She has long flowing hair.", + "location": "A stage in front of an audience.", + "poses": "The woman is performing a dance pose, her arms outstretched gracefully, with one foot slightly off the ground", + "angle": "Straight-on, slightly from below to capture the chandelier." + }, + "videoPrompt": "The performer continues her dynamic dance routine, becoming increasingly energetic. Lights flash and build as she reaches a climax of her performance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638436578_21.png" + }, + { + "scene": "Dance under a Crimson Moon", + "imagePrompt": { + "description": "A silhouette of a woman in a flowing dress is dancing against an enormous, fiery orange moon.", + "style": "Dramatic and ethereal, resembling a cinematic still from a fantasy film.", + "lighting": "The image is dominated by warm, glowing orange light, creating a dramatic contrast between the subject and the background. It's almost entirely in shadow, giving it a mystical feel", + "outfit": "A flowing dress with tiered layers, suggesting an old-fashioned dance style like flamenco or possibly a modern iteration.", + "location": "Open air, likely a field or stage; the focus is on the moon and dancer.", + "poses": "The dancer is in mid-dance, arms raised high, flowing hair. Her silhouette suggests dynamic movement with energy", + "angle": "Low angle, looking upwards at the dancer and the moon." + }, + "videoPrompt": "A fast paced dance scene, in a ballroom setting, dancers are wearing flowing dresses and the backdrop is an enormous fiery orange moon! The dancers move in time with a dramatic orchestral score. Camera angles shift between wide shots of the entire group to close-ups of individual dancer's energetic movements.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638437037_25.png" + }, + { + "scene": "Ethereal Progression", + "imagePrompt": { + "description": "A line of women, progressively blurred, move forward in a minimalist setting. Each woman is elegantly dressed in neutral tones—primarily beige and tan—with flowing fabrics.", + "style": "Photorealistic with a soft, dreamy feel.", + "lighting": "Soft, diffused lighting creates prominent shadows that give depth to the image.", + "outfit": "Minimalist and elegant. The women are wearing long-sleeved tops and wide-legged pants/dresses in shades of beige and tan.", + "location": "A minimalist studio with a smooth white background.", + "poses": "Each woman is posed in a walking stance, creating an impression of forward motion. They all have a similar relaxed and graceful pose", + "angle": "Slightly side angle, capturing the line of women and their shadows." + }, + "videoPrompt": "A dynamic dance scene unfolding with flowing movements. Start with a single dancer in the foreground, then add dancers in a row, progressively more blurred as they move forward, building into an elegant contemporary dance routine, using earthy tones. The focus is on fluid motion and graceful transitions.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638437568_31.png" + }, + { + "scene": "Dynamic Dance", + "imagePrompt": { + "description": "A black-and-white photograph depicting a group of people engaged in an energetic dance, with blurred motion suggesting movement and flow. The figures are semi-transparent, giving them a ghostly appearance.", + "style": "Artistic Photography - slightly reminiscent of abstract expressionism", + "lighting": "Low light, but the image has good contrast creating shadows and highlights to create dynamic shapes", + "outfit": "The dancers wear a variety of outfits including casual tops, dresses, and pants. The clothing is varied in styles with some more formal than others.", + "location": "A dark indoor space, possibly a dance floor or studio.", + "poses": "The subjects are captured mid-movement, suggesting an active energetic dance. Some figures have raised arms, while others appear to be engaged in a pair dance", + "angle": "Slightly frontal perspective, giving the viewer a sense of being within the scene." + }, + "videoPrompt": "A fast-paced dance sequence with multiple dancers who are dancing in a dynamic and energetic way. The dancers transition between partners in a flowing motion, their movements fluid and expressive. The setting is an dimly lit indoor space, creating an atmosphere of mystery.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\5207355815218491_1758638437673_32.png" + }, + { + "scene": "Rooftop Citrus Dance", + "imagePrompt": { + "description": "A vibrant image capturing four people in a dynamic dance pose on a rooftop, surrounded by piles of oranges.", + "style": "Modern photography with a playful twist. It has a slightly fisheye lens effect.", + "lighting": "Bright daylight, creating strong shadows and highlights.", + "outfit": "Athletic casual wear - hoodies, joggers and baseball caps; outfits are brightly colored with red, white, black, and turquoise.", + "location": "A rooftop overlooking a building. It's a concrete space, with a clear blue sky overhead.", + "poses": "Dynamic poses indicating an energetic dance scene. Each person is in motion, expressing energy and playfulness.", + "angle": "Fisheye lens perspective, giving a wide view of the entire rooftop." + }, + "videoPrompt": "The group breaks into a fast-paced, energetic dance routine, synchronized to upbeat music. They dance amongst piles of oranges, playfully kicking them while dancing and doing a variety of dynamic dance moves, building towards a climax with an orange toss.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638324413_1.png" + }, + { + "scene": "Urban Fruit Warehouse", + "imagePrompt": { + "description": "A group of four young people are posing in a fruit warehouse, surrounded by stacks of orange crates.", + "style": "Modern Photography with vibrant color grading.", + "lighting": "Dramatic red and blue lighting, creating a modern vibe. Top down lighting from fluorescent lights.", + "outfit": "Casual streetwear with bold colors and patterns. Mix of sporty and retro styles, including tracksuits, white shoes, and contrasting colored jackets.", + "location": "Indoor warehouse, specifically a fruit packing/storage area. Concrete floor, metal walls.", + "poses": "Three people are seated on orange crates, while one is leaping in the air with energy. Dynamic poses suggesting playful energy.", + "angle": "Slightly low angle, capturing the full scene and highlighting their presence." + }, + "videoPrompt": "The beat drops! The group breaks into a dynamic dance routine around the fruit crates. Start with simple moves then build to more complex choreography. Use smooth transitions between dancers, focusing on energy and rhythm. Add some subtle interaction with the oranges – a playful grab or toss. Focus on quick cuts and vibrant color.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638324568_3.png" + }, + { + "scene": "Dynamic Fashion Shoot", + "imagePrompt": { + "description": "Three young adults are posing in a fashion shoot with a minimalist backdrop.", + "style": "Modern Photography, Candid Style", + "lighting": "Soft, diffused lighting; creating high contrast and shadows.", + "outfit": "Casual, comfortable outfits with neutral tones. The clothing is modern but has a slight retro feel.", + "location": "A white studio setting, with a soft fabric backdrop.", + "poses": "Each subject is in different pose. One is seated on a cube, another is doing a dynamic dance move, and the third is relaxing while looking directly at the camera.", + "angle": "Slightly low angle, giving the viewer an immersive perspective." + }, + "videoPrompt": "The three young adults begin to break into a fast-paced dance routine, moving between the cube, the dancer's dynamic pose, and each other. The dance becomes more energetic, with all 3 focusing on smooth transitions. They transition into a modern dance inspired by hip hop.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638324702_4.png" + }, + { + "scene": "Basketball Hair Salon", + "imagePrompt": { + "description": "A group of four women are seated in a retro hair salon, surrounded by red barber chairs and basketballs. They're dressed in sporty athletic wear with bright colors and patterns.", + "style": "Fashion photography, dynamic composition", + "lighting": "Warm overhead lighting, giving the scene a vibrant and slightly nostalgic feel.", + "outfit": "Mix of athletic wear and trendy streetwear. Basketball shorts, tracksuits, brightly colored sneakers, and crop tops are prominent, with a focus on bold color blocking and patterns.", + "location": "A retro hair salon, complete with barber chairs and fluorescent lighting.", + "poses": "Each woman is seated in a barber chair, some holding basketballs. They're generally relaxed but have dynamic poses conveying confidence and energy.", + "angle": "Slightly wide angle shot, capturing the whole group and their environment." + }, + "videoPrompt": "A dynamic dance scene set to upbeat music with the four women performing a hip-hop dance routine, using the barber chairs as part of the choreography. The dancers move between the chairs, incorporating basketballs into their dance moves.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638324771_5.png" + }, + { + "scene": "A Dynamic Dance Scene", + "imagePrompt": { + "description": "A vibrant group of young people are captured in a burst of joyful laughter, seemingly celebrating something. The image is dynamic and full of energy.", + "style": "90s fashion photography with a focus on youthful exuberance", + "lighting": "Bright and cheerful, with slightly diffused light giving the image a soft feel", + "outfit": "A mix of 90s casual wear – including sweatshirts, tracksuits, and various hair styles. The clothing is colorful, embodying that era's trend.", + "location": "Outdoors, in front of what appears to be an outdoor setting with trees.", + "poses": "The group is engaged in a dynamic dance scene; the subjects are mostly laughing or grinning, looking carefree and energetic.", + "angle": "A medium shot, slightly angled upwards to capture the energy of the whole group." + }, + "videoPrompt": "Dynamic dancers are performing a lively 90s dance with a modern beat. They're moving in sync, but each dancer has individual flair. The scene transitions between them as they move to an energetic and upbeat tempo.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638325013_7.png" + }, + { + "scene": "Dynamic Runners", + "imagePrompt": { + "description": "A group of four runners are depicted in a vibrant street setting. The primary focus is on the two front runners, a woman and a man, both engaged in a dynamic run. They appear to be competing or playfully challenging each other.", + "style": "Modern Photography", + "lighting": "Natural daylight with shadows indicating a late afternoon sun.", + "outfit": "The runners wear athletic clothing: shorts and tops, some with compression sleeves, and various hats. The outfits are colorful, including blues, oranges, and whites.", + "location": "A street with a stone wall beside it. It's an urban environment, likely a European city based on the architecture.", + "poses": "The runners are in motion, expressing energy and enthusiasm. They’re mid-stride, with the woman leading with outstretched arms.", + "angle": "Slightly low angle, capturing the runners as they move forward." + }, + "videoPrompt": "A dynamic dance scene set to upbeat music begins. The four runners transition seamlessly into a hip-hop dance routine, mimicking their competitive energy from the image. One runner starts with a breakdance, spinning on its foot, then the other runners joins in, all moving in sync, and is centered by the woman' fornt runner, who leads the group of 4 runners. The scene culminates with a celebratory pose that mirrors the image’s energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638325485_8.png" + }, + { + "scene": "Dynamic Breakdancing Performance", + "imagePrompt": { + "description": "A vibrant image capturing a breakdancer in mid-performance, surrounded by an audience. The dancer is executing a complex move, likely a windmill or similar spin, while supported on his hands and shoulders.", + "style": "Candid Photography - Action Shot", + "lighting": "Warm overhead lighting, creating strong shadows and highlights, giving it a stage feel.", + "outfit": "Casual Streetwear – The dancer wears a white shirt, jeans, and possibly baseball cap. Audience is in casual attire.", + "location": "Indoor Arena or Hall - looks like a gymnasium or event space with spectators surrounding the dancer", + "poses": "The main subject is dynamically engaged in a breakdancing move. Audience is varied in poses – seated, standing, observing.", + "angle": "Slightly low angle to emphasize dynamism of the dancer." + }, + "videoPrompt": "A vibrant scene continues with the breakdancer seamlessly transitioning from this pose into a complex series of moves including spins, freezes, and power moves. The camera pans around him as he dances in sync with energetic music, eventually ending with a dramatic freeze.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638325971_9.png" + }, + { + "scene": "Vibrant Dance Party", + "imagePrompt": { + "description": "A large group of people are performing a lively dance in what appears to be a colorful, urban street setting.", + "style": "Realistic with vibrant colors; reminiscent of music video photography", + "lighting": "Bright and natural daylight, creating strong contrast and shadows.", + "outfit": "Mix of brightly colored sportswear and revealing outfits. Many people are wearing shorts or short tops, some with patterned designs.", + "location": "A narrow street lined by colorful buildings, likely in a tropical location. There's also visible gas tanks, hinting at outdoor use", + "poses": "Dynamic dance poses; several people are actively dancing, while others are in the background adding to the energy of the scene.", + "angle": "Slightly overhead perspective, giving viewers a good view of all the dancers." + }, + "videoPrompt": "The vibrant dance party continues! The camera pans through the street, focusing on different dancers as they move and groove. A dancer breaks into a full-blown dance with a dynamic spin. Add some more dancers in the middle to create more energy!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638326055_10.png" + }, + { + "scene": "Dynamic Dance Movement", + "imagePrompt": { + "description": "A group of diverse individuals are captured in a dynamic dance movement, showcasing athleisure wear and modern style.", + "style": "Candid Photography - captures a real moment with natural lighting.", + "lighting": "Soft but visible light, creates shadows to show depth", + "outfit": "Athletic and trendy. Most of the models are wearing comfortable clothing, in neutral tones, with some color contrast. They’re all wearing Nike shoes.", + "location": "A minimalist studio setting with a grey concrete floor.", + "poses": "Each individual is in dynamic poses: one model is mid-dance, bending forward while another has an arm raised, the rest are engaging in fluid motion.", + "angle": "Slightly above eye level to capture the scene." + }, + "videoPrompt": "A group of dancers break into a fast-paced modern dance routine. The music is upbeat and energetic, with each dancer taking turns showcasing their skill. They start with more individual motions then slowly move as a collective group.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638326123_11.png" + }, + { + "scene": "Dynamic Dance in a Red Warehouse", + "imagePrompt": { + "description": "A group of seven people are dynamically posed inside what appears to be a warehouse, with a red color scheme dominating the scene. The foreground is dominated by a large red barrel, and confetti is scattered throughout.", + "style": "Modern photography with dynamic action", + "lighting": "Dramatic red lighting, giving the scene an energetic feel", + "outfit": "A mix of athletic wear - tracksuits, leggings, and sneakers – in various colors, but predominantly black, white, and orange. Some subjects are wearing headbands.", + "location": "An industrial warehouse with wooden beams overhead.", + "poses": "The group is engaged in a dynamic dance scene, jumping, reaching and posing in energetic ways. One person stands central while others surround them", + "angle": "Slightly low angle, giving the viewer an immersive feel." + }, + "videoPrompt": "A fast-paced hip hop dance routine unfolds within the warehouse, with dancers building on the energy of the image. The scene transitions between dancers, each highlighting a different pose in the image as they build into a full dance sequence, all set to a vibrant beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638326280_13.png" + }, + { + "scene": "Dynamic Dance in a Concrete Loft", + "imagePrompt": { + "description": "A young woman with curly hair stands in the center of an industrial loft space, dynamically posing with arms outstretched. She's wearing a cream-colored set of wide leg pants and a cropped top, layered under a bright orange jacket.", + "style": "Modern Fashion Photography", + "lighting": "Natural light coming from large windows, creating dramatic shadows in the concrete space. Warm tones are present on the backdrop.", + "outfit": "Trendy athleisure with a focus on comfortable silhouettes. The outfit features wide leg pants and a cropped top, layered under an orange jacket.", + "location": "A dilapidated industrial loft with exposed concrete walls and floors. Large windows provide light.", + "poses": "Dynamic dance pose. Arms are outstretched in the motion of dancing.", + "angle": "Slightly angled upward perspective, emphasizing height and the details within the space." + }, + "videoPrompt": "The dancer transitions into a dynamic hip-hop routine, utilizing the entire loft space to build energy. She starts with quick footwork, then moves onto more fluid dance movements in sync with a beat. The scene is set with subtle shifts between colors and lighting.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638326642_15.png" + }, + { + "scene": "Night Club Dance", + "imagePrompt": { + "description": "A vibrant shot of a crowded night club with people dancing in the foreground.", + "style": "Candid photography, realistic.", + "lighting": "Low-light, warm and cool tones with red/orange hue from stage lighting.", + "outfit": "Mix of casual & trendy outfits. Many people are wearing darker colors, with pops of color like a bright red jacket.", + "location": "A dimly lit nightclub dance floor.", + "poses": "Dynamic poses of dancing and celebration. People are raising their hands, using phones to capture the moment, and generally enjoying themselves.", + "angle": "Slightly above eye level, giving an overview of a larger group." + }, + "videoPrompt": "A dynamic dance scene in a nightclub with people celebrating, moving to the beat. The camera sweeps through dancers and focuses on their energy. Use a fast-paced rhythm, with some people dropping to the floor.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638326804_17.png" + }, + { + "scene": "Dynamic Breakdance", + "imagePrompt": { + "description": "A vibrant image capturing a breakdancer in mid-motion, performing a complex move resembling a backflip or windmill. There's a crowd surrounding the dancer, observing with enthusiasm.", + "style": "Candid photography, reminiscent of early 2000s hip hop culture", + "lighting": "Warm and dynamic lighting, creating a sense of energy within the room.", + "outfit": "Casual street wear. The breakdancer wears a colorful cap and patterned top, with jeans. Many audience members are wearing similar outfits.", + "location": "Indoor space, likely a club or dance floor.", + "poses": "The primary subject is in dynamic motion, mid-breakdance move. Audience members have variety of poses including standing, sitting and observing.", + "angle": "Slightly low angle to emphasize the dancer's movement." + }, + "videoPrompt": "A fast-paced dance scene showing a breakdancer transitioning into a full routine with multiple dancers joining in, building on the energy from this image. The music is upbeat and energetic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638326966_19.png" + }, + { + "scene": "Urban Youth Collective", + "imagePrompt": { + "description": "A group of seven young people are posing for a fashion shot. They're dressed in colorful, modern outfits that blend streetwear and casual styles.", + "style": "Fashion photography with a focus on vibrant colors and youthful energy.", + "lighting": "Natural lighting, slightly overcast but bright enough to create good contrast.", + "outfit": "A mix of trendy streetwear and comfortable casual wear. There's an emphasis on bold color blocking, with jackets, pants, and accessories in shades like orange, red, turquoise, white, and denim.", + "location": "An urban park, specifically a brightly colored play area with blue 'flooring'. Tall buildings are visible in the background.", + "poses": "Each person is slightly posed, creating a sense of casual confidence. They're mostly facing the camera, adding to the fashion focus.", + "angle": "Slightly low angle, eye level with the group, gives them prominence." + }, + "videoPrompt": "A dynamic dance scene set to upbeat hip-hop music. The group bursts into a fast paced dance routine, showcasing their stylish outfits and colorful setting. They're all in sync, adding energy and liveliness to the scene.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638328971_23.png" + }, + { + "scene": "Desert Dance", + "imagePrompt": { + "description": "Three dancers stand in front of a desert backdrop with an elaborate, vintage aesthetic. The dancers are all wearing white and earth-toned outfits with varying degrees of formality.", + "style": "Retro/70s Photography - reminiscent of a music video or fashion shoot", + "lighting": "Warm, golden lighting – creating a dramatic atmosphere.", + "outfit": "A mix of retro styles. The dancer in the center wears an orange-red suit with a scarf and black boots. The dancers on either side wear white pants and earth-toned tops.", + "location": "A wooden floor inside a studio, with a desert backdrop – like a painted stage set", + "poses": "Dynamic dance poses - each dancer is slightly different in the way they are posing, but all have an energetic feel. The central figure has one hand on their chest and other dancers seem to be mid-movement.", + "angle": "Slightly low angle – giving the dancers a prominence within the frame." + }, + "videoPrompt": "Three dancers continue in an upbeat dance, with dynamic transitions between poses. The scene is set for a desert celebration. Add more of both white and earth-toned elements into their wardrobes to create more variety. The dancer's movements are quick and fluid. Use a mix of wide shots and close-ups.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638329157_25.png" + }, + { + "scene": "A Cozy Jam Session", + "imagePrompt": { + "description": "A group of seven people are casually seated in a home living room, playing various instruments and enjoying a jam session. There's a mix of both genders, with various clothing styles, primarily inspired by streetwear.", + "style": "Candid photography, slightly grainy aesthetic reminiscent of early 2000s", + "lighting": "Warm indoor lighting with an overhead circular light and a floor lamp, creating a relaxed atmosphere. A window provides natural light too.", + "outfit": "Mix of streetwear and casual outfits; baseball caps, hoodies, shorts, t-shirts, with prominent use of bright colors and patterns like orange, yellow, and red.", + "location": "A cozy living room with a large grey rug, simple furniture and an overhead light.", + "poses": "Variety of relaxed poses; people are sitting on the floor, couch, or in chairs, playing instruments like keyboard, guitar, and electric instruments. One person is lying down with a skate board", + "angle": "Slightly wide angle shot, capturing the whole scene." + }, + "videoPrompt": "A dynamic dance scene set to upbeat indie music! The group transitions from their jam session into a fluid, energetic dance routine. Each member showcases individual moves, while maintaining a cohesive feel. Focus on smooth transitions between instruments and dance moves, with subtle use of light.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\52143308179831724_1758638329342_26.png" + }, + { + "scene": "UDO World Dance Competition", + "imagePrompt": { + "description": "A group of young dancers perform on a stage in front of a large banner reading 'UDO WORLD' with a globe icon. The dancers are primarily wearing black tops and grey bottoms.", + "style": "Dance photography, slightly dark but vibrant.", + "lighting": "Stage lighting - predominantly overhead with some ambient light from the floor. Creates a good contrast between the performers and stage", + "outfit": "Casual dance wear: Black t-shirts or hoodies with grey pants. White shoes are common amongst the dancers.", + "location": "A stage in a theatre, likely for a dance competition.", + "poses": "The dancers are performing in a row, possibly a line of a choreographed dance routine. They appear to be mid-motion, indicating dynamism", + "angle": "Slightly frontal angle with good depth of field." + }, + "videoPrompt": "A dynamic dance scene unfolds as the group transitions from their current formation into a complex, fast-paced hip-hop routine. The dancers burst into energy with an array of different movements, building up to a powerful peak moment where they all are in sync.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\53198839342539022_1758638762239_9.png" + }, + { + "scene": "Dance Studio Warm-Up", + "imagePrompt": { + "description": "A group of dancers in a modern dance studio are captured in a mid-stretch, kneeling position.", + "style": "Contemporary Photography", + "lighting": "Cool, subdued lighting with overhead fluorescent lights creating a slightly moody atmosphere. Reflections add depth.", + "outfit": "Casual and comfortable: Dancers wear cropped tops and wide-legged pants, mostly in neutral colors.", + "location": "A large dance studio with hardwood floors, mirrors along the walls, and overhead lighting.", + "poses": "The dancers are kneeling in a seated position, some with hands on knees, others with arms outstretched. They are mid-stretch or warm-up.", + "angle": "Slightly high angle looking down at the group." + }, + "videoPrompt": "A dynamic dance scene follows: The dancers transition from their kneeling positions into a flowing contemporary dance routine. Start with rhythmic claps and build to fast paced, energetic movements that match the beat. Focus on fluid transitions using the whole studio space, incorporating both individual dancers and group formations.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\53198839342539022_1758638762559_11.png" + }, + { + "scene": "Dynamic Dance Crew Pose", + "imagePrompt": { + "description": "A large group of young people, mostly wearing black, are posing for a photo in what appears to be a dance studio. They're a mix of energy and playful poses.", + "style": "Candid photography with a youthful vibe.", + "lighting": "Warm but relatively dim lighting, creating contrast between the subjects.", + "outfit": "Mostly black athletic wear – crop tops, tank tops, joggers/pants. Some have pink accessories.", + "location": "A dance studio with a wooden floor.", + "poses": "Mix of poses - peace signs, smiles, and some leaning forward in dynamic positions. It's a mix of energetic and playful", + "angle": "Slightly above eye level, giving us a good view of the whole group." + }, + "videoPrompt": "The dance crew breaks into a fast-paced hip hop routine with smooth transitions between dancers. They move in sync, building energy as they transition from dynamic poses to a full out dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\53198839342539022_1758638764049_19.png" + }, + { + "scene": "A Dynamic Dance Scene", + "imagePrompt": { + "description": "A group of dancers are captured in a dramatic pose, with one dancer central to the composition.", + "style": "Contemporary Photography", + "lighting": "Dramatic and focused lighting, creating shadows and highlighting the dancers.", + "outfit": "Mix of casual clothing – jeans, sweatpants, t-shirts and tops. Various shades of blue dominate the wardrobe.", + "location": "A dark stage or dance studio.", + "poses": "The dancers are in dynamic poses, with arms raised, some leaning forward, others reaching out. The central dancer is more relaxed, adding contrast.", + "angle": "Slightly from below, giving a sense of power and motion." + }, + "videoPrompt": "A dance troupe begins their performance on stage. They transition between flowing and dynamic movements, becoming increasingly energetic. A spotlight follows the dancers as they move in time with the music, growing into an intense routine.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\53198839342539022_1758638764590_21.png" + }, + { + "scene": "Energetic Dance Performance", + "imagePrompt": { + "description": "A vibrant stage with a group of dancers performing in front of an audience.", + "style": "Live Photography - Stage performance", + "lighting": "Dramatic, colorful lighting – mostly purple and pink with some blue accents. Creates a dynamic ambiance.", + "outfit": "The dancers are wearing modern dance outfits, primarily orange/black. Some have black caps.", + "location": "A large theater or stage setting with audience seating.", + "poses": "The dancers are engaged in a lively dance performance, with some visible interaction between them.", + "angle": "Slightly from the side of the stage, giving a view of both the performers and the audience." + }, + "videoPrompt": "A dynamic dance scene, building on the energy of the image. The dancers transition into a fast-paced hip hop routine with energetic jumps and spins. Add some smooth camera movements to follow their dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\53198839342539022_1758638765804_27.png" + }, + { + "scene": "Dynamic Urban Dance", + "imagePrompt": { + "description": "A group of four young people performing a hip-hop dance in front of a colorful graffiti-covered brick wall. They are covered in vibrant, brightly colored dust from the dance.", + "style": "Modern Photography with dynamic action", + "lighting": "Bright and natural lighting with color from the dust.", + "outfit": "Casual streetwear including cropped tops, shorts, pants, hats and sneakers.", + "location": "A somewhat dilapidated urban setting - a brick wall covered in graffiti.", + "poses": "Each dancer is mid-motion, creating dynamic energy. They are actively engaged in a hip hop dance with expressive gestures.", + "angle": "Slightly low angle, giving the dancers prominence and energy." + }, + "videoPrompt": "The dance crew breaks into an energetic routine with more vibrant dust, then transitions to a quick cut between each dancer performing a short solo. The background fades from dark to bright as the music builds.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\61080138757501026_1758638401196_4.png" + }, + { + "scene": "Dynamic Dance Burst", + "imagePrompt": { + "description": "A group of silhouetted figures are engaged in a vibrant dance with swirling colorful bursts radiating outwards.", + "style": "Abstract, Energetic", + "lighting": "Dramatic and Colorful; the image is lit by bright, saturated colors that radiate from the center.", + "outfit": "Minimalist - The dancers appear to be wearing minimalist outfits, almost like they are part of a silhouette.", + "location": "A dark, simple stage with a subtle base.", + "poses": "Dynamic dance poses; figures are in various stages of movement and celebration.", + "angle": "Eye-level, head on." + }, + "videoPrompt": "The dancers begin to burst into motion, performing an energetic dance routine. The colorful bursts intensify with each beat as the dancers' silhouettes move dynamically, almost like liquid energy flowing in a vibrant dance floor. Add some more color!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\61080138757501026_1758638402674_10.png" + }, + { + "scene": "A dramatic tableau of grief and ascension", + "imagePrompt": { + "description": "The image depicts a group of ballet dancers in dark, elegant costumes, performing a dynamic dance scene. A central dancer is lying as if on an altar, held by surrounding dancers, with one main dancer above them reaching upward. The dancers are arranged in a semi-circle, creating a sense of both mourning and hopeful ascension.", + "style": "Dramatic ballet; reminiscent of classical painting", + "lighting": "Low-key, dramatic lighting with a focus on the dancers. A soft glow highlights their features and costumes while also giving them an ethereal look.", + "outfit": "Ballet attire: dancers wear dark, flowing gowns with delicate detailing, mostly gray or black. They have nude ballet shoes", + "location": "A stage setting, possibly a theatre; the background is abstract.", + "poses": "The dancers are in dynamic positions, some reaching upward and others supporting the central dancer. They blend both grace and power.", + "angle": "Slightly low angle, giving viewers an immersive feel." + }, + "videoPrompt": "A cascade of dancers surround a main figure, who then spirals upwards into a dramatic dance sequence with more dancers joining in rhythm. The scene builds from a somber grief to a hopeful ascension, showing both elegance and power.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\61220876180273923_1758638459686_1.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing on a stage with a dark background. The dancers appear to be in a modern dance style, and their bodies create a sense of both strength and fluidity.", + "style": "Photorealistic", + "lighting": "Warm stage lighting, creating shadows and highlights.", + "outfit": "All dancers are wearing teal/dark green fitted tops and dark pants. A dancer in the center is wearing a teal dress with long sleeves.", + "location": "A stage within a theater or performance space", + "poses": "The dancers are performing several poses, including reaching upwards, kneeling, and a central dancer is lifted slightly off the ground.", + "angle": "Slightly low angle looking up at the dancers." + }, + "videoPrompt": "A modern dance troupe performs an intricate routine, starting with a spotlight on the central dancer. The dance builds in intensity as more dancers join, becoming more dynamic and fast-paced. Dancers move through the stage, flowing from one pose to another, culminating in a powerful final pose.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\61220876180273923_1758638462159_15.png" + }, + { + "scene": "A Human Pile", + "imagePrompt": { + "description": "A group of dancers are piled on top of each other in a complex human pile, creating a sense of both support and struggle.", + "style": "Contemporary Dance Photography", + "lighting": "Warm stage lighting with a dark background, emphasizing the dancers' forms.", + "outfit": "Dancers wear neutral-toned leotards or dancewear. Some are in light tan while others have a slightly golden hue, giving them an earthy feel.", + "location": "A black box theatre or dance studio stage.", + "poses": "The dancers are arranged in a semi-circular structure with their bodies tightly intertwined; some reaching upwards and others grounded. They convey dynamic tension and emotional connection", + "angle": "Slightly low angle, giving the pile prominence." + }, + "videoPrompt": "The human pile begins to unravel, dancers branch off from the core group in a burst of fluid movement. The dancers transition into an energetic dance sequence that is grounded but dynamic with flowing arms and quick footwork. They move as if they are connected by an invisible thread.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\621707923604437707_1758638901126_2.png" + }, + { + "scene": "A Dance of Ancient Souls", + "imagePrompt": { + "description": "A large group of dancers are arranged in a complex, interwoven structure, suggesting both stability and impending motion.", + "style": "Contemporary Dance Photography", + "lighting": "Subtle, warm lighting with a focus on shadows giving the scene an ethereal feel. Soft but defined contrast.", + "outfit": "All dancers wear similar earthy toned, flowing gowns that give them a sense of timelessness. The outfits are understated and elegant.", + "location": "A dark stage, possibly a theatre or dance studio", + "poses": "The dancers are in dynamic poses – some curled up, others reaching out – with the dancers at the front being more prominent. They appear to be engaged in an expressive and emotional dance.", + "angle": "Slightly low angle, giving the viewers a sense of power and grandeur." + }, + "videoPrompt": "The group bursts into motion with a dynamic flow of fluid movements as if they' 800 year old spirits are reborn. The dancers move from their compact structure to spread out across the stage in an emotional dance that shows grief, pain, and acceptance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\621707923604437707_1758638902319_10.png" + }, + { + "scene": "Contemporary Dance", + "imagePrompt": { + "description": "A female dancer is captured in a fluid contemporary dance pose. She's wearing a simple outfit, allowing her physique and the movement to be the primary focus. The image has strong contrast between light and shadow.", + "style": "Photorealistic", + "lighting": "Strong side lighting creates shadows and highlights on the dancer's form. A soft glow is present, indicating a natural source of light.", + "outfit": "The dancer wears a simple white tank top and wide leg gray trousers. The outfit is understated to not distract from the movement.", + "location": "A minimalist dance studio with a brick wall in background. The floor is smooth and pale.", + "poses": "The dancer is arched backward, her left arm extended upwards, while her right arm and legs are bent. Her body is curved into an expressive shape.", + "angle": "Full-body shot, slightly from the side to emphasize the curve of the dancer's form." + }, + "videoPrompt": "The dancer transitions into a dynamic dance sequence with quick bursts of energy. She moves across the studio floor, transitioning between fluid and sharp movements, expressing emotion through her body. The scene evolves in rhythm with a contemporary electronic music track.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638353508_3.png" + }, + { + "scene": "Dance Studio Glamour", + "imagePrompt": { + "description": "A group of seven women are posed in a dance studio with a white backdrop. The central figure stands out as the lead, wearing a white top and tan wide-leg pants. She's flanked by six dancers who all have different outfits. They're mostly dressed in black with some silver accents.", + "style": "Fashion photography, glamorous", + "lighting": "Soft, even lighting that creates minimal shadows, but still shows depth.", + "outfit": "A mix of dance and fashion outfits; the lead is wearing a white top and tan pants. The other dancers have a variety of black outfits with some silver accents. They wear mostly black with white or light-colored shoes.", + "location": "Dance studio, likely indoors", + "poses": "The group is in a dynamic pose – they're all facing the camera. They’ve got one foot forward and are somewhat posed as if ready to start a dance routine.", + "angle": "Full-front view, waist up." + }, + "videoPrompt": "A fast-paced dance scene set to an upbeat song with dynamic energy! The dancers move from the poses in the image into a full dance routine. They're all synchronized and energetic, showcasing their different outfits. Use fluid camera angles that transition between close-ups of each dancer.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638354242_7.png" + }, + { + "scene": "Leather-Clad Lineup", + "imagePrompt": { + "description": "A line of eight black women stand in a row, all wearing sleek black leather outfits.", + "style": "Modern photography with a slight filmic quality.", + "lighting": "Bright and natural lighting, creating shadows and highlights. ", + "outfit": "All models wear similar black leather outfits: cropped tops, low-waisted pants, and oversized blazers. They also have black gloves. ", + "location": "A modern architectural setting, likely a building's exterior with a concrete walkway and surrounding structures.", + "poses": "The group is positioned in a line, facing the camera. The lead model is centered, while others follow behind in a row. They are all wearing sunglasses.", + "angle": "Frontal view, slightly low angle." + }, + "videoPrompt": "A dynamic dance scene, set to a rhythm and bass beat! The group of eight women break into a synchronized dance routine, showcasing their power and confidence. Each model' and her individual personality is highlighted while they move through the modern architecture.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638354354_8.png" + }, + { + "scene": "Ethereal Fashion Ensemble", + "imagePrompt": { + "description": "A group of seven people, mostly young adults, are arranged in a semi-circle. They all have sleek hair and neutral expressions, creating a sophisticated look. The image focuses on modern fashion with soft tones.", + "style": "Fashion photography, minimalist", + "lighting": "Soft, diffused lighting, giving the scene an ethereal quality. It's not overly bright but creates smooth gradients.", + "outfit": "The outfits are contemporary and understated, leaning towards neutral shades of beige, taupe, light blue, and pink. There's a mix of tailored suits, simple dresses, and modern cuts, with emphasis on clean lines.", + "location": "A minimalist studio setting with a seamless backdrop.", + "poses": "The subjects are mostly facing forward or slightly angled, creating an ensemble feel. They each have unique poses but subtle action", + "angle": "Medium shot, straight-on perspective." + }, + "videoPrompt": "Dynamic dance scene: A modern dancer moves through the group, flowing between them in a slow yet fluid motion. Each person responds to their nearest counterpart with an elegant hand gesture or slight turn of the head. The movement builds into a more dynamic and energetic dance, all while maintaining the same neutral tones and understated elegance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638354740_9.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of seven dancers are captured in a black-and-white photograph, seemingly frozen mid-performance within a minimalist room.", + "style": "Black and white photography, reminiscent of modern dance photography.", + "lighting": "Even lighting, creating high contrast between the dancers and the walls. It's not overly dramatic but allows for clear visibility of details.", + "outfit": "The dancers wear simple outfits, a mix of black pants and white tops, with some wearing shirts with short sleeves.", + "location": "A minimalist rectangular room with pale-colored walls and floors.", + "poses": "The dancers are in dynamic poses, reaching out as if attempting to hold the walls or push away from them. They embody a sense of energy, movement and interaction between the dancers.", + "angle": "Straight on frontal view, allowing for full visibility of all seven dancers." + }, + "videoPrompt": "A group of modern dancers are in an energetic dance performance. The dancers begin to interact with the walls, using them as props and supports for their dynamic movements. They build into a fast-paced sequence that builds on both individual and group interaction, culminating in a final pose mirroring the image.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638355892_13.png" + }, + { + "scene": "Ethereal Dance", + "imagePrompt": { + "description": "A group of seven dancers are captured in a dramatic pose, seemingly mid-dance against a black background.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic, low-key lighting with a spotlight effect, creating contrast between light and shadow", + "outfit": "All dancers wear simple white shirts or tops, along with darker bottoms – some in shorts, others in pants. The style is modern casual.", + "location": "A dark stage, likely a dance studio or theatre.", + "poses": "The dancers are arranged in varying positions of dynamic movement. Some have arms raised, while others reach forward. They're mostly barefoot, giving the scene an earthy feel", + "angle": "Slightly low angle, emphasizing the dancers’ movements and their connection to a stage floor." + }, + "videoPrompt": "The dance intensifies with the group breaking into a dynamic contemporary routine. One dancer leads, pulling the rest in a wave-like motion as they transition from a grounded stance to an expressive reaching movement. The music swells, building tension, and then breaks into a more vibrant and energetic tempo. ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638356067_14.png" + }, + { + "scene": "Dramatic Dance Ensemble", + "imagePrompt": { + "description": "A group of dancers are posed in a dramatic composition, mostly nude or wearing minimalist clothing. The image is black and white, giving it a classic feel.", + "style": "Contemporary Photography", + "lighting": "Dramatic, high contrast lighting with shadows to accentuate the figures' forms.", + "outfit": "Minimalist: Mostly nude or wearing simple tank tops, shorts, and some dancers are in leotards.", + "location": "Studio setting with a dark backdrop", + "poses": "A mix of dynamic poses - crouching, seated, standing – creating an overall sense of strength, vulnerability, and artistry. Some figures are foregrounded while others are more behind, suggesting depth.", + "angle": "Slightly low angle, giving the ensemble prominence." + }, + "videoPrompt": "The dancers burst into a dynamic contemporary dance routine with strong use of fluid motion, mirroring each other' s movements and building from the initial pose. The dance builds to a climax, then slowly fades back into an elegant stillness.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\703756187865995_1758638356516_16.png" + }, + { + "scene": "Elegant Ballet Ensemble", + "imagePrompt": { + "description": "A group of seven ballet dancers are posed in a complex arrangement, with multiple layers of dancers. The top layer has two dancers in extended poses, while the bottom layer has dancers kneeling and supporting others.", + "style": "Photorealistic, Ballet Photography", + "lighting": "Soft, even lighting that creates smooth shadows and highlights on the dancers' bodies.", + "outfit": "Ballet attire – leotards and tights in various shades of grey, black, olive green, and a light tan. The dancers wear pointe shoes.", + "location": "Studio setting with a neutral gray backdrop.", + "poses": "Dynamic ballet poses – extensions, splits, elegant lines. A variety of positions to create a layered look.", + "angle": "Slightly low angle, capturing the dancers from below and giving them grandeur." + }, + "videoPrompt": "A vibrant dance scene begins with the ensemble in their current pose, then transitions into a dynamic ballet sequence. Dancers move fluidly between poses, performing graceful leaps and turns, building to a crescendo of movement. The scene is set to an orchestral score that mirrors the elegance and power of the dancers.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\75153887527151281_1758638619326_6.png" + }, + { + "scene": "Dynamic Dance Crew", + "imagePrompt": { + "description": "A group of five young women with diverse hairstyles pose in a street setting.", + "style": "Urban photography, with a focus on youthful energy.", + "lighting": "Natural light, slightly diffused to create depth and contrast.", + "outfit": "Casual streetwear – mostly black with some white accents. They are wearing outfits that fit the hip hop dance vibe", + "location": "A city street, likely an alleyway or between buildings.", + "poses": "The group is arranged in a semi-circle, with the front subject kneeling and others standing behind them. The poses are confident and dynamic.", + "angle": "Slightly low angle to emphasize the group's presence and energy." + }, + "videoPrompt": "A dynamic dance scene starts with the crew performing an energetic hip hop routine in the street, transitioning between individual and group performances. They use the space around them, adding some breakdancing moves. The music is a fast-paced beat with a strong bassline.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638365232_0.png" + }, + { + "scene": "Urban Dance Crew", + "imagePrompt": { + "description": "A group of four young women are posing in the middle of a city street, wearing athletic wear.", + "style": "Realistic photography, with an urban feel.", + "lighting": "Slightly overcast, natural lighting. Soft but visible shadows", + "outfit": "All four women are wearing mostly black athletic outfits. Two have jackets/sweaters, one has a sports bra and crop top, and the last is in a standard outfit. White sneakers dominate.", + "location": "A city street with buildings and trees.", + "poses": "The group is arranged in a dynamic pose that shows their energy and confidence. They are a mix of squatting, standing, and leaning positions.", + "angle": "Slightly low angle, giving the women presence." + }, + "videoPrompt": "A vibrant dance crew breaks into a fast-paced hip hop routine in the street. The dancers transition between several dynamic moves, incorporating spins, freezes, and jumps. They move fluidly down the street, with onlookers watching their performance. The music is upbeat and energetic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638365353_1.png" + }, + { + "scene": "Spice Girls - Iconic Fashion", + "imagePrompt": { + "description": "A group shot of the Spice Girls in a vibrant studio setting with a checkerboard floor.", + "style": "90s Pop Culture, Photography", + "lighting": "Bright and even lighting, creating a dynamic contrast between the different members.", + "outfit": "Each member has a distinctive outfit representing their 'Spice' persona. From orange to black, yellow to green with red, the Spice Girls are iconic in their 90s fashion!", + "location": "A studio setting with a checkerboard floor, creating a playful and fashionable backdrop.", + "poses": "Each member is striking a unique pose that captures their personality. They're mostly standing or crouching, giving off dynamic energy.", + "angle": "Straight-on, full body shot." + }, + "videoPrompt": "The Spice Girls are in the studio and start a dance routine, each of them takes turns leading with their signature moves. The camera follows them with quick cuts, showing their iconic style in dynamic motion! ", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638365606_4.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of dancers perform a dynamic dance routine on a stage with a red backdrop. The dancers are primarily female, and some have curly or straight hair. They all wear white outfits.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic Red Lighting - creates an atmosphere of energy and excitement.", + "outfit": "White sports bra and tight pants with red stripes. White sneakers.", + "location": "A stage, possibly a concert or performance venue.", + "poses": "The dancers are in various poses – some are kneeling, squatting, leaning forward, while others stand upright with raised arms. They're exhibiting dynamic energy.", + "angle": "Slightly high angle, giving a good view of the group and their arrangement." + }, + "videoPrompt": "The dancers explode into a more energetic dance routine, incorporating fluid movements and a bit of hip-hop influence. The dancers transition from the poses in the image to a fast paced dance with some dynamic turns and jumps. A spotlight focuses on each dancer as they perform.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638366048_9.png" + }, + { + "scene": "Y2K Denim Collective", + "imagePrompt": { + "description": "A group of seven young women are posing on a concrete staircase in front of a building, creating a retro aesthetic.", + "style": "Early 2000s fashion photography with a slight grunge feel, reminiscent of vintage magazine spreads.", + "lighting": "Natural light, slightly overcast, giving the image a soft but dynamic look.", + "outfit": "The main theme is Y2K inspired denim. There's a mix of jean jackets, wide leg pants and low-rise jeans in various shades of blue, alongside white tops and some pops of color like light blue hair and periwinkle eyeshadow. Some models have black boots while others wear sneakers.", + "location": "An outdoor location with a concrete staircase leading to a building - likely a modern apartment block or student housing.", + "poses": "A variety of poses – from seated, leaning, and standing in dynamic positions, giving each model presence. They're looking directly at the camera.", + "angle": "Slightly low angle shot, which makes the group appear dominant." + }, + "videoPrompt": "A dynamic dance scene with the seven models performing a Y2K-inspired hip hop/R&B dance routine on the staircase. They're moving to an upbeat track with a strong bassline and prominent beat, building up from a low groove to a more energetic burst of motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638366131_10.png" + }, + { + "scene": "Youthful Energy", + "imagePrompt": { + "description": "A group of five young men are posing for a photo against a white background.", + "style": "Contemporary, streetwear fashion photography", + "lighting": "Bright and even lighting, creating clean shadows.", + "outfit": "The group is wearing a mix of modern streetwear with bold colors and patterns. Each member has a unique outfit, but they all have an element of youthful style.", + "location": "A simple white backdrop", + "poses": "Each subject is posing dynamically in the frame, mostly with hand gestures like peace signs and finger pointing.", + "angle": "Full-frame shot from waist up." + }, + "videoPrompt": "The group breaks into a dynamic dance sequence. Each member leads the dance using their unique style, blending hip-hop and contemporary moves with energetic bounce. The dance starts with a quick beat drop and builds to a full energy explosion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638367648_18.png" + }, + { + "scene": "Modern Girl Group", + "imagePrompt": { + "description": "Three beautiful young women are posing in a studio setting with a solid blue backdrop. Each woman is wearing stylish, fitted clothing – black leather, a blue tracksuit and red jacket – giving an early 2000s vibe.", + "style": "Modern Photography", + "lighting": "Bright, even lighting creates a clean look.", + "outfit": "Each of the three women are in tight fitting outfits. The left woman is dressed in all black leather with a high ponytail. The middle woman has curly hair and is wearing a blue tracksuit. The right woman wears a red jacket and a black leather outfit.", + "location": "Studio setting", + "poses": "Each of the three women are standing, in tight proximity to one another. Each is looking directly at the camera with confidence.", + "angle": "Straight-on shot, waist up." + }, + "videoPrompt": "The trio burst into a dynamic dance routine set to a catchy early [https://www.youtube.com/watch?v=jL0Y89qC1mQ]](https://www.youtube.com/watch?v=jL0Y89qC1mQ) song, blending hip-hop and R&B dance styles in a sleek, modern studio with black leather as the focal point. The dance should be fast paced, with each woman taking turns leading the routine.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638367724_19.png" + }, + { + "scene": "Girl Group Pose", + "imagePrompt": { + "description": "Four young women are posing in a studio setting with a white background. They're all wearing black outfits and sunglasses.", + "style": "Fashion Photography, edgy", + "lighting": "Bright and even lighting, creating minimal shadows", + "outfit": "Black leather or faux leather outfits; including tight-fitting tops, short dresses/tops with long pants and high boots. Each girl has different hair styles but all have black sunglasses.", + "location": "Studio with a white background", + "poses": "Each girl is in a dynamic pose, holding up their hands as if to say 'bring it on' or 'we are ready'. They're slightly leaning forward.", + "angle": "Slightly high angle looking down at the group." + }, + "videoPrompt": "The girls drop to the floor with a smooth transition into a hip, fast-paced dance routine. Each girl takes turns showcasing their individual dance skills, moving in sync with the beat. The camera follows them as they move around a sleek, modern set with pulsing lights and a dynamic background.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638367795_20.png" + }, + { + "scene": "Y2K Inspired Girl Group", + "imagePrompt": { + "description": "A group of five young women are seated on simple black chairs against a light blue backdrop.", + "style": "Early 2000s fashion photography, reminiscent of Y2K aesthetics.", + "lighting": "Soft and even lighting, creating a clean look.", + "outfit": "The girls are wearing a mix of trendy early-2000s looks. They're all wearing different outfits but have similar styles with crop tops, low-rise jeans or trousers, and some wear cardigans.", + "location": "A simple studio setting with a light blue backdrop", + "poses": "Each girl is in a unique pose; one is reaching upward while others are seated with relaxed confidence. They're all looking directly at the camera.", + "angle": "Full-frame shot, capturing the whole group." + }, + "videoPrompt": "The girls burst into an energetic dance routine set to a Y2K inspired pop song. The scene transitions between closeups of each girl and wider shots showcasing their collective energy, with dynamic lighting changes that accentuate their outfits.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638368194_23.png" + }, + { + "scene": "90s Hip-Hop Fashion", + "imagePrompt": { + "description": "A trio of women, likely members of a hip-hop group, are posing in athletic wear. Each woman is wearing a cropped sports top and black Champion sweatpants. The tops are different colors - pink, green, and yellow.", + "style": "90s Hip-Hop Fashion Photography", + "lighting": "Bright, even lighting with slight shadows.", + "outfit": "The trio's outfits consist of cropped sports tops and black Champion sweatpants. White underwear peeks out from the pants at the waist.", + "location": "A simple white backdrop.", + "poses": "Each woman is in a strong pose, slightly angled forward. The central figure has her hands crossed and a confident expression. They all have straight hair.", + "angle": "Waist-level shot, slightly head-on." + }, + "videoPrompt": "A dynamic dance scene set to 90s hip-hop music. The trio starts with a simple routine in their outfits, then evolves into more complex moves as the beat drops. They are now surrounded by dancers and backup dancers in similar athletic wear. Use fast cuts between each member of the group.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638369100_24.png" + }, + { + "scene": "Hip-Hop Style", + "imagePrompt": { + "description": "A young woman with long hair in braids sits in a squat position against a bright green backdrop.", + "style": "90s Hip Hop Photography", + "lighting": "Bright and even, creating minimal shadows.", + "outfit": "The subject wears an emerald green football jersey, paired with oversized denim pants and tan Timberland boots. A black bandana is wrapped around her head. She also has a gold watch and layered necklaces.", + "location": "A studio setting with a solid green background", + "poses": "She's sitting in a relaxed pose, with one hand resting on her thigh. Her expression is confident and stylish.", + "angle": "Full-body shot from the waist up." + }, + "videoPrompt": "The scene transitions into a dynamic dance battle! The young woman starts breakdancing in a hip-hop style using her Timberland boots as a foundation, building into a full energetic dance routine with backup dancers. Bright, colorful lighting adds to the energy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638369181_25.png" + }, + { + "scene": "Urban Group Pose", + "imagePrompt": { + "description": "A group of seven young people, dressed in early 2000s urban fashion, pose in front of a storefront.", + "style": "Early 2000s Hip Hop Photography", + "lighting": "Bright daylight with some shadowing, giving contrast to the image.", + "outfit": "Predominantly casual streetwear: baseball jerseys, denim jeans (various washes and styles), t-shirts, hooded sweatshirts, with accessories like baseball caps, boots, and a few chunky shoes.", + "location": "In front of a storefront with red brick facade. Possibly a local business or barbershop.", + "poses": "A mix of seated, standing, leaning, and crouching poses; the group is arranged in layers to create depth. Some people are looking directly at the camera while others are more relaxed.", + "angle": "Slightly low angle, giving the group a sense of presence." + }, + "videoPrompt": "Dynamic dance scene set to early , upbeat hip hop music. The group breaks into a synchronized dance routine in front of the storefront. Some members do individual dance moves with smooth transitions from one pose to another. A few people start doing some breakdance with other group members.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638369260_26.png" + }, + { + "scene": "Dynamic Group Portrait", + "imagePrompt": { + "description": "A group of five young women are posing for a photograph in front of a vibrant green backdrop.", + "style": "Modern photography, with an emphasis on trendy fashion and youthful energy.", + "lighting": "Warm studio lighting, creating shadows but also highlighting the subjects' hair and skin tones. ", + "outfit": "The group is dressed in early '00s inspired outfits – think low-rise pants, crop tops, and chunky shoes.", + "location": "A simple studio setting with a solid green background", + "poses": "Each woman has a unique pose - one is seated on a purple chair, another is kneeling, while others are standing. Some hands are touching their hair or faces, creating a dynamic look.", + "angle": "Full-frame shot, slightly above eye level." + }, + "videoPrompt": "A group of five young women in early '00s inspired outfits begin to dance to a catchy hip hop beat with some soulful R&B elements. They start with synchronized movements, then branch out into individual expression while remaining dynamic and energetic. The backdrop is bright green with subtle lights.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\79516749660264691_1758638369468_28.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of five young kids are performing a hip-hop style dance in front of a white backdrop.", + "style": "Photography - studio portrait, bright and colorful", + "lighting": "Bright and even lighting, creating clean shadows on the floor.", + "outfit": "All the kids are wearing blue outfits. Some have black headbands and gloves. They wear various shades of turquoise and dark blue with grey.", + "location": "A dance studio with a smooth, dark-colored floor.", + "poses": "The group is in dynamic poses, some standing on their knees or bending in positions to create energy.", + "angle": "Full shot, slightly from the front. The angle allows for full visibility of all five dancers." + }, + "videoPrompt": "The music drops and the kids break into a fast-paced hip-hop dance routine. They move around the studio with quick transitions between dynamic poses. One kid leads while others follow in sync, building to an energetic climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\7951736836765738_1758638745564_4.png" + }, + { + "scene": "Dynamic Dance Scene", + "imagePrompt": { + "description": "A young woman is captured mid-dance in a studio setting with a white background.", + "style": "Modern Photography, Streetwear Style", + "lighting": "Soft and diffused lighting, creating shadows that add dimension to the image.", + "outfit": "The model wears an oversized, open button jacket, a black crop top, and light-wash wide leg jeans. She also has a baseball cap (Los Angeles Dodgers) in blue.", + "location": "A minimalist studio with a clean white background", + "poses": "Dynamic pose: The model is doing a dance move, her left foot is elevated, her right knee is bent and lifted.", + "angle": "Full-body shot from a slightly low angle." + }, + "videoPrompt": "The dancer breaks into a vibrant hip hop dance routine. She transitions smoothly between a variety of moves while maintaining energy, moving through the studio with confidence and style. The music is upbeat and dynamic.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\7951736836765738_1758638749143_20.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of young dancers are performing on a stage with a blue backdrop.", + "style": "Photography - Stage performance, capturing action and energy.", + "lighting": "Warm stage lighting, predominantly blue background with spotlights.", + "outfit": "Most dancers wear purple shirts and dark pants or leggings. One dancer is wearing a white shirt with black design.", + "location": "A stage, likely in a theatre or performance space.", + "poses": "The dancers are engaged in dynamic dance poses, with one central dancer leading the movement. They're mostly mid-action, energetic and expressive.", + "angle": "Wide shot, slightly from the front of the group." + }, + "videoPrompt": "A fast-paced dance routine continues, building on the energy of the image. The dancers move in sync, with a focus on hip-hop or contemporary styles. Add more dancers and make it feel like an energetic dance battle.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\7951736836765738_1758638749224_21.png" + }, + { + "scene": "Dynamic Dance Group Pose", + "imagePrompt": { + "description": "A group of ten people in black outfits pose for a photograph inside a gymnasium.", + "style": "Modern Photography - Dramatic, with a focus on motion and shape.", + "lighting": "Soft but dramatic lighting – mostly natural light coming from the gymnasium's ceiling lights.", + "outfit": "All subjects are wearing mostly black athletic clothing. Some wear black tops and bottoms, while others have a mix of both.", + "location": "Indoor - A gymnasium with wooden flooring.", + "poses": "The group is in dynamic poses – some crouching, some standing, several with hands raised, and all creating shapes with their bodies. It's like they are frozen mid-dance move.", + "angle": "Slightly low angle, giving the subjects a sense of power." + }, + "videoPrompt": "A fast-paced dance routine begins with the group breaking out into a full dance set. The music starts as an upbeat and dynamic beat. Each dancer takes their turn to lead, then switches between partners. They move in sync, building energy with each beat. Incorporate a variety of modern dance styles, like hip hop, contemporary, and jazz.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\7951736836765738_1758638750436_24.png" + }, + { + "scene": "Dynamic Dance Crew", + "imagePrompt": { + "description": "A group of people are engaged in a vibrant dance performance inside an indoor space.", + "style": "Realistic Photography", + "lighting": "Warm, diffused lighting with a slight orange hue, creating a dynamic atmosphere.", + "outfit": "Mix of modern street wear and athletic gear. Includes crop tops, cargo pants, tracksuits, and sneakers.", + "location": "Indoor dance studio or gymnasium with a concrete floor and visible walls.", + "poses": "A mix of energetic poses including dancers in motion, some crouching, others reaching upwards, with one central dancer front and center", + "angle": "Slightly low angle, providing a sense of energy and dynamism." + }, + "videoPrompt": "The dance crew transitions into an upbeat hip-hop routine. The central dancer leads the group in synchronized movements, building to a dynamic chorus with more complex choreography. The camera follows them as they move around the studio.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\7951736836765738_1758638751087_27.png" + }, + { + "scene": "Dynamic Activewear Collection", + "imagePrompt": { + "description": "A group of diverse individuals wearing brightly colored activewear, performing a dynamic dance routine.", + "style": "Modern athletic fashion photography with bold color blocking.", + "lighting": "Bright and even lighting, with slight shadows to create depth.", + "outfit": "Activewear in vibrant shades of teal, orange, pink, and yellow. Outfits include leggings, shorts, sports bras, and a variety of patterns like checkered and geometric designs. A mix of form-fitting and looser silhouettes.", + "location": "A white background studio setting.", + "poses": "The subjects are in dynamic poses - some are leaning forward, others are bending, creating an overall sense of energy and motion.", + "angle": "Slightly low angle to emphasize the power of the group." + }, + "videoPrompt": "A fast-paced dance routine with a diverse group wearing brightly colored activewear. The dancers transition between various movements - jumps, spins, and dynamic stretches - showcasing the flexibility and comfort of their outfits. Use a modern pop song with a strong beat.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\7951736836765738_1758638751790_31.png" + }, + { + "scene": "Times Square Dance", + "imagePrompt": { + "description": "A vibrant image of dancers leaping in the middle of a New York City street, specifically Times Square. A group of seven dancers are captured mid-jump, with onlookers watching from sidewalks and cars.", + "style": "Photorealistic", + "lighting": "Bright daylight; warm tones dominate, creating good contrast.", + "outfit": "A mix of casual and dancewear - some wear shorts and tank tops while others wear more formal outfits. A variety of colors are present in the dancers' clothing.", + "location": "Times Square, New York City, with a backdrop of shops and bright signs.", + "poses": "Dynamic action – the dancers are frozen mid-jump, creating a sense of energy and freedom. Each dancer appears to be expressing unique emotion through their dance", + "angle": "Slightly low angle, giving prominence to the dancers and the street below." + }, + "videoPrompt": "The scene continues with the dancers breaking into a full-blown dynamic dance routine in Times Square, evolving from an energetic contemporary dance to a lively hip-hop beat. The crowd starts to join in, adding more energy! No slow motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639039279_0.png" + }, + { + "scene": "A Lively Street Dance", + "imagePrompt": { + "description": "A large group of people are engaged in a lively street dance, likely an impromptu performance or event. The focus is on the dancers in the foreground, but the scene extends to a crowd of onlookers.", + "style": "Candid Photography", + "lighting": "Natural daylight with good visibility.", + "outfit": "Casual clothing; jeans, t-shirts, dresses and some light jackets dominate. Generally modern casual wear.", + "location": "A city street, possibly a pedestrian zone or a road in less intense traffic. It is surrounded by buildings and people", + "poses": "The dancers are engaged in a variety of dance moves; the main pair have their arms outstretched while other dancers make dynamic shapes. The crowd has a mix of standing and seated observers.", + "angle": "Slightly overhead, providing a good overview of the whole scene." + }, + "videoPrompt": "A fast-paced dance sequence unfolds as the group breaks into a more complex dance routine – think hip hop meets contemporary. The dancers move from the road to incorporate the surrounding buildings, using them as part of the choreography. Music starts with upbeat tempo and builds up to climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639039581_3.png" + }, + { + "scene": "Times Square Dance Performance", + "imagePrompt": { + "description": "A group of dancers are performing in the middle of bustling Times Square, surrounded by vibrant illuminated billboards.", + "style": "Photo-realistic with a dynamic feel.", + "lighting": "Bright and colorful - a mix of natural sunlight and neon light from the surrounding advertisements.", + "outfit": "The dancers are wearing black outfits, likely sports attire or dancewear. They appear to be wearing shorts and tops.", + "location": "Times Square, New York City", + "poses": "The dancers are in mid-performance, with dynamic poses showing energy and movement. They're mostly in a line, performing a dance routine.", + "angle": "Slightly high angle, giving the viewer an overview of the scene." + }, + "videoPrompt": "A vibrant dance performance continues in Times Square as the dancers transition into a fast-paced hip hop routine. The crowd cheers them on while they move from one segment to another with dynamic energy. They end with a powerful pose.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639040285_4.png" + }, + { + "scene": "Dynamic Street Dance Performance", + "imagePrompt": { + "description": "A vibrant street dance performance in a bustling city center. Three dancers are the focal point, performing on a rectangular mat. The crowd is comprised of onlookers, with an array of different clothing styles.", + "style": "Candid Photography - Street Style", + "lighting": "Natural daylight, slightly overcast but bright", + "outfit": "Casual and trendy; mix of streetwear and athletic wear. Black outfits dominate, with some color in the crowd.", + "location": "A busy city street, likely a European center – cobblestone road, buildings surrounding.", + "poses": "The dancers are engaged in dynamic dance moves, with one dancer leading the performance, while others respond to his lead. The crowd is watching attentively", + "angle": "Slightly overhead angle, eye-level view of the performers." + }, + "videoPrompt": "A fast-paced hip hop dance battle starts on the street! One dancer drops to the ground in a breakdance move, while another responds with a smooth transition into a power move. The crowd gets into it, clapping and cheering as dancers begin to compete for audience attention, building to a dynamic climax.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639040904_7.png" + }, + { + "scene": "A Dynamic Dance Scene", + "imagePrompt": { + "description": "A large group of people are engaged in a vibrant dance performance, with many raising their hands and arms.", + "style": "Modern Photography - similar to a music video still.", + "lighting": "Bright and natural lighting – suggesting daytime.", + "outfit": "Casual and modern clothing; variety of colors and patterns. Some people are wearing bright pinks/reds, others in darker tones.", + "location": "A stone plaza or courtyard outside a building with classic architectural elements - like columns.", + "poses": "Dynamic poses – lots of arms raised, some figures are slightly bent over, suggesting energetic movement. They have dance poses", + "angle": "Overhead shot, giving a broad view of the entire group." + }, + "videoPrompt": "The dancers continue their energy-filled performance and begin to move in sync as if they were performing a contemporary dance routine. The group splits into smaller groups that are each dancing different styles - hip hop, modern, and street dance.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639044222_19.png" + }, + { + "scene": "A Massive Dance Flashmob", + "imagePrompt": { + "description": "The image captures a large group of people in motion, all seemingly engaged in a dance flashmob. They are packed closely together, creating a sense of energy and vibrancy.", + "style": "Realistic photography with a dynamic feel.", + "lighting": "Bright overhead lighting, giving the scene a lively atmosphere.", + "outfit": "Casual clothing – varied outfits including t-shirts, sweaters, jeans, and dresses. A mix of colors but generally everyday wear.", + "location": "Appears to be indoors - possibly a large hallway or spacious room.", + "poses": "The main poses are dynamic dance moves; the flashmob is in motion with raised arms, gestures and varied body positions", + "angle": "Slightly overhead angle, giving a broad view of the entire group." + }, + "videoPrompt": "A burst of music kicks off as the dance flashmob expands into an energetic choreography. The dancers move seamlessly through a hallway, eventually breaking out into a wider space and continuing to dance in unison. Add some dynamic camera angles with smooth transitions!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639044822_22.png" + }, + { + "scene": "Dynamic Duo Dance", + "imagePrompt": { + "description": "Two young children are engaged in a lively dance performance. One child has curly hair, while the other has straight hair with an upward motion. Both are wearing casual outfits.", + "style": "Modern photography with vibrant colors.", + "lighting": "Dramatic and colorful lighting – predominantly purple, blue, and orange. It creates a dynamic atmosphere.", + "outfit": "Both children wear hooded sweatshirts and comfortable pants. The outfits are semi-casual and modern.", + "location": "A simple studio setting with a solid background", + "poses": "The children are in action poses – mid-dance, expressive and energetic.", + "angle": "Slightly low angle, capturing their energy." + }, + "videoPrompt": "The two children break into a full out dance battle, each showcasing different dance styles (hip hop, funk, etc). Add some cool transition effects between the dancers. The music is upbeat and energetic!", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\827325394082825214_1758639045490_25.png" + }, + { + "scene": "Cosmic Reach", + "imagePrompt": { + "description": "A group of dancers are in a contemporary dance performance against a black backdrop speckled with what looks like stars, resembling a night sky. Most of the dancers are positioned low to the ground in a dynamic pose, reaching forward as if straining for something. One dancer stands separate from the rest, standing upright.", + "style": "Modern Dance/Photography", + "lighting": "Dramatic and focused, with spotlights highlighting the dancers and creating shadows on the stage floor. The lighting is relatively dim, but effective.", + "outfit": "The dancers are all wearing gray outfits, likely leotards or dancewear that gives them a sleek silhouette.", + "location": "A dark stage, possibly a theater or performance space.", + "poses": "Most of the dancers are in a low-to-the-ground pose, reaching forward with arms outstretched. One dancer stands upright and slightly off to the side", + "angle": "Frontal shot, straight-on perspective." + }, + "videoPrompt": "The group bursts into an energetic dance sequence, continuing their reach forward as if pulling something from the darkness. They transition quickly into a flowing choreography that blends both contemporary and modern styles, with a focus on dynamic movement and emotion. The dancers move in unison at times, but also break into individual solos, each dancer expressing a unique part of the cosmic story.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\8303580557312716_1758638485182_6.png" + }, + { + "scene": "Dynamic Dance Performance", + "imagePrompt": { + "description": "A group of male dancers performing a contemporary dance routine on stage. They are mostly bare-chested, wearing white pants and some have slight chest coverage.", + "style": "Contemporary Dance Photography", + "lighting": "Dramatic spotlighting with warm tones, creating shadows and highlighting musculature", + "outfit": "White pants that drape, giving a sense of antiquity or elegance. Bare chests add to the aesthetic.", + "location": "A stage with a black backdrop. The floor is slightly reflective.", + "poses": "The dancers are in various poses – reaching upward, bending low, and twisting their bodies in expressive gestures. They're dynamic and energetic.", + "angle": "Slightly low angle, giving prominence to the dancers’ motion." + }, + "videoPrompt": "A troupe of male contemporary dancers continue their performance, building on the energy of the image. The dance transitions from a slow build into more complex and fluid movements. They move with grace and power, using the stage space, and eventually form a captivating formation.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\8303580557312716_1758638485274_7.png" + }, + { + "scene": "Ethereal Dance", + "imagePrompt": { + "description": "A group of dancers are arranged in a circle, creating an almost spherical shape. They're all wearing earthy-toned costumes with flowing fabrics that give them an ethereal look.", + "style": "Contemporary dance photography, dramatic and elegant", + "lighting": "Warm stage lighting, predominantly from above, creating shadows and highlights.", + "outfit": "Flowing gowns in a neutral tan/gold color. The dancers wear garments with layers of fabric including long sleeves and ruffled skirts.", + "location": "A dark stage, likely a theatre or performance space", + "poses": "The dancers are holding their arms upwards, creating a sense of reaching and flow. They're all in motion, though frozen in this moment.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A dynamic dance scene following the group of dancers. The music swells into an uplifting crescendo as they begin to move with more fluidity and grace. They perform a complex contemporary routine, building on their current pose, now incorporating graceful spins and fluid arm movements. As they swirl, lights become brighter, and the dancers' expressions show joy.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\8303580557312716_1758638488367_19.png" + }, + { + "scene": "Dramatic Dance Performance", + "imagePrompt": { + "description": "A large group of dancers are performing on a stage with dark lighting.", + "style": "Photorealistic, Dramatic", + "lighting": "Low-key, dramatic, predominantly warm tones with subtle cooler tones for depth. The lighting is focused on the performers creating strong shadows.", + "outfit": "Dancers wear neutral colored dancewear, mostly nude or light beige, in a ballet style. They are wearing ballet shoes and some have slight hair detail.", + "location": "A stage, likely a theater or performance space.", + "poses": "The dancers are arranged in a semi-circle with arms raised in an elegant, expressive pose. The dancers appear to be performing a complex dance routine, with dynamic movement.", + "angle": "Slightly low angle, giving the dancers prominence." + }, + "videoPrompt": "A group of dancers transition from their current pose into a flowing, dynamic dance scene. They move forward in unison, building on the dramatic energy. The dance becomes more complex and intense. Camera pans around them with fluid motion.", + "baseImagePath": "D:\\projects\\random_video_maker\\input\\8303580557312716_1758638488563_21.png" + } + ] +} \ No newline at end of file