HappyHorse-I2V
Copied!
Try AIAdd to Compare
Video Generation
Overview
Video Generation
HappyHorse-1.1-I2V supports Image-to-Video generation with improved visual quality, dynamic performance, and cross-clip consistency. It more accurately understands the input image and preserves creative intent, delivering significant improvements in skin texture realism, character ID consistency across clips, motion smoothness, text rendering stability, and audio-visual synchronization, producing high-quality videos with greater realism, richer details, and stronger overall consistency.
Input
ImageText
Output
Video
Features
Prefix Completion
Enable Partial Mode when calling the Qwen API to make the model continue strictly from your provided prefix text.View docsFunction Calling
Use function calling to connect large language models with external tools and systems.View docsCache
Context Cache stores shared prefixes for long-context requests to reduce repeated computation, improve latency, and lower cost.View docsStructured Outputs
Structured Outputs help ensure the model returns a JSON string in the expected format.View docsBatches
feature.funeTuning
Pricing
- Video Generation(720P)40% off$0.14$0.084Per second
- Video Generation(1080P)40% off$0.18$0.108Per second
Rate Limits
- RPMRequests Per Minute300
- Concurrency5concurrent
- Async Queue Limit500tasks
API Reference
Get API KeyCopied!
1234567891011121314151617181920
curl --location 'https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis' \
-H 'X-DashScope-Async: enable' \
-H "Authorization: Bearer $DASHSCOPE_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"model": "happyhorse-1.1-i2v",
"input": {
"prompt": "A cat dashes through the grass.",
"media": [
{
"type": "first_frame",
"url": "https://cdn.translate.alibaba.com/r/wanx-demo-1.png"
}
]
},
"parameters": {
"resolution": "720P",
"duration": 5
}
}'