สร้างวิดีโอด้วยข้อมูลอ้างอิงอย่างรวดเร็วด้วย Seedance 2.0 Fast API ใช้การรองรับมนุษย์สมจริง เสียงในตัว อัตราส่วนที่ยืดหยุ่น และเอาต์พุตที่เสถียร
ByteDance Seedance V2.0 Fast Reference-to-Video API มอบการสร้างวิดีโอด้วย AI ที่คุ้มค่าและรวดเร็วสำหรับนักพัฒนาและทีมครีเอทีฟที่ต้องการใช้วิดีโอต้นทางเป็นแนวทาง การผสาน reference-to-video API ที่เร็วมากนี้ช่วยสร้างคลิปวิดีโอระดับมืออาชีพที่ความละเอียด 480p และ 720p โดยใช้ reference video พร้อม prompt guidance สร้างบนสถาปัตยกรรมการสังเคราะห์วิดีโอที่ปรับแต่งแล้วของ ByteDance โมเดล Seedance V2.0 Fast ให้การสร้างแบบ source-guided ที่รวดเร็วพร้อมการควบคุมกล้องแบบเลือกใช้ได้และรองรับ audio input สำหรับ production workflows ปริมาณสูงบน Best Image AI
หมายเหตุ โปรดตรวจสอบว่า reference video, เสียงแบบเลือกใช้ได้ และ prompts ของคุณเป็นไปตามแนวทางความปลอดภัยด้านคอนเทนต์ของ ByteDance หากเกิดข้อผิดพลาด ให้ตรวจสอบคอนเทนต์เพื่อหาเนื้อหาที่ถูกจำกัด ปรับแก้ แล้วลองอีกครั้ง
Seedance V2.0 Fast vs. Seedance V2.0 Standard Reference-to-Video Seedance V2.0 Standard Reference-to-Video ให้คุณภาพสูงสุดสำหรับ production ระดับมืออาชีพ Seedance V2.0 Fast Reference-to-Video API ให้ความสำคัญกับความเร็วและความคุ้มค่า สร้างวิดีโอ reference-guided ได้เร็วขึ้น เหมาะกับ workflows ปริมาณสูงและการวนซ้ำอย่างรวดเร็ว
Seedance V2.0 Fast vs. Seedance V2.0 Fast Text-to-Video Seedance V2.0 Fast Text-to-Video สร้างวิดีโอจากคำอธิบายข้อความเพียงอย่างเดียว Seedance V2.0 Fast Reference-to-Video API เพิ่มอินพุต reference video เพื่อให้ motion แบบ source-guided และความต่อเนื่องทางภาพแข็งแรงขึ้น
Seedance V2.0 Fast vs. Kling 3.0 Reference Generation Kling 3.0 ให้การสร้างแบบ reference-based พร้อมการสังเคราะห์การเคลื่อนไหวของมนุษย์ที่แข็งแรง Seedance V2.0 Fast Reference-to-Video API แตกต่างด้วยความเร็วการสร้างที่มากกว่า รองรับอัตราส่วนภาพกว้างกว่า (6 รูปแบบ รวมถึง 21:9 ultrawide) และความยาวสูงสุด 15 วินาที
Seedance V2.0 Fast vs. Runway Gen-3 Custom Mode Runway Gen-3 Custom Mode ให้การสร้างแบบ subject-driven พร้อมการควบคุมเชิงสร้างสรรค์ Seedance V2.0 Fast Reference-to-Video API ให้ความเร็วการสร้างที่มากกว่า 6 รูปแบบอัตราส่วนภาพ และความยาวสูงสุด 15 วินาที
Seedance V2.0 Fast vs. Pika Reference Generation Pika ให้การ stylization แบบ reference-based พร้อมอินเทอร์เฟซที่ใช้ง่าย Seedance V2.0 Fast Reference-to-Video API ให้การเข้าถึงแบบ programmatic, ความเร็วการสร้างที่มากกว่า, 6 รูปแบบอัตราส่วนภาพ, ความยาว 15 วินาที และราคาที่คาดการณ์ได้
// Step 1: Submit generation request
const response = await fetch('https://api.flaq.ai/api/v1/video/task', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
model_name: 'seedance-v2.0-fast-reference-to-video',
prompt: 'Cinematic product reveal with smooth motion matching the reference style',
resolution: '720p',
duration: 8,
aspect_ratio: '16:9',
sound: true,
camera_fixed: false,
audio_url: 'https://example.com/reference-audio.mp3',
video_url: 'https://example.com/reference-video.mp4'
})
});
const { data } = await response.json();
const taskId = data.task_id;
// Step 2: Poll for results
const taskId = data.task_id;
const pollResult = async (taskId) => {
const res = await fetch(`https://api.flaq.ai/api/v1/video/${taskId}`, {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
return res.json();
};
while (true) {
const pollResultData = await pollResult(taskId);
const status = pollResultData.data.task_status;
if (status === 'succeed') {
console.log(pollResultData.data.task_result.videos[].);
;
}
(status === ) {
.(pollResultData..);
;
}
( (resolve, ));
}
# Step 1: Submit generation request
import requests
response = requests.post(
'https://api.flaq.ai/api/v1/video/task',
headers={
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
json={
'model_name': 'seedance-v2.0-fast-reference-to-video',
'prompt': 'Cinematic product reveal with smooth motion matching the reference style',
'resolution': '720p',
'duration': 8,
'aspect_ratio': '16:9',
'sound': True,
'camera_fixed': False,
'audio_url': 'https://example.com/reference-audio.mp3',
'video_url': 'https://example.com/reference-video.mp4',
}
)
result = response.json()
task_id = result[][]
# Step 1: Submit generation request
curl -X POST https://api.flaq.ai/api/v1/video/task \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model_name": "seedance-v2.0-fast-reference-to-video",
"prompt": "Cinematic product reveal with smooth motion matching the reference style",
"resolution": "720p",
"duration": 8,
"aspect_ratio": "16:9",
"sound": true,
"camera_fixed": false,
"audio_url": "https://example.com/reference-audio.mp3",
"video_url": "https://example.com/reference-video.mp4"
}'
# Step 2: Poll for results
# Replace {task_id} with the task_id returned from the submit response
curl -X GET "https://api.flaq.ai/api/v1/video/{task_id}" \
-H "Authorization: Bearer YOUR_API_KEY"
# Step 2: Poll for results
task_id = response.json()['data']['task_id']
poll_url = f"https://api.flaq.ai/api/v1/video/{task_id}"
while True:
poll_result = requests.get(poll_url, headers={'Authorization': 'Bearer YOUR_API_KEY'}).json()
status = poll_result['data']['task_status']
if status == 'succeed':
print(poll_result['data']['task_result']['videos'][0]['url'])
break
if status == 'failed':
print(poll_result['data']['task_status_msg'])
break
time.sleep(10)