This ComfyUI workflow builds a guided style and scene transition on top of the LTX-2.3 text-to-video model by applying the ltx2.3-transition LoRA. The core generation happens inside a custom LTX-2.3 pipeline node (beb19732-5803-4af6-b2d2-289692ce780b), which takes your prompt, applies the LoRA at a user-defined weight, and renders a sequence of frames that smoothly evolve from one style or scene description to another. If you provide a reference image with LoadImage, the pipeline can also pull color palettes or subject cues into the transition; if you skip it, the transition is guided purely by text.
Practical controls are surfaced where you need them: prompt fields (with support for the trigger word "zhuanchang"), frame count and FPS for timing, and LoRA strength to dial how assertively the transition behaves. MarkdownNote is embedded to keep prompting tips visible as you iterate, and SaveVideo encodes the final frames into a video file at your chosen frame rate and quality. The result is a reliable, loop-friendly way to blend visual elements—style, lighting, subject emphasis, or even scene composition—without hand-animating or post-processing crossfades.
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.
GET https://comfy.org/workflows/download/38a5302d2c2d.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "LTX-2.3 Style Transition" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("template_ltx2_3_style_transition_api.json")
asset = client.assets.from_file("input.png")
wf.set_input("137", "image", asset) # LoadImage
job = client.run(wf)
for output in job.get_outputs("68"): # SaveVideo
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














