Spaces:
Running
Running
File size: 29,504 Bytes
6fc3143 e46a637 6fc3143 |
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 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 |
"""
Unified FastAPI Video Generation Server
Supports text prompts, PDFs, and URLs for all animation categories.
"""
from fastapi import FastAPI, HTTPException, BackgroundTasks
from fastapi.responses import FileResponse, JSONResponse
from pydantic import BaseModel, Field
from typing import Optional, List, Dict, Any, Literal, Union
from enum import Enum
import uuid
import os
import json
import subprocess
import shutil
from datetime import datetime
from pathlib import Path
import asyncio
import logging
import base64
# Load environment variables from .env file
from dotenv import load_dotenv
load_dotenv()
from manimator.api.animation_generation import generate_animation_response
from manimator.utils.code_fixer import CodeFixer
# from manimator.api.input_processor import process_input
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger("api_server_unified")
# ============================================================================
# Configuration
# ============================================================================
class Config:
"""Application configuration"""
BASE_DIR = Path(__file__).parent
JOBS_DIR = BASE_DIR / "jobs"
VIDEOS_DIR = BASE_DIR / "media" / "videos"
MAX_JOB_AGE_DAYS = 7
# Ensure directories exist
JOBS_DIR.mkdir(exist_ok=True)
VIDEOS_DIR.mkdir(parents=True, exist_ok=True)
# ============================================================================
# Models
# ============================================================================
class JobStatus(str, Enum):
"""Job status enumeration"""
PENDING = "pending"
GENERATING_CODE = "generating_code"
RENDERING = "rendering"
COMPLETED = "completed"
FAILED = "failed"
class QualityLevel(str, Enum):
"""Video quality levels"""
LOW = "low" # 480p15
MEDIUM = "medium" # 720p30
HIGH = "high" # 1080p60
ULTRA = "ultra" # 4K60
class AnimationCategory(str, Enum):
"""Animation categories"""
TECH_SYSTEM = "tech_system"
PRODUCT_STARTUP = "product_startup"
MATHEMATICAL = "mathematical"
QUALITY_FLAGS = {
QualityLevel.LOW: "-pql",
QualityLevel.MEDIUM: "-pqm",
QualityLevel.HIGH: "-pqh",
QualityLevel.ULTRA: "-pqk",
}
class VideoRequest(BaseModel):
"""Request model for video generation"""
input_type: Literal["text", "pdf", "url"] = Field(..., description="Type of input")
input_data: Union[str, bytes] = Field(..., description="Input data (text prompt, base64 PDF, or URL)")
quality: QualityLevel = Field(default=QualityLevel.HIGH, description="Video quality level")
category: AnimationCategory = Field(default=AnimationCategory.MATHEMATICAL, description="Animation category")
scene_name: Optional[str] = Field(default=None, description="Custom scene class name")
class Config:
json_schema_extra = {
"example": {
"input_type": "text",
"input_data": "Explain how a distributed system handles requests",
"quality": "high",
"category": "tech_system"
}
}
class JobResponse(BaseModel):
"""Response model for job creation"""
job_id: str
status: JobStatus
message: str
created_at: str
class JobStatusResponse(BaseModel):
"""Response model for job status"""
job_id: str
status: JobStatus
category: str
progress: Dict[str, Any]
created_at: str
updated_at: str
error: Optional[str] = None
video_url: Optional[str] = None
duration: Optional[float] = None
# ============================================================================
# Job Manager
# ============================================================================
class JobManager:
"""Manages video generation jobs"""
def __init__(self):
self.jobs: Dict[str, Dict] = {}
self._load_existing_jobs()
self._cleanup_task = None
def _load_existing_jobs(self):
"""Load existing jobs from disk"""
for job_file in Config.JOBS_DIR.glob("*.json"):
try:
with open(job_file) as f:
job_data = json.load(f)
self.jobs[job_data["job_id"]] = job_data
except Exception as e:
logger.error(f"Error loading job {job_file}: {e}")
def create_job(
self,
input_type: str,
input_data: Union[str, bytes],
quality: QualityLevel,
category: AnimationCategory,
scene_name: Optional[str] = None
) -> str:
"""Create a new job"""
job_id = str(uuid.uuid4())
if not scene_name:
scene_name = f"Scene_{uuid.uuid4().hex[:8]}"
job_data = {
"job_id": job_id,
"status": JobStatus.PENDING,
"input_type": input_type,
"quality": quality,
"category": category.value,
"scene_name": scene_name,
"created_at": datetime.now().isoformat(),
"updated_at": datetime.now().isoformat(),
"progress": {
"stage": "queued",
"percentage": 0,
"message": "Job queued for processing"
},
"error": None,
"video_path": None,
"code_path": None,
}
# Store input data (truncate if too long for display)
if input_type == "text":
job_data["input_preview"] = str(input_data)[:200] + "..." if len(str(input_data)) > 200 else str(input_data)
elif input_type == "url":
job_data["input_preview"] = str(input_data)
else:
job_data["input_preview"] = "[PDF file]"
self.jobs[job_id] = job_data
self._save_job(job_id)
return job_id
def update_job(self, job_id: str, **kwargs):
"""Update job data"""
if job_id not in self.jobs:
return
self.jobs[job_id].update(kwargs)
self.jobs[job_id]["updated_at"] = datetime.now().isoformat()
self._save_job(job_id)
def get_job(self, job_id: str) -> Optional[Dict]:
"""Get job by ID"""
return self.jobs.get(job_id)
def _save_job(self, job_id: str):
"""Save job to disk"""
# Ensure directory exists
Config.JOBS_DIR.mkdir(parents=True, exist_ok=True)
job_file = Config.JOBS_DIR / f"{job_id}.json"
with open(job_file, 'w') as f:
json.dump(self.jobs[job_id], f, indent=2)
def list_jobs(self, limit: int = 50) -> List[Dict]:
"""List recent jobs"""
jobs = sorted(
self.jobs.values(),
key=lambda x: x["created_at"],
reverse=True
)
return jobs[:limit]
def start_periodic_cleanup(self):
"""Start periodic cleanup task (call this after event loop is running)"""
if self._cleanup_task is None:
self._cleanup_task = asyncio.create_task(self._periodic_cleanup())
async def _periodic_cleanup(self):
"""Periodic cleanup of old jobs and voiceover cache"""
import time
# Wait a bit before starting cleanup
await asyncio.sleep(60)
while True:
try:
await asyncio.sleep(3600) # Run every hour
await self._cleanup_old_jobs()
await self._cleanup_old_voiceovers()
except Exception as e:
logger.warning(f"Periodic cleanup error: {e}")
async def _cleanup_old_jobs(self):
"""Remove old job files and their associated data"""
cutoff_date = datetime.now().timestamp() - (Config.MAX_JOB_AGE_DAYS * 24 * 3600)
removed_count = 0
for job_id, job_data in list(self.jobs.items()):
try:
job_time = datetime.fromisoformat(job_data["created_at"]).timestamp()
if job_time < cutoff_date:
# Remove job file
job_file = Config.JOBS_DIR / f"{job_id}.json"
if job_file.exists():
job_file.unlink()
# Remove from memory
del self.jobs[job_id]
removed_count += 1
except Exception as e:
logger.warning(f"Error cleaning up job {job_id[:8]}: {e}")
if removed_count > 0:
logger.info(f"π§Ή Cleaned up {removed_count} old jobs")
async def _cleanup_old_voiceovers(self):
"""Clean up old voiceover cache files (keep recent ones)"""
import time
try:
# Clean both ElevenLabs and gTTS cache
for service_dir in ["elevenlabs", "gtts"]:
voiceover_dir = Config.BASE_DIR / "media" / "voiceover" / service_dir
if not voiceover_dir.exists():
continue
# Keep voiceover files from last 7 days
cutoff_time = time.time() - (7 * 24 * 3600)
removed_count = 0
for voice_file in voiceover_dir.glob("*.mp3"):
try:
if voice_file.stat().st_mtime < cutoff_time:
voice_file.unlink()
removed_count += 1
except Exception:
pass
if removed_count > 0:
logger.info(f"π§Ή Cleaned up {removed_count} old {service_dir} voiceover files")
except Exception as e:
logger.warning(f"Error cleaning up voiceovers: {e}")
# ============================================================================
# Video Generator
# ============================================================================
class VideoGenerator:
"""Handles video generation workflow"""
def __init__(self, job_manager: JobManager):
self.job_manager = job_manager
async def generate_video(self, job_id: str):
"""Generate video for a job"""
job = self.job_manager.get_job(job_id)
if not job:
return
logger.info(f"π¬ Starting video generation for job {job_id[:8]}...")
try:
# Stage 2: Generate Manim code
logger.info(f"π€ Generating Manim code for job {job_id[:8]}...")
self.job_manager.update_job(
job_id,
status=JobStatus.GENERATING_CODE,
progress={
"stage": "generating_code",
"percentage": 30,
"message": "Generating Manim code using AI..."
}
)
# Pass raw input to generation function which now handles processing
code = generate_animation_response(
input_data=job.get("input_data", ""),
input_type=job["input_type"],
category=job["category"],
job_id=job_id # Pass job_id for Reflexion logging
)
logger.info(f"β
Code generation complete for job {job_id[:8]}...")
# Save code
code_file = Config.BASE_DIR / f"scene_{job_id}.py"
with open(code_file, 'w') as f:
f.write(code)
logger.info(f"πΎ Code saved to {code_file.name}")
# Ensure voiceover directories exist
voiceover_dir = Config.BASE_DIR / "media" / "voiceover"
(voiceover_dir / "elevenlabs").mkdir(parents=True, exist_ok=True)
(voiceover_dir / "gtts").mkdir(parents=True, exist_ok=True)
self.job_manager.update_job(
job_id,
code_path=str(code_file),
progress={
"stage": "code_generated",
"percentage": 50,
"message": "Code generated successfully"
}
)
# Stage 3: Render video with Self-Healing Loop
fixer = CodeFixer()
max_retries = 3
video_path = None
for attempt in range(max_retries):
try:
logger.info(f"π₯ Starting Manim rendering for job {job_id[:8]} (Attempt {attempt+1}/{max_retries})...")
self.job_manager.update_job(
job_id,
status=JobStatus.RENDERING,
progress={
"stage": "rendering",
"percentage": 60 + (attempt * 5),
"message": f"Rendering video (Attempt {attempt+1})..."
}
)
video_path = await self._render_video(
code_file,
job["scene_name"],
QualityLevel(job["quality"])
)
# If successful, break the loop
break
except Exception as e:
error_msg = str(e)
logger.warning(f"β οΈ Rendering failed on attempt {attempt+1}: {error_msg}")
if attempt < max_retries - 1:
# Try to fix the code
logger.info(f"π§ Attempting to auto-fix code for job {job_id[:8]}...")
self.job_manager.update_job(
job_id,
progress={
"stage": "fixing_code",
"percentage": 60 + (attempt * 5),
"message": f"Fixing rendering error..."
}
)
# Read current code
with open(code_file, 'r') as f:
current_code = f.read()
# Fix code using LLM
fixed_code = fixer.fix_runtime_error(current_code, error_msg)
# Save fixed code
with open(code_file, 'w') as f:
f.write(fixed_code)
logger.info(f"πΎ Saved fixed code for job {job_id[:8]}")
else:
# Out of retries, re-raise exception
raise e
logger.info(f"β
Video rendering complete for job {job_id[:8]}...")
# Stage 4: Complete
self.job_manager.update_job(
job_id,
status=JobStatus.COMPLETED,
video_path=str(video_path),
progress={
"stage": "completed",
"percentage": 100,
"message": "Video generation completed successfully!"
}
)
# Stage 5: Cleanup intermediate files in background
asyncio.create_task(self._cleanup_intermediate_files(job_id, code_file, video_path))
except Exception as e:
logger.error(f"β Error generating video for job {job_id[:8]}: {str(e)}")
self.job_manager.update_job(
job_id,
status=JobStatus.FAILED,
error=str(e),
progress={
"stage": "failed",
"percentage": 0,
"message": f"Error: {str(e)}"
}
)
async def _render_video(self, code_file: Path, scene_name: str, quality: QualityLevel) -> Path:
"""Render Manim scene to video"""
quality_flag = QUALITY_FLAGS[quality]
# Ensure ALL media directories exist before rendering
media_dir = Config.BASE_DIR / "media"
voiceover_dir = media_dir / "voiceover" / "elevenlabs"
voiceover_dir.mkdir(parents=True, exist_ok=True)
# Also create gTTS cache directory in case of fallback
gtts_dir = media_dir / "voiceover" / "gtts"
gtts_dir.mkdir(parents=True, exist_ok=True)
# Create videos directory structure
Config.VIDEOS_DIR.mkdir(parents=True, exist_ok=True)
cmd = [
"manim",
quality_flag,
"--media_dir",
str(Config.BASE_DIR / "media"),
str(code_file),
scene_name,
]
# Set working directory to base dir to ensure relative paths work
env = os.environ.copy()
# Set MEDIA_DIR as absolute path to help voiceover services find cache directory
env["MEDIA_DIR"] = str(media_dir.resolve())
process = await asyncio.create_subprocess_exec(
*cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
cwd=str(Config.BASE_DIR),
env=env
)
stdout, stderr = await process.communicate()
if process.returncode != 0:
error_output = stderr.decode()[-500:] if stderr else "Unknown error"
raise Exception(f"Manim rendering failed: {error_output}")
# Find generated video
quality_dir = {
QualityLevel.LOW: "480p15",
QualityLevel.MEDIUM: "720p30",
QualityLevel.HIGH: "1080p60",
QualityLevel.ULTRA: "2160p60"
}[quality]
video_dir = Config.VIDEOS_DIR / code_file.stem / quality_dir
video_files = list(video_dir.glob("*.mp4"))
if not video_files:
raise Exception(f"No video file found in {video_dir}")
video_path = video_files[0]
logger.info(f"πΉ Found video: {video_path.name}")
return video_path
async def _cleanup_intermediate_files(self, job_id: str, code_file: Path, final_video_path: Path):
"""
Clean up intermediate files in background after video is successfully created.
Removes: scene code files, partial videos, voiceover files (keeps final video).
Args:
job_id: Job ID
code_file: Path to generated scene code file
final_video_path: Path to final rendered video (keep this)
"""
try:
logger.info(f"π§Ή Starting cleanup for job {job_id[:8]}...")
# 1. Remove scene code file
if code_file.exists():
try:
code_file.unlink()
logger.info(f" β
Removed scene code: {code_file.name}")
except Exception as e:
logger.warning(f" β οΈ Could not remove scene code: {e}")
# 2. Remove partial video files (keep only final video)
# Find all video files in the scene directory
scene_video_dir = Config.VIDEOS_DIR / code_file.stem
if scene_video_dir.exists():
# Keep only the final video, remove all other quality versions and partial files
final_video_name = final_video_path.name
for quality_dir in scene_video_dir.iterdir():
if quality_dir.is_dir():
for video_file in quality_dir.glob("*.mp4"):
# Keep only the final video file
if video_file.name != final_video_name:
try:
video_file.unlink()
logger.info(f" β
Removed partial video: {video_file.name}")
except Exception as e:
logger.warning(f" β οΈ Could not remove partial video: {e}")
# Remove partial movie files directory if exists
partial_dir = quality_dir / "partial_movie_files"
if partial_dir.exists():
try:
shutil.rmtree(partial_dir)
logger.info(f" β
Removed partial movie files directory")
except Exception as e:
logger.warning(f" β οΈ Could not remove partial files: {e}")
# 3. Remove voiceover files for this job (they're cached, so safe to remove)
# Voiceover files are cached by text hash, so we can't easily identify job-specific ones
# Instead, we'll clean up old voiceover files periodically (not per-job)
# This is handled by a separate cleanup task
# 4. Remove any temporary files in media directory for this scene
scene_media_dir = Config.BASE_DIR / "media" / "videos" / code_file.stem
if scene_media_dir.exists():
# Remove text SVGs, images, etc. but keep the final video directory structure
for item in scene_media_dir.iterdir():
if item.is_file() and item.suffix in ['.svg', '.png', '.jpg', '.txt', '.srt']:
try:
item.unlink()
logger.info(f" β
Removed temporary file: {item.name}")
except Exception as e:
logger.warning(f" β οΈ Could not remove temp file: {e}")
logger.info(f"β
Cleanup completed for job {job_id[:8]}")
except Exception as e:
# Don't fail the job if cleanup fails
logger.warning(f"β οΈ Cleanup error for job {job_id[:8]}: {e}")
# ============================================================================
# FastAPI Application
# ============================================================================
app = FastAPI(
title="Unified Manim Video Generation API",
description="Generate educational animation videos from text, PDFs, or URLs",
version="2.0.0",
docs_url="/docs",
redoc_url="/redoc"
)
from fastapi.middleware.cors import CORSMiddleware
app.add_middleware(
CORSMiddleware,
allow_origins=["http://localhost:3000", "http://localhost:8000"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Security
from fastapi import Security, HTTPException, status
from fastapi.security.api_key import APIKeyHeader
API_KEY_NAME = "X-API-KEY"
API_KEY = os.getenv("INTERNAL_API_KEY")
if not API_KEY:
logger.warning("β οΈ INTERNAL_API_KEY is not set. API is insecure or will fail auth checks.")
api_key_header = APIKeyHeader(name=API_KEY_NAME, auto_error=True)
async def get_api_key(api_key_header: str = Security(api_key_header)):
if not API_KEY:
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Server security configuration error"
)
if api_key_header != API_KEY:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Could not validate credentials"
)
return api_key_header
# Initialize managers
job_manager = JobManager()
video_generator = VideoGenerator(job_manager)
@app.on_event("startup")
async def startup_event():
"""Startup event - initialize background tasks"""
job_manager.start_periodic_cleanup()
logger.info("β
Background cleanup tasks started")
# ============================================================================
# Endpoints
# ============================================================================
@app.get("/")
async def root():
"""API root endpoint"""
return {
"name": "Unified Manim Video Generation API",
"version": "2.0.0",
"description": "Supports text prompts, PDFs, and URLs",
"categories": ["tech_system", "product_startup", "mathematical"],
"input_types": ["text", "pdf", "url"],
"endpoints": {
"docs": "/docs",
"create_video": "POST /api/videos",
"get_status": "GET /api/jobs/{job_id}",
"download_video": "GET /api/videos/{job_id}",
"list_jobs": "GET /api/jobs"
}
}
@app.post("/api/videos", response_model=JobResponse)
async def create_video(request: VideoRequest, background_tasks: BackgroundTasks):
"""
Create a new video generation job
Supports three input types:
- text: Plain text prompt
- pdf: Base64 encoded PDF file
- url: URL to scrape content from
"""
# Store input data in job
input_data = request.input_data
# Create job
job_id = job_manager.create_job(
input_type=request.input_type,
input_data=input_data,
quality=request.quality,
category=request.category,
scene_name=request.scene_name
)
# Store full input data for processing
job_manager.jobs[job_id]["input_data"] = input_data
logger.info(f"π New job created: {job_id} (type: {request.input_type}, category: {request.category})")
# Start generation in background
background_tasks.add_task(video_generator.generate_video, job_id)
return JobResponse(
job_id=job_id,
status=JobStatus.PENDING,
message="Job created successfully. Video generation started.",
created_at=datetime.now().isoformat()
)
@app.get("/api/jobs/{job_id}", response_model=JobStatusResponse)
async def get_job_status(job_id: str):
"""Get the status of a video generation job"""
job = job_manager.get_job(job_id)
if not job:
raise HTTPException(status_code=404, detail="Job not found")
video_url = None
duration = None
if job["status"] == JobStatus.COMPLETED and job.get("video_path"):
video_url = f"/api/videos/{job_id}"
# Get video duration if available
try:
video_path = Path(job["video_path"])
if video_path.exists():
result = subprocess.run(
["ffprobe", "-v", "error", "-show_entries", "format=duration",
"-of", "default=noprint_wrappers=1:nokey=1", str(video_path)],
capture_output=True,
text=True
)
duration = float(result.stdout.strip())
except:
pass
return JobStatusResponse(
job_id=job_id,
status=job["status"],
category=job["category"],
progress=job["progress"],
created_at=job["created_at"],
updated_at=job["updated_at"],
error=job.get("error"),
video_url=video_url,
duration=duration
)
@app.get("/api/videos/{job_id}")
async def download_video(job_id: str):
"""Download the generated video file"""
job = job_manager.get_job(job_id)
if not job:
raise HTTPException(status_code=404, detail="Job not found")
if job["status"] != JobStatus.COMPLETED:
raise HTTPException(
status_code=400,
detail=f"Video not ready. Status: {job['status']}"
)
video_path = Path(job["video_path"])
if not video_path.exists():
raise HTTPException(status_code=404, detail="Video file not found")
return FileResponse(
video_path,
media_type="video/mp4",
filename=f"animation_{job_id[:8]}.mp4"
)
@app.get("/api/jobs")
async def list_jobs(limit: int = 50):
"""List recent jobs"""
jobs = job_manager.list_jobs(limit)
return {"jobs": jobs, "total": len(jobs)}
@app.get("/health")
async def health_check():
"""Health check endpoint"""
return {
"status": "healthy",
"version": "2.0.0",
"jobs": {
"total": len(job_manager.jobs),
"pending": sum(1 for j in job_manager.jobs.values() if j["status"] == JobStatus.PENDING),
"processing": sum(1 for j in job_manager.jobs.values() if j["status"] in [JobStatus.GENERATING_CODE, JobStatus.RENDERING]),
"completed": sum(1 for j in job_manager.jobs.values() if j["status"] == JobStatus.COMPLETED),
"failed": sum(1 for j in job_manager.jobs.values() if j["status"] == JobStatus.FAILED)
}
}
# ============================================================================
# Main
# ============================================================================
if __name__ == "__main__":
import uvicorn
print("π Starting Unified Manim Video Generation API Server...")
print("π API Documentation: http://localhost:8000/docs")
print("π ReDoc Documentation: http://localhost:8000/redoc")
print("β¨ Supports: Text, PDF, and URL inputs")
print("π¨ Categories: Tech System, Product Startup, Mathematical")
uvicorn.run(
"api_server:app",
host="0.0.0.0",
port=8003,
reload=False,
log_level="info"
)
|