head_trim_frames default 14 (production-proven; shot-start sync fix)
Browse files- INSTRUCTIONS.md +1 -0
- nodes.py +4 -3
- workflow/JoyEcho_Multishot_Workflow_PUBLIC.json +0 -0
INSTRUCTIONS.md
CHANGED
|
@@ -156,6 +156,7 @@ a GGUF is selected as the DiT (existing limitation, stated in the tooltip).
|
|
| 156 |
| `low_vram` (encoder) | ON if Gemma encoding OOMs; slower but ~3 GB. |
|
| 157 |
| resolution | 544x960 is a fast preview. For dialogue, raise height to 864+. |
|
| 158 |
| `hires_factor` | 1.0 = off (default). The background AutoFinish upscale usually covers you. |
|
|
|
|
| 159 |
|
| 160 |
## 9. After updating this patch — one-time step
|
| 161 |
|
|
|
|
| 156 |
| `low_vram` (encoder) | ON if Gemma encoding OOMs; slower but ~3 GB. |
|
| 157 |
| resolution | 544x960 is a fast preview. For dialogue, raise height to 864+. |
|
| 158 |
| `hires_factor` | 1.0 = off (default). The background AutoFinish upscale usually covers you. |
|
| 159 |
+
| `head_trim_frames` | Leave at 14 (default). Trims the unstable first ~0.5s of each shot, where identity morph and lip-sync error concentrate. |
|
| 160 |
|
| 161 |
## 9. After updating this patch — one-time step
|
| 162 |
|
nodes.py
CHANGED
|
@@ -1140,11 +1140,12 @@ class JoyEcho_Generate:
|
|
| 1140 |
"audio static level).",
|
| 1141 |
}),
|
| 1142 |
"head_trim_frames": ("INT", {
|
| 1143 |
-
"default":
|
| 1144 |
"tooltip": "Trim this many frames (plus matching audio) from the START of every "
|
| 1145 |
"shot. The model's first frames morph out of the reference/memory "
|
| 1146 |
-
"content -
|
| 1147 |
-
"
|
|
|
|
| 1148 |
}),
|
| 1149 |
"decode_tiling": (["auto", "on", "off"], {
|
| 1150 |
"default": "auto",
|
|
|
|
| 1140 |
"audio static level).",
|
| 1141 |
}),
|
| 1142 |
"head_trim_frames": ("INT", {
|
| 1143 |
+
"default": 14, "min": 0, "max": 24,
|
| 1144 |
"tooltip": "Trim this many frames (plus matching audio) from the START of every "
|
| 1145 |
"shot. The model's first frames morph out of the reference/memory "
|
| 1146 |
+
"content, and shot-start lip sync is at its worst there. 14 is the "
|
| 1147 |
+
"production-proven value (THE WITNESS ran it). 0 = auto: trims 8 "
|
| 1148 |
+
"when a reference_image is wired, none otherwise.",
|
| 1149 |
}),
|
| 1150 |
"decode_tiling": (["auto", "on", "off"], {
|
| 1151 |
"default": "auto",
|
workflow/JoyEcho_Multishot_Workflow_PUBLIC.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|