Clarify Foley helper node install
Browse files
README.md
CHANGED
|
@@ -37,6 +37,11 @@ pipeline.
|
|
| 37 |
- `ltx_foley_v2a`: small helper-node package.
|
| 38 |
- `tennis-no-sound.mp4`: default silent test video for RunPod setup.
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
The helper-node package handles the workflow-specific pieces that stock ComfyUI
|
| 41 |
does not currently cover cleanly:
|
| 42 |
|
|
@@ -121,8 +126,18 @@ If you are not using the RunPod script:
|
|
| 121 |
1. Install or update ComfyUI.
|
| 122 |
2. Install the official LTXVideo custom nodes:
|
| 123 |
`https://github.com/Lightricks/ComfyUI-LTXVideo`
|
| 124 |
-
3.
|
|
|
|
| 125 |
`ComfyUI/custom_nodes/ltx_foley_v2a`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
4. Put the model files in:
|
| 127 |
- checkpoint:
|
| 128 |
[`ltx-2.3-22b-dev-fp8.safetensors`](https://huggingface.co/Lightricks/LTX-2.3-fp8/blob/main/ltx-2.3-22b-dev-fp8.safetensors)
|
|
@@ -189,6 +204,14 @@ Logs from the script-managed ComfyUI restart are written to:
|
|
| 189 |
/workspace/runpod-slim/comfyui-restart.log
|
| 190 |
```
|
| 191 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
## License Scope
|
| 193 |
|
| 194 |
The files in this workflow repository are released under the Apache-2.0 license.
|
|
|
|
| 37 |
- `ltx_foley_v2a`: small helper-node package.
|
| 38 |
- `tennis-no-sound.mp4`: default silent test video for RunPod setup.
|
| 39 |
|
| 40 |
+
The workflow requires the `ltx_foley_v2a` helper-node package. If ComfyUI shows
|
| 41 |
+
missing nodes named `LTXFoleyVideoToAudioLatent`, `LTXFoleyTrimImages`, or
|
| 42 |
+
`LTXFoleyAudioVAEDecode`, the workflow JSON was loaded before these helper nodes
|
| 43 |
+
were installed into `ComfyUI/custom_nodes`.
|
| 44 |
+
|
| 45 |
The helper-node package handles the workflow-specific pieces that stock ComfyUI
|
| 46 |
does not currently cover cleanly:
|
| 47 |
|
|
|
|
| 126 |
1. Install or update ComfyUI.
|
| 127 |
2. Install the official LTXVideo custom nodes:
|
| 128 |
`https://github.com/Lightricks/ComfyUI-LTXVideo`
|
| 129 |
+
3. Install the Foley helper nodes by copying or symlinking the workflow repo's
|
| 130 |
+
`ltx_foley_v2a` folder into:
|
| 131 |
`ComfyUI/custom_nodes/ltx_foley_v2a`
|
| 132 |
+
|
| 133 |
+
If you only downloaded the workflow JSON, run these commands from your
|
| 134 |
+
ComfyUI install directory to install the two helper-node files:
|
| 135 |
+
|
| 136 |
+
```bash
|
| 137 |
+
mkdir -p custom_nodes/ltx_foley_v2a
|
| 138 |
+
curl -L https://huggingface.co/FuzzPuppy/LTX-2.3-Foley-Workflow/resolve/main/ltx_foley_v2a/__init__.py -o custom_nodes/ltx_foley_v2a/__init__.py
|
| 139 |
+
curl -L https://huggingface.co/FuzzPuppy/LTX-2.3-Foley-Workflow/resolve/main/ltx_foley_v2a/nodes.py -o custom_nodes/ltx_foley_v2a/nodes.py
|
| 140 |
+
```
|
| 141 |
4. Put the model files in:
|
| 142 |
- checkpoint:
|
| 143 |
[`ltx-2.3-22b-dev-fp8.safetensors`](https://huggingface.co/Lightricks/LTX-2.3-fp8/blob/main/ltx-2.3-22b-dev-fp8.safetensors)
|
|
|
|
| 204 |
/workspace/runpod-slim/comfyui-restart.log
|
| 205 |
```
|
| 206 |
|
| 207 |
+
If ComfyUI reports missing `LTXFoley...` nodes after manual setup, verify that
|
| 208 |
+
these files exist and then restart ComfyUI:
|
| 209 |
+
|
| 210 |
+
```text
|
| 211 |
+
ComfyUI/custom_nodes/ltx_foley_v2a/__init__.py
|
| 212 |
+
ComfyUI/custom_nodes/ltx_foley_v2a/nodes.py
|
| 213 |
+
```
|
| 214 |
+
|
| 215 |
## License Scope
|
| 216 |
|
| 217 |
The files in this workflow repository are released under the Apache-2.0 license.
|