
The Seedance1.0 Pro: Text to Video workflow leverages the advanced capabilities of ByteDance's Seedance model to transform text prompts into high-quality videos. This workflow is designed to support multiple resolutions and aspect ratios, ensuring that the generated videos maintain natural motion and cinematic quality. At the core of this process is the ByteDanceTextToVideoNode, which interprets the text prompts and orchestrates the video generation process. The SaveVideo node then captures and stores the output, making it easily accessible for further use. This workflow is particularly useful for creators looking to produce engaging video content quickly and efficiently without the need for extensive video editing skills.
API
Usa este flujo de trabajo desde código
Cada flujo de trabajo de Comfy es un grafo JSON. El siguiente payload es este flujo de trabajo, exactamente como lo ejecuta ComfyUI: descárgalo desde la URL, guárdalo en control de versiones o cárgalo en ComfyUI y ejecútalo nodo por nodo.
Ejecuta desde TypeScript o Python con el Comfy SDK. El mismo código funciona en Comfy Cloud o en un ComfyUI propio: solo cambia la URL base.
// Install (beta)
npm i @comfyorg/sdk
// Run "Seedance1.0 Pro: texto a vídeo" (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_bytedance_text_to_video_api.json");
const job = await client.run(wf);
await job.getOutputs("7")[0].toFile("output.png"); // SaveVideoEl SDK utiliza un flujo de trabajo en formato API: abre este flujo de trabajo en ComfyUI y usa Archivo → Exportar flujo de trabajo (API).
El acceso a la API de Comfy Cloud requiere un plan con clave API.
Preguntas frecuentes













