parlorsky's picture
Upload ComfyUI-ShotSplitter/__init__.py with huggingface_hub
3e00f42 verified
Raw
History Blame Contribute Delete
635 Bytes
"""ComfyUI-ShotSplitter: video shot boundary detection and frame-accurate cutting."""
from .shot_splitter_node import Oz_ShotSplitter
# Register server-side debug endpoint for listing active WS client IDs.
# Used by the driver script to route `executed` events to the user's browser.
try: # pragma: no cover
from . import server_hooks # noqa: F401
except Exception:
pass
NODE_CLASS_MAPPINGS = {
"Oz_ShotSplitter": Oz_ShotSplitter,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"Oz_ShotSplitter": "Oz / Shot Splitter",
}
WEB_DIRECTORY = "./js"
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]