
เครื่องมือสร้างข้อความเป็นรูปภาพ AI
สร้างรูปภาพที่ประณีตจากพรอมต์ด้วยโมเดลภาพ AI ชั้นนำ การตั้งค่าที่ยืดหยุ่น และเวิร์กโฟลว์บนเบราว์เซอร์ที่รวดเร็ว
สร้างวิดีโอแบบมีแนวทางผ่าน Seedance 2.0 Reference-to-Video API พร้อมการรองรับการสร้างคนสมจริง การควบคุมด้วยภาพอ้างอิง เสียงในตัว และเอาต์พุต ByteDance ที่เสถียร. ทดสอบผลลัพธ์ของโมเดล เปรียบเทียบคุณภาพภาพ แล้วขยายไอเดียที่ดีผ่านเวิร์กโฟลว์ API ภาพ วิดีโอ หรือมัลติโมดัลที่เสถียร.
// 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-reference-to-video',
prompt: 'Use image one for the subject, video one for the movement, and audio one for the atmosphere',
resolution: '1080p',
duration: 8,
aspect_ratio: '16:9',
sound: true,
images: ['https://example.com/subject-reference.jpg'],
videos: ['https://example.com/motion-reference.mp4'],
audios: ['https://example.com/atmosphere-reference.mp3']
})
});
const { data } = await response.json();
const taskId = data.task_id;
// Use the @ (AT) reference feature in prompt through <<<...>>> placeholders.
// Placeholder numbering is 1-based for each media array:
// <<<image_1>>> = images[0], <<<image_2>>> = images[1]
// <<<video_1>>> = videos[0], <<<audio_1>>> = audios[0]
const mediaReferenceResponse = 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-reference-to-video',
prompt: 'Place the explorer from <<<image_1>>> in the environment from <<<image_2>>>, following the camera movement in <<<video_1>>> and speaking with the reference voice from <<<audio_1>>>',
resolution: '1080p',
duration: 10,
aspect_ratio: '16:9',
sound: true,
images: [
'https://example.com/explorer-reference.jpg',
'https://example.com/environment-reference.jpg'
],
videos: ['https://example.com/camera-movement-reference.mp4'],
audios: ['https://example.com/voice-reference.mp3']
})
});
const { data: mediaReferenceData } = await mediaReferenceResponse.json();
const mediaReferenceTaskId = mediaReferenceData.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[0].url);
break;
}
if (status === 'failed') {
console.error(pollResultData.data.task_status_msg);
break;
}
await new Promise(resolve => setTimeout(resolve, 10000));
}
# 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-reference-to-video',
'prompt': 'Use image one for the subject, video one for the movement, and audio one for the atmosphere',
'resolution': '1080p',
'duration': 8,
'aspect_ratio': '16:9',
'sound': True,
'images': ['https://example.com/subject-reference.jpg'],
'videos': ['https://example.com/motion-reference.mp4'],
'audios': ['https://example.com/atmosphere-reference.mp3']
}
)
result = response.json()
task_id = result['data']['task_id']
# Use the @ (AT) reference feature in prompt through <<<...>>> placeholders.
# Placeholder numbering is 1-based for each media array:
# <<<image_1>>> = images[0], <<<image_2>>> = images[1]
# <<<video_1>>> = videos[0], <<<audio_1>>> = audios[0]
media_reference_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-reference-to-video',
'prompt': 'Place the explorer from <<<image_1>>> in the environment from <<<image_2>>>, following the camera movement in <<<video_1>>> and speaking with the reference voice from <<<audio_1>>>',
'resolution': '1080p',
'duration': 10,
'aspect_ratio': '16:9',
'sound': True,
'images': [
'https://example.com/explorer-reference.jpg',
'https://example.com/environment-reference.jpg'
],
'videos': ['https://example.com/camera-movement-reference.mp4'],
'audios': ['https://example.com/voice-reference.mp3']
}
)
media_reference_result = media_reference_response.json()
media_reference_task_id = media_reference_result['data']['task_id']
# 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)
# 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-reference-to-video",
"prompt": "Use image one for the subject, video one for the movement, and audio one for the atmosphere",
"resolution": "1080p",
"duration": 8,
"aspect_ratio": "16:9",
"sound": true,
"images": ["https://example.com/subject-reference.jpg"],
"videos": ["https://example.com/motion-reference.mp4"],
"audios": ["https://example.com/atmosphere-reference.mp3"]
}'
# Use the @ (AT) reference feature in prompt through <<<...>>> placeholders.
# Placeholder numbering is 1-based for each media array:
# <<<image_1>>> = images[0], <<<image_2>>> = images[1]
# <<<video_1>>> = videos[0], <<<audio_1>>> = audios[0]
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-reference-to-video",
"prompt": "Place the explorer from <<<image_1>>> in the environment from <<<image_2>>>, following the camera movement in <<<video_1>>> and speaking with the reference voice from <<<audio_1>>>",
"resolution": "1080p",
"duration": 10,
"aspect_ratio": "16:9",
"sound": true,
"images": [
"https://example.com/explorer-reference.jpg",
"https://example.com/environment-reference.jpg"
],
"videos": ["https://example.com/camera-movement-reference.mp4"],
"audios": ["https://example.com/voice-reference.mp3"]
}'
# 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"
| พารามิเตอร์ | ราคา | ราคาเดิม | ส่วนลด |
|---|
API ByteDance Seedance V2.0 Reference-to-Video มอบการสร้างวิดีโอโดยใช้สื่ออ้างอิงสำหรับนักพัฒนาและทีม สร้างสรรค์บน Flaq AI การผสานรวม API ปัจจุบันรองรับพรอมต์ข้อความพร้อมรูปภาพหรือวิดีโออ้างอิงอย่างน้อยหนึ่งรายการ รวมถึง รูปภาพ วิดีโอ และเสียงอ้างอิงเพิ่มเติมที่ไม่บังคับ รองรับระยะเวลาที่กำหนดค่าได้ อัตราส่วนภาพหลายแบบ ระดับความละเอียดหลายระดับ และการตั้งค่าเสียงที่สร้างขึ้นซึ่งเลือกใช้ได้สำหรับเวิร์กโฟลว์วิดีโอที่ควบคุมได้
หมายเหตุ ต้องมีรูปภาพหรือวิดีโออ้างอิงอย่างน้อยหนึ่งรายการ ไม่สามารถใช้เสียงเพียงอย่างเดียวเป็นอินพุตอ้างอิงเพียงรายการเดียวได้ โปรดตรวจสอบให้แน่ใจว่าพรอมต์และสื่ออ้างอิงของคุณเป็นไปตามหลักเกณฑ์ความปลอดภัยของเนื้อหา ByteDance
Seedance V2.0 Reference-to-Video เทียบกับ Seedance V2.0 Text-to-Video Seedance V2.0 Text-to-Video ทำงานจากพรอมต์ ข้อความ ส่วน Reference-to-Video เพิ่มอินพุตรูปภาพ วิดีโอ และเสียงที่ไม่บังคับซึ่งรองรับ พร้อมการกล่าวถึงสื่อในพรอมต์
Seedance V2.0 Reference-to-Video เทียบกับ Seedance V2.0 Fast Reference-to-Video ทั้งสองรุ่นมี ประเภทสื่ออ้างอิงและการควบคุมหลักเหมือนกันบน Flaq AI รุ่นมาตรฐานเพิ่มตัวเลือกความละเอียด 1080p และ 4K ส่วน รุ่น Fast มุ่งเน้นเวิร์กโฟลว์ 480p และ 720p
Seedance V2.0 Reference-to-Video เทียบกับ Wan 2.7 Reference-to-Video API ทั้งสองรองรับรูปภาพและวิดีโออ้างอิง โดย Wan 2.7 มีการควบคุมพรอมต์เชิงลบและ seed เพิ่มเติม ขณะที่ Seedance V2.0 รองรับเสียงอ้างอิงที่ไม่บังคับ หลายรายการและปุ่มเปิดปิดเสียงที่สร้างขึ้น
Seedance V2.0 Reference-to-Video เทียบกับ Vidu Q3 Reference-to-Video Vidu Q3 Reference-to-Video ใช้รูปภาพอ้างอิง ในการกำหนดค่า Flaq AI ปัจจุบัน ส่วน Seedance V2.0 ยังรองรับวิดีโออ้างอิงและเสียงอ้างอิงที่ไม่บังคับ
Seedance V2.0 Reference-to-Video เทียบกับ Runway Video Tools Runway มีชุดเครื่องมือสร้างสรรค์แบบโต้ตอบที่ครอบคลุมกว่า Seedance V2.0 Reference-to-Video มอบเวิร์กโฟลว์ API ที่มุ่งเน้นพรอมต์ การอัปโหลดสื่ออ้างอิงที่รองรับ การตั้งค่าเอาต์พุต และเสียงที่สร้างขึ้น
สำรวจเครื่องมือสร้างสรรค์ AI หลายรายการสำหรับเวิร์กโฟลว์รูปภาพและวิดีโอที่รวดเร็วในเบราว์เซอร์ จากนั้นขยายไอเดียที่สำเร็จไปยัง model APIs ของ Flaq AI ที่พร้อมสำหรับการผลิต Flaq AI ให้ชั้น API แบบรวมศูนย์สำหรับทุกโมเดล ทำให้ใช้งานและขยายเวิร์กโฟลว์ได้ง่าย

สร้างรูปภาพที่ประณีตจากพรอมต์ด้วยโมเดลภาพ AI ชั้นนำ การตั้งค่าที่ยืดหยุ่น และเวิร์กโฟลว์บนเบราว์เซอร์ที่รวดเร็ว

อัปโหลดรูปภาพอ้างอิง นำทางการแก้ไขด้วยพรอมต์ และแปลงภาพสำหรับงานออกแบบ การตลาด และการผลิตงานสร้างสรรค์

เปลี่ยนไอเดียฉากที่เขียนไว้ให้เป็นวิดีโอ AI สั้นๆ ด้วยการเลือกโมเดล พรอมต์การเคลื่อนไหว และการควบคุมการสร้างที่ใช้งานได้จริง

ทำให้รูปภาพอ้างอิงกลายเป็นคลิปวิดีโอ AI ที่ลื่นไหลสำหรับสินค้า ภาพบุคคล โพสต์โซเชียล และคอนเซ็ปต์สร้างสรรค์
MiniMax H3 API มอบชุดความสามารถที่เป็นประโยชน์ให้กับทีมวิดีโอ ได้แก่ การสร้างวิดีโอจากภาพ ตัวเลือกเอาต์พุต 768p และ 2K คลิปความยาวสูงสุด 15 วินาที และต้นทุนที่ระบุไว้ต่ำกว่าการตั้งค่า Seedance 2.0 ที่เทียบเคียงได้หลายรายการ MiniMax ยังได้เผยแพร่น้ำหนักของ H3-Base บน Hugging Face ซึ่งสร้างทางเลือกใหม่สำหรับงานวิจัย ไปป์ไลน์แบบกำหนดเอง และการทดลองแบบโฮสต์เองในกรณีที่ใบอนุญาตของมันอนุญาต
เปรียบเทียบ Higgsfield MCP และ CLI กับ REST endpoints ของ Seedance 2.0 จาก Flaq AI ในด้านราคา การโพลสถานะงาน ตัวแปรโมเดล การทดสอบ และกรณีใช้งานจริงในเชิงโปรดักชัน
เปรียบเทียบ WaveSpeed และ Flaq AI สำหรับเวิร์กโฟลว์ Seedance 2.0 API ในด้านโฟลว์การทำงาน, การเลือกเอ็นด์พอยต์, การทดสอบพรอมป์ต์, ความหน่วง, ต้นทุน, การกำหนดเส้นทางสำรอง (fallback routing) และการสร้างวิดีโอแบบขยายสเกลได้
สำรวจแนวโน้มการเปิดตัว Seedance 2.5 การอัปเกรด API ที่มีแนวโน้มจะเกิดขึ้น ประเด็นเปรียบเทียบกับ Seedance 2.0 การทดสอบพรอมป์ต์ และการวางแผนเวิร์กโฟลว์ Flaq AI สำหรับผู้สร้างวิดีโอ
คู่มือเชิงปฏิบัติสำหรับการใช้ Seedance 2.0 API บน Flaq AI พร้อมฟีเจอร์ เคล็ดลับเวิร์กโฟลว์ ข้อมูลด้านราคา และไอเดียสำหรับการสร้างวิดีโอจากข้อความให้เร็วขึ้น