
Kling O3: 텍스트-투-비디오 워크플로우는 텍스트, 오디오, 이미지를 통합해 일관성 있는 15초 비디오로 변환합니다. 이 워크플로우는 캐릭터 일관성 유지와 오디오 동기화에 강점을 가진 Kling O3 모델을 활용합니다. 핵심 노드인 KlingOmniProTextToVideoNode가 입력 데이터를 처리해 스토리보드에 맞는 비디오를 생성하며, SaveVideo 노드가 최종 결과물을 고품질로 렌더링해 저장합니다.
이 워크플로우는 짧고 임팩트 있는 영상을 빠르게 제작해야 하는 크리에이터에게 특히 유용합니다. 다양한 미디어 타입 입력을 지원해 스토리텔링 방식에 유연성을 제공합니다. Kling O3 모델은 캐릭터 일관성 유지에 뛰어나 애니메이션 시리즈, 브랜드 콘텐츠 등 연속성이 중요한 프로젝트에 적합합니다. 오디오 동기화 기능으로 내레이션이나 대사가 시각 요소와 완벽하게 맞아떨어져 시청 경험을 향상시킵니다.
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 "Kling O3: 텍스트 기반 비디오 생성" (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("api_king_o3_t2v_api.json");
const job = await client.run(wf);
await job.getOutputs("14")[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














