Seedance 2.0 画像から動画生成

Seedance 2.0 画像から動画生成は、1枚の静止画像から短く自然な動画を作成します。ワークフローは極めてシンプルで、LoadImageで元画像を読み込み、ByteDance2FirstLastFrameNode(Seedance 2.0搭載)が動きを合成しフレーム列を生成、SaveVideoで再生可能な動画としてエンコードします。静止画から4~15秒の動きを素早く作りたい場合に最適で、追加のコンディショニングや複雑な制御ノードは不要です。

技術的には、ByteDance2FirstLastFrameNodeがSeedance 2.0を使い、最初と最後のフレームを一貫させた動きのアークを推定し、中間フレームを補間して被写体の構造やスタイルを維持します。クリップ長(秒またはフレーム数)、フレームレート、動きの強さ、(バージョンによっては)シード値などの主要パラメータを調整可能です。ノードはフレーム列を出力し、SaveVideoが指定fpsで動画にまとめます。最良の結果を得るには、被写体が中央にあり明るくクリアな画像を使い、動きの強さは中程度、長さは6~10秒程度を推奨します。

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.

baa06a413558.json
Fetching workflow JSON…

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

よくある質問

すべてのワークフローを見る
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates