curl --request POST \
--url https://toapis.com/v1/videos/task_01K8SGYNNNVBQTXNR4MM964S7K/remix \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "sora-2",
"prompt": "Add a puppy playing in the scene",
"duration": 15,
"aspect_ratio": "16:9"
}'
import requests
video_id = "task_01K8SGYNNNVBQTXNR4MM964S7K"
response = requests.post(
f"https://toapis.com/v1/videos/{video_id}/remix",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "sora-2",
"prompt": "Add a puppy playing in the scene",
"duration": 15,
"aspect_ratio": "16:9"
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const videoId = 'task_01K8SGYNNNVBQTXNR4MM964S7K';
const response = await fetch(`https://toapis.com/v1/videos/${videoId}/remix`, {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'sora-2',
prompt: 'Add a puppy playing in the scene',
duration: 15,
aspect_ratio: '16:9'
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
"id": "video_01K8SGYNNNVBQTXNR4MM964S7K",
"object": "generation.task",
"model": "sora-2",
"status": "queued",
"progress": 0,
"created_at": 1768380224,
"metadata": {
"size": "720x720"
}
}
Sora2
Sora2 视频混音
编辑和修改已生成的视频
POST
/
v1
/
videos
/
{video_id}
/
remix
curl --request POST \
--url https://toapis.com/v1/videos/task_01K8SGYNNNVBQTXNR4MM964S7K/remix \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "sora-2",
"prompt": "Add a puppy playing in the scene",
"duration": 15,
"aspect_ratio": "16:9"
}'
import requests
video_id = "task_01K8SGYNNNVBQTXNR4MM964S7K"
response = requests.post(
f"https://toapis.com/v1/videos/{video_id}/remix",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "sora-2",
"prompt": "Add a puppy playing in the scene",
"duration": 15,
"aspect_ratio": "16:9"
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const videoId = 'task_01K8SGYNNNVBQTXNR4MM964S7K';
const response = await fetch(`https://toapis.com/v1/videos/${videoId}/remix`, {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'sora-2',
prompt: 'Add a puppy playing in the scene',
duration: 15,
aspect_ratio: '16:9'
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
"id": "video_01K8SGYNNNVBQTXNR4MM964S7K",
"object": "generation.task",
"model": "sora-2",
"status": "queued",
"progress": 0,
"created_at": 1768380224,
"metadata": {
"size": "720x720"
}
}
- Sora2 视频混音功能
- 混音和编辑已生成的视频
- 支持基于现有视频进行二次创作
- 异步任务管理,通过任务 ID 查询结果
Path Parameters
string
必填
原始视频任务 ID这是之前视频生成请求返回的任务 ID
Authorizations
string
必填
所有接口均需要使用 Bearer Token 进行认证获取 API Key:访问 API Key 管理页面 获取您的 API Key使用时在请求头中添加:
Authorization: Bearer YOUR_API_KEY
Body
string
默认值:"sora-2"
必填
视频混音模型名称支持的模型:
sora-2- 标准版sora-2-pro- 专业版,支持更长时长sora-2-vip- VIP版,更高优先级
"sora-2" 或 "sora-2-pro"string
必填
混音指令描述
integer
视频时长(秒)
sora-2:支持 10 或 15 秒sora-2-pro:支持 15 秒(HD)或 25 秒
15string
视频宽高比支持的格式:
16:9- 标准宽屏(推荐)9:16- 竖屏模式1:1- 方形
"16:9"Response
string
任务唯一标识符,用于查询任务状态
string
对象类型,固定为
generation.taskstring
使用的模型名称
string
任务状态
queued- 排队等待处理in_progress- 处理中completed- 成功完成failed- 失败
integer
任务进度百分比(0-100)
integer
任务创建时间戳(Unix 时间戳)
object
任务元数据
curl --request POST \
--url https://toapis.com/v1/videos/task_01K8SGYNNNVBQTXNR4MM964S7K/remix \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "sora-2",
"prompt": "Add a puppy playing in the scene",
"duration": 15,
"aspect_ratio": "16:9"
}'
import requests
video_id = "task_01K8SGYNNNVBQTXNR4MM964S7K"
response = requests.post(
f"https://toapis.com/v1/videos/{video_id}/remix",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "sora-2",
"prompt": "Add a puppy playing in the scene",
"duration": 15,
"aspect_ratio": "16:9"
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const videoId = 'task_01K8SGYNNNVBQTXNR4MM964S7K';
const response = await fetch(`https://toapis.com/v1/videos/${videoId}/remix`, {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'sora-2',
prompt: 'Add a puppy playing in the scene',
duration: 15,
aspect_ratio: '16:9'
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
"id": "video_01K8SGYNNNVBQTXNR4MM964S7K",
"object": "generation.task",
"model": "sora-2",
"status": "queued",
"progress": 0,
"created_at": 1768380224,
"metadata": {
"size": "720x720"
}
}
⌘I