Speed-optimized variant of Hailuo-2.3 delivering rapid video generation while maintaining strong visual quality for quick iterations.
Speed-optimized variant of Hailuo-2.3 delivering rapid video generation while maintaining strong visual quality for quick iterations.
आपके अनुरोध की लागत 0.19 प्रति रन होगी। $10 के साथ आप इस मॉडल को लगभग 52 बार चला सकते हैं।
आगे आप यह कर सकते हैं:
import requests
import time
# Step 1: Start video generation
generate_url = "https://api.atlascloud.ai/api/v1/model/generateVideo"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
"model": "minimax/hailuo-2.3/fast",
"prompt": "A beautiful sunset over the ocean with gentle waves",
"width": 512,
"height": 512,
"duration": 3,
"fps": 24
}
generate_response = requests.post(generate_url, headers=headers, json=data)
generate_result = generate_response.json()
prediction_id = generate_result["data"]["id"]
# Step 2: Poll for result
poll_url = f"https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}"
def check_status():
while True:
response = requests.get(poll_url, headers={"Authorization": "Bearer $ATLASCLOUD_API_KEY"})
result = response.json()
if result["data"]["status"] in ["completed", "succeeded"]:
print("Generated video:", result["data"]["outputs"][0])
return result["data"]["outputs"][0]
elif result["data"]["status"] == "failed":
raise Exception(result["data"]["error"] or "Generation failed")
else:
# Still processing, wait 2 seconds
time.sleep(2)
video_url = check_status()अपने मॉडल अनुरोध इतिहास तक पहुंचने के लिए आपको साइन इन करना होगा।
साइन इन करेंHailuo 2.3 Fast is the high-speed version of MiniMax’s latest video generation model.
It produces cinematic-quality videos 30–50% faster than the standard model while maintaining stable motion, clear detail, and balanced lighting — ideal for creators who need both speed and quality.
Accelerated Generation – Create 6–10 second clips up to twice as fast as Hailuo 2.3 Standard.
High Efficiency, Low Cost – Perfect for batch content creation, previews, and iteration loops.
Consistent Quality – Despite faster generation, visual stability and motion smoothness remain impressive.
Safety & Prompt Expansion – Built-in safety checker and automatic prompt enhancement for optimal output.
Flexible Durations – Supports both 6-second and 10-second formats at 1080p clarity.
Input: text prompt (optional reference image for stability)
Duration options: 6 seconds or 10 seconds
Resolution: 1080p
Prompt Expansion: optional auto-refinement to enhance quality
Processing speed: typically 20–50 seconds per clip
Write your prompt describing the scene, lighting, or action.
Example: “A cute kitten stretches lazily in the morning sunlight, soft fur glowing.”
(Optional) Upload a reference image to fix the composition.
Select your duration (6 s or 10 s).
Enable Prompt Expansion for improved scene coherence and safety.
Check Go Fast mode to prioritize speed.
Click Run and receive your generated video in under a minute.
Keep prompts concise — the model auto-expands them intelligently.
Use lighting cues like sunset, studio light, or cinematic glow for richer output.
For social content, try 6 s mode for faster delivery.
For detailed storytelling or dynamic motion, use 10 s.
Combine clips to create longer edits using consistent camera language.