Major Features: - Rebrand from Cinema Studio Pro to Lux Studio - New logo and branding (orange/gold theme) - Video generation with Veo 3.1 (I2V and T2V) - Project-first workflow with IndexedDB storage - AI prompt optimizer with intelligent inference Video Gen: - Duration (4s/6s/8s), aspect ratio (16:9/9:16), resolution - Reference image support for I2V - Aspect ratio mismatch warnings - Frame extraction from generated videos - Video streaming with HTTP Range support UI/UX: - Tab navigation with underline style - Portrait format adaptive display - Editable optimized prompts with [AI suggestions] - Auto-save to active project Security: - Remove config.php from tracking (contains API key) - Add comprehensive .gitignore - Remove uploaded session files from repo 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
411 B
HTML
13 lines
411 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/LUX_STUDIO_LOGO.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Lux Studio - AI Cinematography</title>
|
|
</head>
|
|
<body class="bg-slate-950">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|