SVI 2.0 Pro API

Stable Video Infinity 2.0 Pro on WAN 2.2: 일관성있는 문자 ID를 유지하면서 이론적으로 무한 길이 비디오로 이미지를 확장합니다.

VITA-Group / EPFL영상 생성출시 Dec 26, 2025네이티브 추론

About SVI 2.0 Pro

Stable Video Infinity 2.0 Pro on WAN 2.2: 일관성있는 문자 ID를 유지하면서 이론적으로 무한 길이 비디오로 이미지를 확장합니다.

다른 이름 VITA-Group / EPFL SVI 2.0 Pro, SVI-2.0-Pro, svi-2-0-pro

infinite lengthcharacter consistency

SVI 2.0 Pro specs

모델 ID
svi-2-0-pro
제공자
VITA-Group / EPFL
카테고리
영상 생성
Released
Dec 26, 2025
입력
TextImage
출력
Video
엔드포인트
POST /v1/videos/generations

SVI 2.0 Pro API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

유형
사양
요금
480p 비디오
초당
$0.057
720p 비디오
초당
$0.17
T2V 빠른
추가 요금
$0.065
T2V 품질
추가 요금
$0.13
전체 가격 페이지에서 비교

How to call the SVI 2.0 Pro API

SVI 2.0 Pro runs through POST /v1/videos/generations. The request returns a job_id right away; poll GET /v1/jobs/{job_id} until the job completes and read the output URLs from the result. Get an API key from the EmpirioLabs dashboard.

cURL: submit the job
curl https://api.empiriolabs.ai/v1/videos/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "svi-2-0-pro",
    "prompt": "Describe what you want SVI 2.0 Pro to generate."
  }'
cURL: poll for the result
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
import requests

response = requests.post(
    "https://api.empiriolabs.ai/v1/videos/generations",
    headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    json={
        "model": "svi-2-0-pro",
        "prompt": "Describe what you want SVI 2.0 Pro to generate.",
    },
)
job = response.json()

# Generation runs as an async job. Poll until it completes.
import time
while True:
    status = requests.get(
        f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
        headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    ).json()
    if status.get("status") in ("completed", "failed"):
        print(status)
        break
    time.sleep(5)
Full SVI 2.0 Pro API reference

SVI 2.0 Pro API parameters

Request parameters supported by the SVI 2.0 Pro API on EmpirioLabs. Defaults apply when a field is omitted.

파라미터유형기본범위 / 값설명
resolutionenum832x480832x480, 480x832, 720x1280, 1280x720480p is fast; 720p is slower but sharper.
durationnumber1818 to 121.5Estimated clip length in seconds.
cfgnumber11 to 2Prompt adherence strength.
negative_promptstringvibrant tone, overexposed, static, blurry details, subtitles, style, artwork, painting, picture, still, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn face, deformed, disfigured, malformed limbs, fused fingers, still picture, messy background, three legs, background crowd, walking backwards-Text describing what to avoid.
t2v_qualityenumqualityfast, qualityText-to-video pipeline tier. 'quality' uses the Wan 2.2 plus reference image model for higher fidelity; 'fast' uses the flash model for cheaper, quicker generations....

알아두면 좋은 점

일관적인 문자 ID를 가진 이론적으로 무한 길이 영상. Image-to-Video는 일반적으로 text-to-video 에 대한 우수한 결과를 산출합니다. Constraints - Generation은 긴 비디오를위한 45 + 분을 취할 수 있습니다. 최고의 모션: 신속한 이미지 형식의 세그먼트 당 연속 작업을 설명 - jpg, jpeg, png, webp, heic, bmp, tiff, tif Multi-scene 모드 - 하나의 프롬프트에서 여러 장면을 설명 할 때, CFG (1.0-1.3)는 각 자유 장면을 수행 할 때 (-1.5G)을 더 정확하게 변환해야합니다.

SVI 2.0 Pro API: common questions

How much does the SVI 2.0 Pro API cost?

On EmpirioLabs, SVI 2.0 Pro is billed pay as you go: 480p 비디오 $0.057 초당; 720p 비디오 $0.17 초당; T2V 빠른 $0.065 추가 요금. The live rate card on this page always matches what the API charges.

Which endpoint does SVI 2.0 Pro use?

SVI 2.0 Pro is served through POST /v1/videos/generations on api.empiriolabs.ai with standard bearer-token authentication.

Can I try SVI 2.0 Pro in the browser before integrating?

Yes. The EmpirioLabs playground runs SVI 2.0 Pro in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a SVI 2.0 Pro API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.