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