PixVerse: Text to Video

The PixVerse: Text to Video workflow is designed to transform textual prompts into dynamic and visually captivating videos. This workflow leverages the PixVerse model, which excels in interpreting text inputs to generate corresponding video content. At the core of this workflow is the PixverseTextToVideoNode, which processes the text input to create video sequences that accurately reflect the given prompts. The SaveVideo node then ensures that the generated video is stored efficiently, while the MarkdownNote node can be used to annotate or document the process within the workflow for reference or instructional purposes. Additionally, the PixverseTemplateNode can be employed to apply pre-defined templates, enhancing the video output with consistent styles or effects.

This workflow is particularly useful for creators who need to generate video content quickly and efficiently from textual descriptions. Its ability to interpret prompts with high accuracy makes it an excellent tool for producing promotional videos, educational content, or creative storytelling. The integration of API nodes allows for seamless connectivity and automation in secure environments, making it a versatile choice for both individual users and web-based services.

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.

api_pixverse_t2v.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 "PixVerse: Text to Video" (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_pixverse_t2v_api.json");

const job = await client.run(wf);
await job.getOutputs("6")[0].toFile("output.png"); // SaveVideo

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

Frequently Asked Questions

View all workflows
Showing 30 of 30 templates