AI on the Lot 2026 - Final WF - t2vは、プロンプト設計・画像合成・ビデオ組み立てをComfyUI内で一貫して行うテキストからビデオのパイプラインです。AILab_QwenVLとAILab_QwenVL_PromptEnhancerでシンプルなアイデアを豊かな構造化プロンプトに変換。画像合成ステージ(ノードID e9d2dda8-2509-4d8d-9702-a9bf00c26650)で高品質なキーフレームを生成し、PreviewAnyで結果をプレビュー、ビデオステージ(ノードID 99c27236-513e-427c-9ed4-49406365f0d3)で一貫したビデオクリップにまとめます。SaveImageとSaveVideoで各段階の出力を保存可能。
基本フローは、ベースのテキストプロンプト(+任意で参照画像)をAILab_QwenVLに入力し、シーン詳細を抽出・強化。AILab_QwenVL_PromptEnhancerがモデル向けに被写体・スタイル・ショット記述を明確化したプロンプトに変換。これを画像生成ノード(e9d2dda8-…)に渡してシード制御付きキーフレームを生成。フレームはビデオノード(99c27236-…)に渡され、長さや動き・一貫性設定に基づきクリップを合成。PreviewAnyで素早く確認し、SaveImage/SaveVideoで静止画や最終ビデオを保存。各ステージはモジュール化されているため、テキストから画像のみ、画像からビデオのみ、またはエンドツーエンドのテキストからビデオまで柔軟に利用できます。
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














