File size: 19,290 Bytes
54ed165 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Local AI Video Generator - CogVideoX</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 30px 40px;
text-align: center;
}
.header h1 {
font-size: 32px;
margin-bottom: 10px;
}
.header p {
font-size: 16px;
opacity: 0.9;
}
.system-info {
background: rgba(255, 255, 255, 0.1);
padding: 10px;
border-radius: 8px;
margin-top: 15px;
font-size: 13px;
}
.main-content {
padding: 40px;
}
.section {
background: #f8f9fa;
padding: 20px;
border-radius: 12px;
margin-bottom: 20px;
}
.section h3 {
color: #333;
margin-bottom: 15px;
font-size: 18px;
display: flex;
align-items: center;
gap: 8px;
}
label {
display: block;
color: #555;
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}
textarea {
width: 100%;
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
resize: vertical;
min-height: 100px;
}
textarea:focus {
outline: none;
border-color: #667eea;
}
.char-counter {
text-align: right;
font-size: 12px;
color: #999;
margin-top: 5px;
}
button {
padding: 14px 24px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
}
button:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.generate-btn {
width: 100%;
padding: 16px;
font-size: 18px;
}
.loader {
border: 3px solid #f3f3f3;
border-top: 3px solid #667eea;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 20px auto;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.status {
padding: 12px;
border-radius: 8px;
text-align: center;
font-size: 14px;
display: none;
margin-top: 15px;
}
.status.info {
background: #e3f2fd;
color: #1976d2;
display: block;
}
.status.success {
background: #e8f5e9;
color: #388e3c;
display: block;
}
.status.error {
background: #ffebee;
color: #d32f2f;
display: block;
}
.status.warning {
background: #fff3e0;
color: #f57c00;
display: block;
}
.video-container {
background: #000;
border-radius: 12px;
overflow: hidden;
display: none;
margin-top: 20px;
}
video {
width: 100%;
display: block;
}
.video-info {
background: #f8f9fa;
padding: 15px;
margin-top: 10px;
border-radius: 8px;
font-size: 13px;
color: #666;
}
.video-actions {
display: flex;
gap: 10px;
margin-top: 10px;
}
.video-actions button {
flex: 1;
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.example-prompts {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 10px;
}
.example-prompt {
display: inline-block;
padding: 6px 12px;
background: white;
border: 1px solid #ddd;
border-radius: 20px;
font-size: 12px;
cursor: pointer;
transition: all 0.2s;
}
.example-prompt:hover {
background: #667eea;
color: white;
border-color: #667eea;
}
.init-section {
background: #fff3e0;
border: 2px solid #f57c00;
padding: 20px;
border-radius: 12px;
margin-bottom: 20px;
}
.init-section h3 {
color: #f57c00;
margin-bottom: 10px;
}
.init-btn {
background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
margin-top: 10px;
}
@media (max-width: 768px) {
.main-content {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>π¬ Local AI Video Generator</h1>
<p>Generate videos locally using CogVideoX-2B on your computer</p>
<div class="system-info" id="system-info">
<div>π Checking system status...</div>
</div>
</div>
<div class="main-content">
<!-- Model Initialization Section -->
<div class="init-section" id="init-section" style="display: none;">
<h3>βοΈ Model Not Loaded</h3>
<p style="font-size: 14px; color: #666; margin-bottom: 10px;">
The AI model needs to be loaded before generating videos. This is a one-time process that will:
</p>
<ul style="font-size: 13px; color: #666; margin-left: 20px; margin-bottom: 10px;">
<li>Download CogVideoX-2B model (~5GB) on first run</li>
<li>Load the model into memory (2-5 minutes)</li>
<li>Keep the model ready for fast generation</li>
</ul>
<button class="init-btn" onclick="initializeModel()">
π Initialize Model
</button>
</div>
<!-- Prompt Input Section -->
<div class="section">
<h3>π Enter Your Prompt</h3>
<label for="prompt">Describe the video you want to create:</label>
<textarea
id="prompt"
rows="4"
placeholder="Example: A golden retriever running through a field of flowers at sunset, cinematic lighting"
maxlength="1000"
></textarea>
<div class="char-counter">
<span id="char-count">0</span>/1000 characters
</div>
<div style="margin-top: 15px;">
<label>π‘ Example Prompts:</label>
<div class="example-prompts">
<span class="example-prompt" onclick="setPrompt('A cat playing with a ball of yarn, close-up shot')">π± Cat playing</span>
<span class="example-prompt" onclick="setPrompt('Ocean waves crashing on a beach at sunset, aerial view')">π Ocean waves</span>
<span class="example-prompt" onclick="setPrompt('A bird flying through clouds, slow motion')">π¦
Bird flying</span>
<span class="example-prompt" onclick="setPrompt('City street with cars at night, neon lights')">π City night</span>
<span class="example-prompt" onclick="setPrompt('Flowers blooming in a garden, time-lapse')">πΈ Flowers blooming</span>
</div>
</div>
</div>
<!-- Generate Button -->
<button class="generate-btn" id="generate-btn" onclick="generateVideo()">
π¬ Generate Video
</button>
<!-- Status and Loader -->
<div class="loader" id="loader"></div>
<div class="status" id="status"></div>
<!-- Video Output Section -->
<div class="video-container" id="video-container">
<video id="video-output" controls></video>
</div>
<div id="video-info" class="video-info" style="display: none;"></div>
<div class="video-actions" id="video-actions" style="display: none;">
<button onclick="downloadVideo()">π₯ Download</button>
<button onclick="shareVideo()">π Copy Link</button>
</div>
</div>
</div>
<script>
// Global state
let currentVideoUrl = null;
let modelLoaded = false;
// Initialize app
window.addEventListener('load', async () => {
await checkServerHealth();
setupEventListeners();
});
function setupEventListeners() {
const promptInput = document.getElementById('prompt');
const charCount = document.getElementById('char-count');
promptInput.addEventListener('input', () => {
const length = promptInput.value.length;
charCount.textContent = length;
charCount.style.color = length > 900 ? '#d32f2f' : '#999';
});
promptInput.addEventListener('keydown', (e) => {
if (e.ctrlKey && e.key === 'Enter') {
generateVideo();
}
});
}
async function checkServerHealth() {
try {
const response = await fetch('http://localhost:5000/health');
const data = await response.json();
if (data.status === 'healthy') {
modelLoaded = data.model_loaded;
updateSystemInfo(data);
if (!modelLoaded) {
document.getElementById('init-section').style.display = 'block';
document.getElementById('generate-btn').disabled = true;
}
}
} catch (error) {
showStatus('β οΈ Cannot connect to server. Make sure backend_local.py is running on port 5000', 'error');
document.getElementById('system-info').innerHTML = '<div>β Server offline</div>';
}
}
function updateSystemInfo(data) {
const gpu = data.gpu_available ? 'β
GPU' : 'β οΈ CPU';
const model = data.model_loaded ? 'β
Model Loaded' : 'β³ Model Not Loaded';
const device = data.device || 'unknown';
document.getElementById('system-info').innerHTML = `
<div style="display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;">
<span>${gpu}</span>
<span>${model}</span>
<span>Device: ${device}</span>
</div>
`;
}
async function initializeModel() {
const initBtn = event.target;
initBtn.disabled = true;
initBtn.textContent = 'β³ Loading Model...';
showStatus('π€ Initializing model... This may take 2-5 minutes. Please wait...', 'info');
try {
const response = await fetch('http://localhost:5000/initialize', {
method: 'POST'
});
const data = await response.json();
if (response.ok && data.status === 'success') {
modelLoaded = true;
document.getElementById('init-section').style.display = 'none';
document.getElementById('generate-btn').disabled = false;
showStatus('β
Model loaded successfully! You can now generate videos.', 'success');
await checkServerHealth();
} else {
throw new Error(data.message || 'Failed to load model');
}
} catch (error) {
console.error('Error:', error);
showStatus('β Failed to load model: ' + error.message, 'error');
initBtn.disabled = false;
initBtn.textContent = 'π Initialize Model';
}
}
function setPrompt(text) {
document.getElementById('prompt').value = text;
document.getElementById('prompt').dispatchEvent(new Event('input'));
}
function showStatus(message, type) {
const status = document.getElementById('status');
status.textContent = message;
status.className = 'status ' + type;
}
async function generateVideo() {
const prompt = document.getElementById('prompt').value.trim();
if (!prompt) {
showStatus('Please enter a prompt', 'error');
return;
}
if (prompt.length < 3) {
showStatus('Prompt must be at least 3 characters long', 'error');
return;
}
if (!modelLoaded) {
showStatus('Please initialize the model first', 'warning');
return;
}
// UI updates
const generateBtn = document.getElementById('generate-btn');
generateBtn.disabled = true;
generateBtn.textContent = 'π¬ Generating...';
document.getElementById('loader').style.display = 'block';
document.getElementById('video-container').style.display = 'none';
document.getElementById('video-actions').style.display = 'none';
document.getElementById('video-info').style.display = 'none';
showStatus('π¨ Generating video... This will take 30-120 seconds depending on your hardware', 'info');
try {
const response = await fetch('http://localhost:5000/generate-video', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ prompt })
});
const data = await response.json();
if (!response.ok || data.error) {
throw new Error(data.error || 'Failed to generate video');
}
// Success
currentVideoUrl = data.video_url;
const videoOutput = document.getElementById('video-output');
// Handle local file path
if (currentVideoUrl.startsWith('/download/')) {
videoOutput.src = 'http://localhost:5000' + currentVideoUrl;
} else {
videoOutput.src = currentVideoUrl;
}
document.getElementById('video-container').style.display = 'block';
document.getElementById('video-actions').style.display = 'flex';
// Show video info
const videoInfo = document.getElementById('video-info');
videoInfo.innerHTML = `
<strong>Model:</strong> ${data.model_name || 'CogVideoX-2B'}<br>
<strong>Device:</strong> ${data.device || 'unknown'}<br>
<strong>Frames:</strong> ${data.num_frames || 49} (~6 seconds)<br>
<strong>Prompt:</strong> ${data.prompt}<br>
<strong>Generated:</strong> ${new Date(data.timestamp).toLocaleString()}
`;
videoInfo.style.display = 'block';
showStatus('β
Video generated successfully!', 'success');
videoOutput.play().catch(() => {});
} catch (error) {
console.error('Error:', error);
showStatus('β Error: ' + error.message, 'error');
} finally {
generateBtn.disabled = false;
generateBtn.textContent = 'π¬ Generate Video';
document.getElementById('loader').style.display = 'none';
}
}
async function downloadVideo() {
if (!currentVideoUrl) return;
try {
showStatus('π₯ Preparing download...', 'info');
const videoUrl = currentVideoUrl.startsWith('/download/')
? 'http://localhost:5000' + currentVideoUrl
: currentVideoUrl;
const response = await fetch(videoUrl);
const blob = await response.blob();
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `ai-video-local-${Date.now()}.mp4`;
document.body.appendChild(a);
a.click();
window.URL.revokeObjectURL(url);
document.body.removeChild(a);
showStatus('β
Download started!', 'success');
} catch (error) {
console.error('Download error:', error);
showStatus('β Failed to download video', 'error');
}
}
function shareVideo() {
if (!currentVideoUrl) return;
const videoUrl = currentVideoUrl.startsWith('/download/')
? 'http://localhost:5000' + currentVideoUrl
: currentVideoUrl;
navigator.clipboard.writeText(videoUrl).then(() => {
showStatus('π Video URL copied to clipboard!', 'success');
}).catch(() => {
showStatus('β Failed to copy URL', 'error');
});
}
</script>
</body>
</html>
|