From 2b2b4383070c04ea91123c9cd9e4a753f0ef4164 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 6 Apr 2026 00:11:16 +0200 Subject: [PATCH] fix: set OUTPUT_NODE=True on SelVA Feature Extractor so it runs without connected outputs Co-Authored-By: Claude Sonnet 4.6 --- nodes/selva_feature_extractor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nodes/selva_feature_extractor.py b/nodes/selva_feature_extractor.py index 5e50f76..8d5d2cf 100644 --- a/nodes/selva_feature_extractor.py +++ b/nodes/selva_feature_extractor.py @@ -155,6 +155,7 @@ class SelvaFeatureExtractor: "Source fps of the video — wire to VHS_VideoCombine frame_rate.", "The prompt used during extraction — wire to Sampler prompt to avoid re-typing.", ) + OUTPUT_NODE = True # always execute: the node's purpose is saving .npz files to disk FUNCTION = "extract_features" CATEGORY = SELVA_CATEGORY DESCRIPTION = "Extracts CLIP visual features and text-conditioned sync features from a video. Results are cached — re-running with the same inputs is instant."