Dreamina Seedance 2.0 vs Dreamina Seedance 2.0 Fast
언제 어떤 모델을 사용할까 — 벤치마크 표가 아닌 선별된 평가
같은 계열, 같은 4~15초·24 fps·네이티브 오디오·여섯 가지 화면비. fast 단은 100만 비디오 토큰당 $5.6으로 $7보다 20% 싸고 해상도가 480p/720p에서 멈추는 반면, 기본 모델은 480p부터 4K까지 아우르며 4K에서 10비트로 출력합니다. 기본 모델은 첫/마지막 프레임 외에 첫 프레임 이미지-투-비디오도 받습니다. 초안과 소셜 포맷에는 fast 단을, 화면이 720p를 넘어야 하면 기본 모델을 고르세요.
가격
| Dreamina Seedance 2.0 | Dreamina Seedance 2.0 Fast | Δ | |
|---|---|---|---|
| 1M 비디오 토큰당 | $7 | $5.6 | 1.3× |
빌드 시점의 라이브 카탈로그 요금입니다. 각 모델 페이지에 현재 요금표가 표시됩니다.
현재 위치 — 이 청구 단위를 사용하는 모든 5개의 비디오 생성 모델 전체의 1M 비디오 토큰당 가격 (로그 스케일)
기능
| Dreamina Seedance 2.0 | Dreamina Seedance 2.0 Fast | |
|---|---|---|
| 네이티브 오디오 | 예 | 예 |
사양
| Dreamina Seedance 2.0 | Dreamina Seedance 2.0 Fast | |
|---|---|---|
| 입력 모달리티 | 텍스트 이미지 | 텍스트 이미지 |
| 출력 모달리티 | 비디오 | 비디오 |
| 출시일 | 2026-01 | 2026-01 |
| 해상도 | 480p – 4K (10-bit at 4K) (범위) | 480p / 720p (고정 세트) |
| 클립 길이 | 4–15 s (범위) | 4–15 s (범위) |
| 프레임 속도 | 24 fps | 24 fps |
| 화면비 | 6 (incl. 16:9, 9:16, 1:1) | 6 (incl. 16:9, 9:16, 1:1) |
| 입력 모드 |
|
|
| 포맷 | .mp4 | .mp4 |
사양은 각 공급업체의 문서를 그대로 기록한 것입니다. 공급업체가 공개하지 않은 항목은 추론하지 않고 제외했습니다. 전체 출처: Dreamina Seedance 2.0 · Dreamina Seedance 2.0 Fast
하나의 프롬프트, 두 모델 — 게이트웨이를 통해 측정됨
모델 반환값 1280×720 길이 5s 지연 시간 133 s
모델 반환값 1280×720 길이 5s 지연 시간 137 s
단일 프롬프트, 모델당 단일 요청, 재시도 및 체리피킹 없음 — 각 모델이 반환한 첫 번째 결과입니다. 크기나 길이는 고정되지 않았습니다: 모든 모델에 맞춘 요청은 어떤 모델의 장점도 살리지 못하므로, 각 모델은 자체 기본값을 사용했습니다. 여기에 있는 파일은 웹용으로 재인코딩되었으므로 압축이 아닌 구도와 프롬프트 준수 여부를 기준으로 판단하십시오.
코드 한 줄로 모델 전환
두 id는 아래의 모든 탭에 있습니다 — 강조 표시된 두 줄이 유일한 수정 사항입니다. 동일한 엔드포인트, 동일한 키, 동일한 요청 형태입니다.
import time
import requests
BASE = "https://synthorai.io/v1"
HEADERS = {"Authorization": "Bearer sk-syn-..."}
# 1) create the video generation job (POST /v1/videos)
task = requests.post(
f"{BASE}/videos",
headers=HEADERS,
json={
"model": "dreamina-seedance-2-0-260128",
# "model": "dreamina-seedance-2-0-fast-260128", # 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
"prompt": "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
"resolution": "720p",
"duration": 5,
},
).json()
# 2) poll the job until it reaches a terminal state
while task["status"] in ("queued", "in_progress"):
time.sleep(5)
task = requests.get(f"{BASE}/videos/{task['id']}", headers=HEADERS).json()
# 3) completed → signed video URL (valid ~24h — download and store it promptly)
if task["status"] == "completed":
print(task["data"][0]["url"])
else:
print(task["error"])const HEADERS = {
Authorization: "Bearer sk-syn-...",
"Content-Type": "application/json",
};
interface VideoTask {
id: string;
status: "queued" | "in_progress" | "completed" | "failed" | "cancelled";
data?: Array<{ url: string }>;
error?: { code: string; message: string };
}
// 1) create the video generation job (POST /v1/videos)
const created = await fetch("https://synthorai.io/v1/videos", {
method: "POST",
headers: HEADERS,
body: JSON.stringify({
model: "dreamina-seedance-2-0-260128",
// model: "dreamina-seedance-2-0-fast-260128", // 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
prompt: "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
resolution: "720p",
duration: 5,
}),
});
let task = (await created.json()) as VideoTask;
// 2) poll the job until it reaches a terminal state
while (task.status === "queued" || task.status === "in_progress") {
await new Promise((r) => setTimeout(r, 5000));
const res = await fetch(`https://synthorai.io/v1/videos/${task.id}`, { headers: HEADERS });
task = (await res.json()) as VideoTask;
}
// 3) completed → signed video URL (valid ~24h — download and store it promptly)
if (task.status === "completed") console.log(task.data?.[0]?.url);
else console.error(task.error);# Create the job; "Prefer: wait" holds the request up to 60s and returns the
# completed task when generation finishes in time (else the queued task).
curl https://synthorai.io/v1/videos \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-H "Prefer: wait=60" \
-d '{
"model": "dreamina-seedance-2-0-260128",
# "model": "dreamina-seedance-2-0-fast-260128", # 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
"prompt": "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
"resolution": "720p",
"duration": 5
}'
# Still queued / in_progress? Poll until completed → data[0].url (valid ~24h).
curl https://synthorai.io/v1/videos/vid_9f2e8c1a4b7d \
-H "Authorization: Bearer sk-syn-..."package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"time"
)
const base = "https://synthorai.io/v1"
type videoTask struct {
ID string `json:"id"`
Status string `json:"status"`
Data []struct {
URL string `json:"url"`
} `json:"data"`
}
func call(method, url string, body []byte) (t videoTask) {
req, _ := http.NewRequest(method, url, bytes.NewReader(body))
req.Header.Set("Authorization", "Bearer sk-syn-...")
req.Header.Set("Content-Type", "application/json")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
json.NewDecoder(resp.Body).Decode(&t)
return t
}
func main() {
// 1) create the video generation job (POST /v1/videos)
payload, _ := json.Marshal(map[string]any{
"model": "dreamina-seedance-2-0-260128",
// "model": "dreamina-seedance-2-0-fast-260128", // 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
"prompt": "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
"resolution": "720p",
"duration": 5,
})
task := call("POST", base+"/videos", payload)
// 2) poll the job until it reaches a terminal state
for task.Status == "queued" || task.Status == "in_progress" {
time.Sleep(5 * time.Second)
task = call("GET", base+"/videos/"+task.ID, nil)
}
// 3) completed → signed video URL (valid ~24h — download and store promptly)
if task.Status == "completed" {
fmt.Println(task.Data[0].URL)
}
}import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
// JDK built-in HttpClient — no extra dependency needed.
HttpClient http = HttpClient.newHttpClient();
// 1) create the job; "Prefer: wait=60" holds the request up to 60s and
// returns the completed task when generation finishes in time
HttpRequest create = HttpRequest.newBuilder(URI.create("https://synthorai.io/v1/videos"))
.header("Authorization", "Bearer sk-syn-...")
.header("Content-Type", "application/json")
.header("Prefer", "wait=60")
.POST(HttpRequest.BodyPublishers.ofString("""
{"model": "dreamina-seedance-2-0-260128",
// {"model": "dreamina-seedance-2-0-fast-260128", // 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
"prompt": "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
"resolution": "720p", "duration": 5}"""))
.build();
String task = http.send(create, HttpResponse.BodyHandlers.ofString()).body();
System.out.println(task); // {"id":"vid_…","status":…} — completed → data[0].url
// 2) still queued / in_progress? Poll GET https://synthorai.io/v1/videos/{id} until the
// status turns completed, then download data[0].url (valid ~24h).FAQ
Dreamina Seedance 2.0와(과) Dreamina Seedance 2.0 Fast 중 어느 것이 더 저렴한가요?
1m 비디오 토큰당 항목에서는 Dreamina Seedance 2.0 Fast이(가) 더 저렴합니다($5.6 대 $7, 1.3× 차이). 다른 항목에서는 결과가 다를 수 있습니다 — 위의 표에 전체 정보가 있으며, 실제 비용은 사용 조합에 따라 달라집니다.
두 번의 연동 과정 없이 Dreamina Seedance 2.0와(과) Dreamina Seedance 2.0 Fast를 A/B 테스트할 수 있나요?
네. 둘 다 하나의 API 키를 사용하여 동일한 OpenAI 호환 엔드포인트를 통해 제공됩니다 — 모델 문자열을 한 줄만 변경하면 전환되므로, 트래픽의 일부를 각각 라우팅하여 요금을 직접 비교할 수 있습니다.
어떤 클립 길이와 해상도를 지원하나요?
위의 사양 표는 각 모델이 발표한 해상도와 클립 길이를 나열하며, 해당 값이 고정된 옵션 세트인지 연속적인 범위인지 표시합니다 — 초당 과금은 길이와 곱해지기 때문에, 두 가지는 비슷해 보여도 다르게 가격이 책정됩니다.