New Node: Load Video UI

This commit is contained in:
WhatDreamsCost
2026-05-04 14:29:05 -05:00
parent 2c5ac706f1
commit d3f4084d82
4 changed files with 1286 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ from .multi_image_loader import MultiImageLoader
from .ltx_sequencer import LTXSequencer
from .speech_length_calculator import SpeechLengthCalculator
from .load_audio_ui import LoadAudioUI
from .load_video_ui import LoadVideoUI # Imported new node
# Register the node classes
NODE_CLASS_MAPPINGS = {
@@ -10,7 +11,8 @@ NODE_CLASS_MAPPINGS = {
"MultiImageLoader": MultiImageLoader,
"LTXSequencer": LTXSequencer,
"SpeechLengthCalculator": SpeechLengthCalculator,
"LoadAudioUI": LoadAudioUI
"LoadAudioUI": LoadAudioUI,
"LoadVideoUI": LoadVideoUI # Registered new node
}
# Provide clean display names for the ComfyUI interface
@@ -19,7 +21,8 @@ NODE_DISPLAY_NAME_MAPPINGS = {
"MultiImageLoader": "Multi Image Loader",
"LTXSequencer": "LTX Sequencer",
"SpeechLengthCalculator": "Speech Length Calculator",
"LoadAudioUI": "Load Audio UI"
"LoadAudioUI": "Load Audio UI",
"LoadVideoUI": "Load Video UI" # Registered display name
}
WEB_DIRECTORY = "./js"