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秒の生成が可能です。
anti-drifting / anti-forgetting などの手法で学習され、動画全体で一貫性と品質を維持します。
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