ComfyUIのマルチキーフレーム動画スティッチングワークフローは、静止画像の連続を滑らかな動画シーケンスに変換します。6つのキーフレームを利用し、間の遷移フレームを自動生成してシームレスな動画を作成。コアとなるWan2.2モデルが画像間の動きを解釈し、滑らかな遷移を実現します。LoadImageとImageBatchノードでキーフレームを準備し、中間ノード(11ac0cb0-38fb-41d4-9a55-7c44422b2516や1c5f4533-5d1e-4449-97ca-9027b9ea9c11)が補間処理を担当。最後にCreateVideoとSaveVideoノードでフレームを動画ファイルにまとめます。
このワークフローは、静止画像からアニメーションや動画コンテンツを手間なく作りたいクリエイターに最適。補間処理を自動化することで作業時間を短縮し、フレーム間の動きの一貫性も確保。高度なノードとWan2.2モデルの活用で、元画像の質感を保ちつつ自然な動きの高品質動画を出力します。
API
Use this workflow from code
Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.
Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
// Install (beta)
npm i @comfyorg/sdk
// Run "連続始終フレーム動画結合" (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("templates-6-key-frames_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("62", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("146")[0].toFile("output.png"); // SaveVideoThe SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).
Comfy Cloud API access requires a plan with an API key.
FAQ














