
The Hunyuan Video 1.5 Image to Video workflow is designed to transform static images into engaging videos with controlled motion and camera dynamics. This workflow leverages the Hunyuan Video model, which is renowned for its ability to maintain visual consistency while introducing smooth and natural movements to images. Key nodes in this workflow include VAEDecode, VAELoader, and the HunyuanVideo15ImageToVideo, which work in tandem to decode and process images into video format. The workflow also incorporates advanced nodes like CLIPTextEncode and CLIPVisionEncode to enhance the semantic understanding and visual encoding of the input images, ensuring the generated video is both coherent and visually appealing.
Technically, this workflow is structured into several steps, starting with model loading and image uploading, followed by prompt configuration and video size adjustments. The use of nodes like CreateVideo and SaveVideo ensures that the final output is not only generated efficiently but also stored correctly for further use. The inclusion of the EasyCache node offers an option to speed up processing at the cost of video quality, providing flexibility based on the user's hardware capabilities. This makes the workflow particularly useful for artists, animators, and content creators looking to breathe life into still images with minimal manual intervention.
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/5427ef92c853.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 "Hunyuan Video 1.5 Image to Video" (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("video_hunyuan_video_1.5_720p_i2v_api.json")
asset = client.assets.from_file("input.png")
wf.set_input("80", "image", asset) # LoadImage
wf.set_input("44", "text", "your prompt here") # CLIPTextEncode
job = client.run(wf)
for output in job.get_outputs("102"): # 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














