
AI 텍스트-투-이미지 생성기
주요 AI 이미지 모델, 유연한 설정, 빠른 브라우저 기반 워크플로로 프롬프트에서 세련된 이미지를 만드세요.
Wan 2.7 참조 미디어 기반 동영상 API를 무료로 체험해 보세요. 최대 5개의 참조 이미지 또는 동영상, 선택적 음성 참조, 1080p 출력 및 시드 제어를 지원합니다.
// 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: 'wan-2.7-reference-to-video',
prompt: 'Use image one for the hero and video one for the motion; keep the hero voice consistent with audio one',
resolution: '1080p',
duration: 8,
aspect_ratio: '16:9',
images: ['https://example.com/hero-reference.jpg'],
videos: ['https://example.com/motion-reference.mp4'],
audios: ['https://example.com/voice-reference.mp3'],
negative_prompt: 'flicker, distorted hands, duplicate subjects',
seed: 42
})
});
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: 'wan-2.7-reference-to-video',
prompt: 'Place the presenter from <<<image_1>>> in the studio from <<<image_2>>>, follow the camera path in <<<video_1>>>, and use the reference voice from <<<audio_1>>>',
resolution: '1080p',
duration: 8,
aspect_ratio: '16:9',
images: [
'https://example.com/presenter-reference.jpg',
'https://example.com/studio-reference.jpg'
],
videos: ['https://example.com/camera-path-reference.mp4'],
audios: ['https://example.com/voice-reference.mp3'],
negative_prompt: 'flicker, distorted hands, duplicate subjects',
seed: 42
})
});
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': 'wan-2.7-reference-to-video',
'prompt': 'Use image one for the hero and video one for the motion; keep the hero voice consistent with audio one',
'resolution': '1080p',
'duration': 8,
'aspect_ratio': '16:9',
'images': ['https://example.com/hero-reference.jpg'],
'videos': ['https://example.com/motion-reference.mp4'],
'audios': ['https://example.com/voice-reference.mp3'],
'negative_prompt': 'flicker, distorted hands, duplicate subjects',
'seed': 42
}
)
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': 'wan-2.7-reference-to-video',
'prompt': 'Place the presenter from <<<image_1>>> in the studio from <<<image_2>>>, follow the camera path in <<<video_1>>>, and use the reference voice from <<<audio_1>>>',
'resolution': '1080p',
'duration': 8,
'aspect_ratio': '16:9',
'images': [
'https://example.com/presenter-reference.jpg',
'https://example.com/studio-reference.jpg'
],
'videos': ['https://example.com/camera-path-reference.mp4'],
'audios': ['https://example.com/voice-reference.mp3'],
'negative_prompt': 'flicker, distorted hands, duplicate subjects',
'seed': 42
}
)
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": "wan-2.7-reference-to-video",
"prompt": "Use image one for the hero and video one for the motion; keep the hero voice consistent with audio one",
"resolution": "1080p",
"duration": 8,
"aspect_ratio": "16:9",
"images": ["https://example.com/hero-reference.jpg"],
"videos": ["https://example.com/motion-reference.mp4"],
"audios": ["https://example.com/voice-reference.mp3"],
"negative_prompt": "flicker, distorted hands, duplicate subjects",
"seed": 42
}'
# 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": "wan-2.7-reference-to-video",
"prompt": "Place the presenter from <<<image_1>>> in the studio from <<<image_2>>>, follow the camera path in <<<video_1>>>, and use the reference voice from <<<audio_1>>>",
"resolution": "1080p",
"duration": 8,
"aspect_ratio": "16:9",
"images": [
"https://example.com/presenter-reference.jpg",
"https://example.com/studio-reference.jpg"
],
"videos": ["https://example.com/camera-path-reference.mp4"],
"audios": ["https://example.com/voice-reference.mp3"],
"negative_prompt": "flicker, distorted hands, duplicate subjects",
"seed": 42
}'
# 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"
| 매개변수 | 가격 | 원래 가격 | 할인 |
|---|
Alibaba Wan 2.7 Reference-to-Video API는 생성된 클립 전반에서 일관된 피사체, 음성, 시각적 연출이 필요한 개발자와 크리에이티브 팀에 프로덕션급 AI 동영상 생성을 제공합니다. 이 고급 Reference-to-Video API 통합은 선택적 음성 가이드와 함께 이미지 및 동영상 참조 자료를 받아 자연어 지시를 완성도 높은 720p 또는 1080p 동영상으로 변환합니다. 제어 가능한 크리에이티브 제작을 위해 설계된 Wan 2.7은 멀티모달 참조 자료 이해, 유연한 출력 설정, Flaq AI의 확장 가능한 API 액세스를 결합합니다.
참고 프롬프트와 참조 미디어가 Alibaba의 안전 가이드라인을 준수하는지 확인하세요. 오류가 발생하면 입력에 제한된 콘텐츠가 있는지 검토하고 조정한 후 다시 시도하세요.
Wan 2.7 Reference-to-Video와 Wan 2.7 Image-to-Video 비교 Wan 2.7 Image-to-Video는 시작 이미지를 애니메이션으로 만듭니다. Wan 2.7 Reference-to-Video는 이미지와 동영상 참조 자료 혼합, 다중 피사체 가이드, 선택적 음성 참조를 지원하여 정체성 중심 제작을 더욱 세밀하게 제어합니다.
Wan 2.7 Reference-to-Video와 Seedance V2.0 Reference-to-Video 비교 Seedance V2.0은 이미지, 동영상, 오디오 입력 전반에서 폭넓은 멀티모달 참조 생성을 제공합니다. Wan 2.7은 구조화된 피사체 참조, 선택적 음성 정체성 가이드, 네거티브 프롬프트, Alibaba의 고해상도 동영상 생성에 중점을 둡니다.
Wan 2.7 Reference-to-Video와 Vidu Q3 Reference-to-Video 비교 Vidu Q3는 다중 이미지 피사체 일관성과 네이티브 동기화 오디오에 중점을 둡니다. Wan 2.7은 이미지와 동영상 참조 자료 혼합을 지원하고 선택적인 피사체별 음성 가이드를 추가하여 유연한 멀티모달 워크플로를 제공합니다.
Wan 2.7 Reference-to-Video와 Kling Video O3 Reference-to-Video 비교 Kling Video O3는 강력한 움직임 추론을 갖춘 참조 기반 생성을 제공합니다. Wan 2.7은 혼합 참조 미디어, 피사체 음성 가이드, 시드 제어, 네거티브 프롬프트를 통해 제어 가능한 제작 파이프라인을 구현합니다.
Wan 2.7 Reference-to-Video와 Runway 동영상 도구 비교 Runway는 크리에이터를 위한 폭넓은 편집 및 생성 제품군을 제공합니다. Wan 2.7 Reference-to-Video API는 프로그래밍 방식의 멀티모달 참조 워크플로, 일관된 피사체 재사용, 확장 가능한 애플리케이션 통합을 위해 설계되었습니다.
브라우저에서 빠른 이미지 및 비디오 워크플로를 위한 여러 AI 제작 도구를 살펴본 뒤, 성공한 아이디어를 Flaq AI의 프로덕션 준비 모델 API로 확장하세요. Flaq AI는 모든 모델을 위한 통합 API 레이어를 제공해 워크플로를 쉽게 사용하고 확장할 수 있게 합니다.

주요 AI 이미지 모델, 유연한 설정, 빠른 브라우저 기반 워크플로로 프롬프트에서 세련된 이미지를 만드세요.

참조 이미지를 업로드하고 프롬프트로 편집을 안내해 디자인, 마케팅, 창작 프로덕션을 위한 비주얼로 변환하세요.

작성한 장면 아이디어를 모델 선택, 모션 프롬프트, 실용적인 생성 제어로 짧은 AI 비디오로 전환하세요.

제품, 인물, 소셜 게시물, 창작 콘셉트를 위한 부드러운 AI 비디오 클립으로 참조 이미지를 애니메이션화하세요.