Add BIM-VFI Concat Videos node for joining segment outputs
Adds a new node that concatenates segment video files (produced by VHS Video Combine) into a single video using ffmpeg's concat demuxer with -c copy (no re-encoding). The model input acts as a sequencing signal to ensure all segments finish before concatenation begins. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -30,16 +30,18 @@ def _auto_install_deps():
|
||||
|
||||
_auto_install_deps()
|
||||
|
||||
from .nodes import LoadBIMVFIModel, BIMVFIInterpolate, BIMVFISegmentInterpolate
|
||||
from .nodes import LoadBIMVFIModel, BIMVFIInterpolate, BIMVFISegmentInterpolate, BIMVFIConcatVideos
|
||||
|
||||
NODE_CLASS_MAPPINGS = {
|
||||
"LoadBIMVFIModel": LoadBIMVFIModel,
|
||||
"BIMVFIInterpolate": BIMVFIInterpolate,
|
||||
"BIMVFISegmentInterpolate": BIMVFISegmentInterpolate,
|
||||
"BIMVFIConcatVideos": BIMVFIConcatVideos,
|
||||
}
|
||||
|
||||
NODE_DISPLAY_NAME_MAPPINGS = {
|
||||
"LoadBIMVFIModel": "Load BIM-VFI Model",
|
||||
"BIMVFIInterpolate": "BIM-VFI Interpolate",
|
||||
"BIMVFISegmentInterpolate": "BIM-VFI Segment Interpolate",
|
||||
"BIMVFIConcatVideos": "BIM-VFI Concat Videos",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user