All Models
Video
🎬
Vidu 2.0
Shengshu
About
Vidu 2.0 is Shengshu's efficient video generation model producing 4-second clips with solid motion quality and good character consistency. A cost-effective entry point into the Vidu ecosystem, ideal for teams that want to experiment with Shengshu's unique identity-preservation technology at a lower price.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| 720p / 4s | $0.230/req | 50 cr |
Use Cases
Short-form social contentQuick product teasersCost-efficient character videoCreative experimentation
API Example
JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2video", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "vidu-2-0",
prompt: "A young professional presenting in a modern office setting with natural light",
duration: 4,
resolution: "720p"
})
});
const { taskId } = await response.json();