Visit ComfyUI Online for ready-to-use ComfyUI environment
SaveEXRFrames node saves high-quality HDR images in EXR format, ideal for AI artists handling animation frames.
The SaveEXRFrames
node is designed to save a sequence of images in the EXR format, which is widely used for high-quality image storage due to its support for high dynamic range (HDR) and lossless compression. This node is particularly useful for AI artists who need to save multiple frames of an animation or a series of images with high fidelity. By leveraging this node, you can ensure that your images are stored with the highest quality, preserving all the details and color information. The node handles both single-frame and multi-frame sequences, making it versatile for various use cases. It also includes progress tracking to keep you informed about the saving process, especially when dealing with large batches of images.
The filepath
parameter specifies the location where the EXR files will be saved. It can be an absolute path or a path with a frame substitution pattern (e.g., frame_%04d.exr
). This parameter is crucial as it determines where your images will be stored. If the path does not end with .exr
or .EXR
, an error will be raised. Ensure that the path is correctly formatted to avoid issues. There is no default value, and it must be provided by the user.
The start_frame
parameter defines the starting frame number for the sequence of images to be saved. This is particularly useful when saving a series of frames from an animation. The value should be an integer, and it must be less than or equal to the end_frame
. There is no default value, and it must be provided by the user.
The end_frame
parameter specifies the ending frame number for the sequence of images. This parameter works in conjunction with start_frame
to define the range of frames to be saved. The value should be an integer, and it must be greater than or equal to the start_frame
. There is no default value, and it must be provided by the user.
The overwrite
parameter is a boolean flag that determines whether existing files should be overwritten. If set to True
, any existing files at the specified filepath
will be replaced. If set to False
, the node will raise an error if a file already exists at the specified location. The default value is False
.
The save_workflow
parameter specifies whether to save additional workflow metadata along with the images. This can be useful for keeping track of the settings and parameters used during the image generation process. The options are "none"
, "basic"
, and "detailed"
, with "none"
being the default value.
The ui
output parameter provides a dictionary containing information about the saved images. This includes the filenames, subfolders, and the type of images saved. This output is useful for verifying that the images have been saved correctly and for further processing or referencing in subsequent nodes.
filepath
ends with .exr
or .EXR
to avoid errors.start_frame
and end_frame
parameters to define the exact range of frames you want to save, especially when dealing with animations.overwrite
parameter to True
only if you are sure you want to replace existing files at the specified location.save_workflow
parameter to save metadata about your image generation process, which can be helpful for future reference or replication of results.filepath
does not end with the .exr
or .EXR
extension.filepath
ends with .exr
or .EXR
.start_frame
is greater than the end_frame
, resulting in an invalid frame range.start_frame
and end_frame
to ensure that the range is valid.<filepath>
filepath
does not exist.filepath
is correct and that the directory exists.<framepath>
filepath
pattern.© Copyright 2024 RunComfy. All Rights Reserved.