From 612d3ff1bfa1da5943015c7011f2a1bb53aa8bea Mon Sep 17 00:00:00 2001 From: lin-bot23 Date: Wed, 15 Jul 2026 06:12:15 +0800 Subject: [PATCH 1/2] docs: document WanImageToVideo output frame rate (16 FPS) Users commonly ask what frame rate the WanImageToVideo node outputs at. The length parameter gives frame count but FPS was undocumented. Wan video generation uses a fixed 16 FPS, documented in tutorial workflows but missing from the node reference docs. Source: Mintlify AI Assistant analytics data (2026-07-15) --- built-in-nodes/WanImageToVideo.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/built-in-nodes/WanImageToVideo.mdx b/built-in-nodes/WanImageToVideo.mdx index e44aea110..5830d8173 100644 --- a/built-in-nodes/WanImageToVideo.mdx +++ b/built-in-nodes/WanImageToVideo.mdx @@ -8,6 +8,8 @@ mode: wide The WanImageToVideo node prepares conditioning and latent representations for video generation tasks. It creates an empty latent space for video generation and can optionally incorporate starting images and CLIP vision outputs to guide the video generation process. The node modifies both positive and negative conditioning inputs based on the provided image and vision data. +**Output video frame rate:** The generated video uses a fixed frame rate of **16 FPS**. To calculate the output duration, divide the `length` (frame count) by 16. For example, the default length of 81 frames produces approximately 5 seconds of video. + ## Inputs | Parameter | Description | Data Type | Required | Range | From dc9734b671b1c71d17f9b892a93833f1c20742e1 Mon Sep 17 00:00:00 2001 From: lin-bot23 Date: Wed, 15 Jul 2026 06:12:53 +0800 Subject: [PATCH 2/2] docs: add ComfyUI Manager update instructions to update page Users asked about updating ComfyUI Manager, which is a separate custom node from ComfyUI core. The update page covered ComfyUI itself but did not mention how to update Manager. Adds three methods: via Manager UI, via Git pull, and notes for the Portable version. Source: Mintlify AI Assistant analytics data (2026-07-15) --- installation/update_comfyui.mdx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/installation/update_comfyui.mdx b/installation/update_comfyui.mdx index eacc35a08..b610d9b77 100644 --- a/installation/update_comfyui.mdx +++ b/installation/update_comfyui.mdx @@ -131,6 +131,37 @@ git checkout master +## How to Update ComfyUI Manager + +ComfyUI Manager is a custom node that provides installation and management of other custom nodes, models, and snapshots. It is separate from the ComfyUI core code and has its own update process. + + + + The simplest way to update Manager is through its own interface: + + 1. Open the **ComfyUI Manager** dialog by clicking the **Manager** button in the ComfyUI toolbar + 2. Go to the **Custom Nodes** tab (New UI) or the node list (Legacy UI) + 3. Find **ComfyUI-Manager** in the list and click the **Update** or **Install/Update** button + 4. Restart ComfyUI after the update completes + + + + If you installed ComfyUI Manager manually via Git, update it with: + + ```bash + cd custom_nodes/ComfyUI-Manager + git pull + ``` + + Then restart ComfyUI. + + + + For the Windows Portable version, ComfyUI Manager is built into the core. Update it by updating ComfyUI itself using one of the update scripts in the `update/` folder, or through the Manager UI as described above. + + + +If the Manager is missing or disabled after an update, re-enable it via `--enable-manager` launch flag. See the [ComfyUI Manager Overview](/manager/overview) for details. ## ComfyUI Version Types