| """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"] | |