techfreakworm commited on
Commit
db02171
·
unverified ·
1 Parent(s): e8627ee

fix(spaces): add ComfyUI-MediaMixer custom node

Browse files

Lipsync mode crashed with KeyError: 'FinalFrameSelector' on Spaces.
That class lives in DoctorDiffusion/ComfyUI-MediaMixer (I'd
mis-attributed it to KJNodes during the earlier audit). Adding the
pack to CUSTOM_NODES_PINNED at the SHA mirroring the working local
install.

Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -42,6 +42,7 @@ CUSTOM_NODES_PINNED: list[tuple[str, str]] = [
42
  ("https://github.com/Fannovel16/comfyui_controlnet_aux.git", "e8b689a513c3e6b63edc44066560ca5919c0576e"),
43
  ("https://github.com/evanspearman/ComfyMath.git", "c01177221c31b8e5fbc062778fc8254aeb541638"),
44
  ("https://github.com/Smirnov75/ComfyUI-mxToolkit.git", "7f7a0e584f12078a1c589645d866ae96bad0cc35"),
 
45
  ]
46
 
47
 
 
42
  ("https://github.com/Fannovel16/comfyui_controlnet_aux.git", "e8b689a513c3e6b63edc44066560ca5919c0576e"),
43
  ("https://github.com/evanspearman/ComfyMath.git", "c01177221c31b8e5fbc062778fc8254aeb541638"),
44
  ("https://github.com/Smirnov75/ComfyUI-mxToolkit.git", "7f7a0e584f12078a1c589645d866ae96bad0cc35"),
45
+ ("https://github.com/DoctorDiffusion/ComfyUI-MediaMixer.git", "2bae7b5ea8fc52d8a4d668d62fed76265f4eec2c"),
46
  ]
47
 
48