PeakMV V3 Cinematic Engine
The 5-Minute Cinematic AI Video API
Generate complete, narrative, multi-scene AI videos up to 300 seconds long. Persistent character identity, anamorphic camera motion, and audio-reactive pacing in a single API call.
POST /api/v3/generate
import requests
API_KEY = "peak_live_..."
HEADERS = {
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json"
}
payload = {
"mode": "script_to_video",
"title": "The Last Neon Horizon",
"duration_seconds": 180, # Up to 300s (5 full minutes)
"aspect_ratio": "2.39:1", # Cinema widescreen standard
"video_quality": "1080p",
"narrative": {
"script": "EXT. CYBERPUNK MEGAPOLIS - NIGHT\nA renegade pilot surveys the skyline as rain pelts the cockpit...",
"genre": "sci-fi_noir",
"camera_style": "anamorphic_steadicam",
"lighting": "chiaroscuro_neon"
},
"characters": [
{
"name": "Kaelen",
"face_image_url": "https://cdn.example.com/actors/kaelen.png",
"voice_lipsync": True
}
],
"audio": {
"url": "https://cdn.example.com/soundtrack/synth-score.mp3",
"sync_mode": "narrative_beats"
}
}
response = requests.post("https://peakmv.com/api/v3/generate", headers=HEADERS, json=payload)
job = response.json()
print(f"🎬 Directed 5-minute cinema job: {job['job_id']}")
print(f"📡 Real-time SSE Stream: {job['stream_url']}")Built for Production-Grade Cinema
Stop chaining together disconnected 5-second video prompts. PeakMV provides full narrative orchestration.
Up to 5 Minutes (300s)
Seamlessly generate 30 to 60 consecutive storyboarded scenes stitched with beat synchronization, crossfades, and master audio.
Persistent Character Identity
Lock actor facial likeness and clothing across every scene using actor reference injection and facial identity persistence.
Director Camera Directives
Direct camera mechanics scene by scene: dolly zooms, overhead crane shots, anamorphic flares, and cinema LUT grading.
Start Directing with Code
Get your API key and generate your first multi-scene cinematic video in under 3 minutes.