File size: 635 Bytes
3e00f42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | """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"]
|