From 762b19fd3a170df4e94da1886e0ff4d33e00686d Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sat, 28 Mar 2026 11:26:15 +0100 Subject: [PATCH] fix: return fps from non-cache extraction path The fps output was only returned on cache hits. Fresh extractions returned only features, leaving fps null. Co-Authored-By: Claude Sonnet 4.6 --- nodes/feature_extractor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nodes/feature_extractor.py b/nodes/feature_extractor.py index 2ae61db..724f074 100644 --- a/nodes/feature_extractor.py +++ b/nodes/feature_extractor.py @@ -203,4 +203,5 @@ class PrismAudioFeatureExtractor: # Load the extracted features loader = PrismAudioFeatureLoader() - return loader.load_features(cached_path) + features, = loader.load_features(cached_path) + return (features, float(fps))