This workflow restores soft or slightly out‑of‑focus footage using the Refocus IC LoRA on top of the LTX 2.3 model. It ingests your clip with VHS_LoadVideo, processes each frame through a custom LTX 2.3 + LoRA processor (node UUID: 2e37ecc9-770a-4ac2-972c-e953901f49d3), and then reassembles the enhanced frames back into a video with VHS_VideoCombine. The Refocus IC LoRA biases the LTX 2.3 backbone toward reconstructing fine edges and mid‑frequency detail that typical sharpening filters can’t recover, helping pull subjects back into clarity while minimizing halos and ringing.

Technically, the pipeline works frame‑wise: VHS_LoadVideo decodes your source and outputs frame tensors; the custom node loads the LTX 2.3 base and applies the Refocus IC LoRA weights to guide inference toward crisp, natural detail; and VHS_VideoCombine stitches the processed frames into a finished clip at your chosen frame rate and quality. Because this is model‑driven enhancement rather than a simple unsharp mask, it can plausibly restore subtle textures and edge definition in footage that would otherwise be unusable. Keep LoRA strength conservative for realism, and iterate to balance sharpness against potential artifacts.

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/4ca799182440.json
Fetching 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 this workflow (Python)
from comfy_sdk import Comfy

client = Comfy(api_key="comfyui-...")
wf = client.workflows.from_file("workflow_api.json")
job = client.run(wf)
for output in job.get_outputs("<output-node-id>"):
    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

Frequently Asked Questions

View all workflows
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