Img2Videoper second
$0.03
Framepack AI로 이미지에서 더 길고 고품질의 영상을 생성하세요. 를 통해 Framepack API에 접근해 오늘 바로 일관된 비디오 시퀀스를 만들어 보세요!
가격은 생성된 비디오의 초 단위로 계산됩니다.
$0.03
Capabilities from the production model page.
Framepack 비디오 API는 멀티모달 입력을 지원하여 이미지와 텍스트 프롬프트를 고품질 비디오로 변환합니다.
Framepack AI API는 장편 비디오 생성과 유연한 길이 선택을 지원합니다. 30 FPS에서 10~30초 생성이 가능합니다.
Framepack AI는 anti-drifting, anti-forgetting 등 고급 방법으로 학습되어 전체 길이 동안 결과의 일관성과 품질을 유지합니다.
Framepack AI는 I2V 생성에서 다음 프레임 예측을 사용해 비디오를 자기회귀적으로 생성하여 효율과 품질을 확보합니다.
Sign up and grab an API key from the PiAPI workspace — free credits are included on sign-up.
Add credits on the billing page when you are ready to scale beyond the free tier.
POST your first task following the API docs, then poll the task until the result is ready.
Prototype prompts and settings in the the playground above before wiring them into your product.
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "Qubico/framepack",
"task_type": "img2video",
"input": {
"start_image": "YOUR_IMAGE_URL",
"prompt": "The camera slowly zooms in on a calm portrait.",
"duration": 10
}
}'
# → { "task_id": "9d5a…", "status": "pending" }curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'
# poll until status = completed
{
"data": {
"status": "completed",
"output": {
"video_url": "https://img.theapi.app/ephemeral/…"
}
}
}$ npm install -g piapi-cli $ piapi run framepack \ start_image=YOUR_IMAGE_URL \ prompt="The camera slowly zooms in on a calm portrait." \ duration=10 ✓ Task completed! https://img.theapi.app/ephemeral/…
Framepack은 정지 이미지를 비디오로 변환하는 I2V 모델입니다. 장편 비디오 생성을 위해 학습되었습니다. Framepack AI API로 시작하거나 Framepack AI 비디오 생성기 플레이그라운드에서 데모를 체험해 보세요!
가격은 생성 비디오 1초당 $0.03입니다. 요청한 길이에 대해서만 지불하며, 10~30초 사이에서 유연하게 선택할 수 있습니다.
시작 이미지와(선택적으로) 종료 이미지를 URL 또는 base64 문자열로 제공할 수 있습니다. 선명하고 조명이 좋은 이미지를 사용하세요. 얼굴 및 인물 주제는 일반적으로 더 좋은 결과를 제공합니다.
아니요, 환불은 제공하지 않습니다. 다만 PiAPI Workspace에 처음 가입하면 무료 크레딧이 제공되어 결제 전에 플레이그라운드와 API(특히 "Pay-as-you-go" 서비스)를 시험해볼 수 있습니다.
이메일로 문의해 주세요: support@piapi.ai — 제품 제공에 대해 더 이야기 나누고 싶습니다!
More questions? See the API docs.
Framepack API