
AI 텍스트-투-이미지 생성기
주요 AI 이미지 모델, 유연한 설정, 빠른 브라우저 기반 워크플로로 프롬프트에서 세련된 이미지를 만드세요.
Seedance 2.0 Mini는 이미지·동영상·오디오, 선택적 사운드, 유연한 길이를 지원하는 합리적인 ByteDance 참조 동영상 API입니다. 이미지 최대 9장, 동영상 3개, 오디오 3개와 1~12개 참조 대상을 지원하며, 각 동영상·오디오는 2~15초로 설정할 수 있습니다.
const response = await fetch('https://api.flaq.ai/api/v1/video/task', {
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model_name: 'seedance-v2.0-mini-reference-to-video',
prompt:
'Use <<<image_1>>> as the character and visual reference, follow the camera movement in <<<video_1>>>, and synchronize the scene with <<<audio_1>>>.',
images: ['https://example.com/character-reference.jpg'],
videos: ['https://example.com/motion-reference.mp4'],
audios: ['https://example.com/audio-reference.mp3'],
resolution: '720p',
duration: 8,
aspect_ratio: '16:9',
sound: true,
}),
});
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[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={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
json={
'model_name': 'seedance-v2.0-mini-reference-to-video',
'prompt': 'Use <<<image_1>>> as the character and visual reference, follow the camera movement in <<<video_1>>>, and synchronize the scene with <<<audio_1>>>.',
'images': ['https://example.com/character-reference.jpg'],
'videos': ['https://example.com/motion-reference.mp4'],
'audios': ['https://example.com/audio-reference.mp3'],
'resolution': '720p',
'duration': 8,
'aspect_ratio': '16:9',
'sound': True,
},
)
result = response.json()
task_id = 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)
curl -X POST 'https://api.flaq.ai/api/v1/video/task' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model_name": "seedance-v2.0-mini-reference-to-video",
"prompt": "Use <<<image_1>>> as the character and visual reference, follow the camera movement in <<<video_1>>>, and synchronize the scene with <<<audio_1>>>.",
"images": ["https://example.com/character-reference.jpg"],
"videos": ["https://example.com/motion-reference.mp4"],
"audios": ["https://example.com/audio-reference.mp3"],
"resolution": "720p",
"duration": 8,
"aspect_ratio": "16:9",
"sound": true
}'
# 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"
Seedance V2.0 Mini Reference-to-Video는 이미지, 영상, 오디오 참조 자료로 영상을 생성하는 ByteDance의 비용 효율적인 모델입니다. 멀티모달 가이드와 유연한 출력 제어 기능을 결합하여, 표준 Seedance V2.0 모델의 고해상도 출력은 필요하지 않지만 일관된 시각적 방향을 원하는 크리에이터와 개발자에게 적합합니다.
참조 영상을 하나 이상 업로드하면 생성 비용이 한 번만 2배로 적용됩니다. 업로드한 참조 영상의 개수나 길이와 관계없이 배율은 동일합니다.
참고: 모든 요청에는 이미지 또는 영상 참조 자료가 하나 이상 포함되어야 합니다. 업로드하는 각 영상 및 오디오 클립의 길이는 2~15초여야 합니다. 오디오만 사용하는 요청은 지원되지 않습니다.
브라우저에서 빠른 이미지 및 비디오 워크플로를 위한 여러 AI 제작 도구를 살펴본 뒤, 성공한 아이디어를 Flaq AI의 프로덕션 준비 모델 API로 확장하세요. Flaq AI는 모든 모델을 위한 통합 API 레이어를 제공해 워크플로를 쉽게 사용하고 확장할 수 있게 합니다.

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

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

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

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