wan2.6-r2v 呼叫 MixRoute 影片生成介面。
模型規格
完整欄位、素材限制、預設值及輪詢流程見 通義萬相介面。不要跨版本複用輸入和輸出尺寸欄位。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
萬相 2.6 R2V 通過影像/影片 URL 生成保持主體一致性的影片,使用 character1、character2 等標識引用素材。
wan2.6-r2v 呼叫 MixRoute 影片生成介面。
| 專案 | 說明 |
|---|---|
| 型別 | 參考生影片 |
| 解析度 | 720P / 1080P |
| 時長(秒) | 2-10 |
| 輸出 | MP4 / 30 fps |
| 請求 | model + metadata.input + metadata.parameters |
curl --request POST "https://api.mixroute.ai/v1/video/generations" \
--header "Authorization: Bearer $MIXROUTE_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"model": "wan2.6-r2v",
"metadata": {
"input": {
"prompt": "character1 slowly rotates on a white tabletop. Static camera, soft studio lighting.",
"reference_urls": [
"https://example.com/reference.png"
]
},
"parameters": {
"size": "1280*720",
"duration": 2,
"watermark": false
}
}
}'
import json
import os
import requests
payload = json.loads(r'''
{
"model": "wan2.6-r2v",
"metadata": {
"input": {
"prompt": "character1 slowly rotates on a white tabletop. Static camera, soft studio lighting.",
"reference_urls": [
"https://example.com/reference.png"
]
},
"parameters": {
"size": "1280*720",
"duration": 2,
"watermark": false
}
}
}
''')
response = requests.post(
"https://api.mixroute.ai/v1/video/generations",
headers={"Authorization": "Bearer " + os.environ["MIXROUTE_API_KEY"]},
json=payload,
timeout=120,
)
response.raise_for_status()
result = response.json()
task_id = result.get("task_id") or result.get("id")
if not task_id:
raise RuntimeError(result.get("message") or result)
print(task_id)