This ComfyUI workflow is designed to transform a static logo into a dynamic, textured video asset, perfect for enhancing brand presence. By leveraging a series of specialized nodes and models, this workflow allows users to upload their logo alongside desired textures and elements, and then seamlessly integrates these into a cohesive video output. The process begins with the 'LoadImage' node, which imports the logo, texture, and additional elements into the workflow. Next, the 'GeminiImage2Node' processes these images, applying the specified textures and elements to the logo. This node utilizes the Gemini3 Pro Image Preview model, ensuring high-quality image manipulation.

Once the images are prepared, the 'ByteDanceImageToVideoNode' converts the textured logo into a video format, using advanced techniques from the ByteDance model to ensure smooth transitions and professional quality. Finally, the 'SaveVideo' node outputs the finished video, ready for use in branding and marketing materials. Additionally, the 'SaveImage' node can be used to capture stills from the video if needed. This workflow is particularly useful for brand designers looking to create engaging visual content without extensive video editing skills.

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.

templates-textured_logo_elements.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 "Добавить текстуру и элементы к logo" (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("templates-textured_logo_elements_api.json");

const asset = client.assets.fromFile("input.png");
wf.setInput("4", "image", asset); // LoadImage

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

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