この上級ComfyUIワークフローは、キャラクターと商品をフィーチャーしたマルチショットのユーザー生成コンテンツ(UGC)動画を作成するためのものです。Kling 3.0とNano Banana 2モデルの力を活用し、両要素をシームレスに統合したストーリー性のある動画を作成できます。ワークフローは「LoadImage」ノードでキャラクター画像と商品画像をアップロードし、「GeminiNanoBanana2」ノードで意味的編集を行い、両画像を効果的にブレンドします。その後、「BatchImagesNode」と「KlingOmniProImageToVideoNode」でストーリーボードショットを生成し、「SaveVideo」ノードで動画としてまとめます。
このワークフローの特長は、マーケティングやストーリーテリングに使える魅力的なUGC動画を作れる点です。ショット数を選び、それぞれにプロンプトを書くことで、クリエイティブなビジョンに合わせて動画をカスタマイズできます。Kling 3.0モデルは高品質な動画出力を保証し、Nano Banana 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 this workflow (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
const wf = await client.workflows.fromFile("workflow_api.json");
const job = await client.run(wf);
await job.getOutputs("<output-node-id>")[0].toFile("output.png");The 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














