
ข้อความเป็นรูปภาพ
สร้างรูปภาพ AI จากพรอมต์ข้อความ
การสร้างวิดีโออ้างอิงจาก Kling O3 Std API ที่มีความสอดคล้องสูง ประสิทธิภาพเสถียรและราคาเหมาะสม ทดสอบผลลัพธ์ของโมเดล เปรียบเทียบคุณภาพภาพ แล้วขยายไอเดียที่ดีผ่านเวิร์กโฟลว์ API ภาพ วิดีโอ หรือมัลติโมดัลที่เสถียร.
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: 'kling-video-o3-std-reference-to-video',
prompt: 'Match motion to reference subjects, natural pacing',
video_url: 'https://example.com/source.mp4',
images: ['https://example.com/ref1.jpg', 'https://example.com/ref2.jpg'],
duration: 5
})
});
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]
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: 'kling-video-o3-std-reference-to-video',
prompt: 'Make the athlete from <<<image_1>>> follow the motion in <<<video_1>>> while preserving the uniform details from <<<image_2>>>',
images: [
'https://example.com/athlete-reference.jpg',
'https://example.com/uniform-reference.jpg'
],
videos: ['https://example.com/motion-reference.mp4'],
aspect_ratio: '16:9',
duration: 5,
sound: false
})
});
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));
}
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': 'kling-video-o3-std-reference-to-video',
'prompt': 'Match motion to reference subjects, natural pacing',
'video_url': 'https://example.com/source.mp4',
'images': ['https://example.com/ref1.jpg', 'https://example.com/ref2.jpg'],
'duration': 5
}
)
task_id = response.json()['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]
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': 'kling-video-o3-std-reference-to-video',
'prompt': 'Make the athlete from <<<image_1>>> follow the motion in <<<video_1>>> while preserving the uniform details from <<<image_2>>>',
'images': [
'https://example.com/athlete-reference.jpg',
'https://example.com/uniform-reference.jpg'
],
'videos': ['https://example.com/motion-reference.mp4'],
'aspect_ratio': '16:9',
'duration': 5,
'sound': False
}
)
media_reference_task_id = media_reference_response.json()['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)
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": "kling-video-o3-std-reference-to-video",
"prompt": "Match motion to reference subjects, natural pacing",
"video_url": "https://example.com/source.mp4",
"images": ["https://example.com/ref1.jpg", "https://example.com/ref2.jpg"],
"duration": 5
}'
# 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]
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": "kling-video-o3-std-reference-to-video",
"prompt": "Make the athlete from <<<image_1>>> follow the motion in <<<video_1>>> while preserving the uniform details from <<<image_2>>>",
"images": [
"https://example.com/athlete-reference.jpg",
"https://example.com/uniform-reference.jpg"
],
"videos": ["https://example.com/motion-reference.mp4"],
"aspect_ratio": "16:9",
"duration": 5,
"sound": false
}'
# 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"
| พารามิเตอร์ | ราคา | ราคาเดิม | ส่วนลด |
|---|
Kuaishou Kling Video O3 Standard Reference-to-Video API มอบการสร้างวิดีโอด้วย AI ระดับ production-grade ที่คุ้มค่าสำหรับนักพัฒนาและทีมครีเอทีฟ การผสาน reference-to-video API ที่ขับเคลื่อนด้วย MVL นี้ช่วยสร้างคลิปวิดีโอระดับมืออาชีพที่นำทางด้วย reference videos ในช่วงความยาว 3-15 วินาที พร้อมเอฟเฟกต์เสียงแบบเลือกใช้ได้ สร้างบนสถาปัตยกรรม Multimodal Visual Language (MVL) ของ Kuaishou โมเดล Kling Video O3 Standard ใช้ reference video inputs เพื่อกำกับสไตล์ motion พฤติกรรมกล้อง และพัฒนาการของฉากสำหรับ production workflows แบบ scalable บน Flaq AI
Note โปรดตรวจสอบให้แน่ใจว่า prompts ของคุณเป็นไปตามแนวทางความปลอดภัยด้านคอนเทนต์ของ Kuaishou หากเกิดข้อผิดพลาด ให้ตรวจสอบ prompt ว่ามีเนื้อหาที่ถูกจำกัดหรือไม่ ปรับแก้ แล้วลองอีกครั้ง
Kling Video O3 Standard vs. Kling Video O3 Pro Reference-to-Video Kling Video O3 Pro ให้ความแม่นยำของ motion ที่ดีกว่าและคุณภาพ rendering ระดับพรีเมียมในราคาสูงกว่า Kling Video O3 Standard ให้การสร้างแบบ reference-guided ด้วย MVL-powered ที่แข็งแรงพร้อม cost-efficiency ที่ดีกว่า จึงเหมาะกับเวิร์กโฟลว์ปริมาณสูง
Kling Video O3 Standard vs. Kling Video O3 Standard Image-to-Video Kling Video O3 Standard Image-to-Video ทำให้ภาพนิ่งกลายเป็นคลิปวิดีโอ Kling Video O3 Standard Reference-to-Video ใช้คลิปวิดีโอที่มีอยู่เป็น guide สำหรับ motion และสไตล์ เหมาะกับแอปที่ต้องควบคุมแพตเทิร์น motion และพฤติกรรมกล้องจาก reference footage อย่างแม่นยำ
Kling Video O3 Standard vs. Runway Gen-3 Reference Generation Runway Gen-3 มี creative controls และความยืดหยุ่นเชิงศิลป์ที่แข็งแรง Kling Video O3 Standard Reference-to-Video API แตกต่างด้วยการควบคุมความยาว 3-15 วินาทีที่ยืดหยุ่น เอฟเฟกต์เสียงในตัวแบบเลือกใช้ได้ และ MVL-powered motion reasoning จึงเข้าถึงง่ายสำหรับนักพัฒนาที่คุมงบ
Kling Video O3 Standard vs. Pika Reference-to-Video Pika เด่นด้านแอนิเมชันแบบ stylized และอินเทอร์เฟซใช้งานง่าย Kling Video O3 Standard ให้การเข้าถึง API แบบโปรแกรมได้ ความยาวสูงสุด 15 วินาที เอฟเฟกต์เสียงแบบเลือกใช้ได้ และ cost-efficiency ที่แข็งแรง เหมาะกับนักพัฒนาที่สร้าง reference-guided video pipelines แบบ scalable
Kling Video O3 Standard vs. Vidu Q3 (Vidu) Vidu Q3 เด่นด้าน Smart Cuts, multi-shot storytelling และ sound controls ที่ยืดหยุ่น Kling Video O3 Standard Reference-to-Video API แตกต่างด้วยการสร้างที่นำทางด้วย reference video, การถ่ายโอน motion แบบ MVL-powered และการคิดค่าบริการต่อวินาทีที่เสถียร จึงเป็นตัวเลือกที่แข็งแรงสำหรับแอปที่ต้องควบคุมสไตล์ motion อย่างแม่นยำ
สำรวจเครื่องมือสร้างสรรค์ AI หลายรายการสำหรับเวิร์กโฟลว์รูปภาพและวิดีโอที่รวดเร็วในเบราว์เซอร์ จากนั้นขยายไอเดียที่สำเร็จไปยัง model APIs ของ Flaq AI ที่พร้อมสำหรับการผลิต Flaq AI ให้ชั้น API แบบรวมศูนย์สำหรับทุกโมเดล ทำให้ใช้งานและขยายเวิร์กโฟลว์ได้ง่าย

สร้างรูปภาพ AI จากพรอมต์ข้อความ

สร้างรูปภาพ AI จากรูปภาพและพรอมต์ข้อความ

สร้างวิดีโอ AI จากพรอมต์ข้อความ

ทำให้รูปภาพเคลื่อนไหวเป็นวิดีโอ AI

สร้างรูปภาพและวิดีโอ AI ในพื้นที่ทำงานเดียวที่ครบวงจร

สร้างวิดีโอที่สม่ำเสมอจากสื่ออ้างอิง