Animate static images into dynamic video with the Lite model. Delivers motion, transitions, and stylistic coherence at lower latency and cost, while preserving source imagery.
Animate static images into dynamic video with the Lite model. Delivers motion, transitions, and stylistic coherence at lower latency and cost, while preserving source imagery.
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": "bytedance/seedance-v1-lite-i2v-480p",
"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()ByteDance Seedance Lite I2V 480p is an optimized AI image-to-video generation model developed by ByteDance, now available on WaveSpeedAI. This cost-effective model transforms static images into dynamic 5-10 second videos at 480p resolution with efficient processing speed, offering quality visual outputs with enhanced motion and semantic understanding. Part of the Seedance Lite model family, this model delivers excellent performance in image-to-video synthesis at an affordable price point.
The model and its derivatives may not be used in any way that violates applicable national, federal, state, local, or international law or regulation, including but not limited to: