chore: remove all PrismAudio code from main branch

- Delete prismaudio_core/, data_utils/, scripts/, docs/plans/
- Delete PrismAudio nodes (feature_extractor, feature_loader, model_loader, sampler, text_only)
- Delete PrismAudio workflows (video_to_audio, text_to_audio)
- Clean nodes/utils.py: rename PRISMAUDIO_CATEGORY → SELVA_CATEGORY, remove unused helpers
- Strip PrismAudio-only deps from requirements.txt

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 17:58:31 +02:00
parent 679a607a85
commit 83b1da9520
43 changed files with 11 additions and 11958 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ import numpy as np
import torch
import torch.nn.functional as F
from .utils import PRISMAUDIO_CATEGORY, get_device, get_offload_device, soft_empty_cache
from .utils import SELVA_CATEGORY, get_device, get_offload_device, soft_empty_cache
# SelVA video preprocessing constants (from selva/utils/eval_utils.py)
_CLIP_SIZE = 384
@@ -68,7 +68,7 @@ class SelvaFeatureExtractor:
RETURN_TYPES = ("SELVA_FEATURES", "FLOAT", "STRING")
RETURN_NAMES = ("features", "fps", "prompt")
FUNCTION = "extract_features"
CATEGORY = PRISMAUDIO_CATEGORY
CATEGORY = SELVA_CATEGORY
def extract_features(self, model, video, prompt, video_info=None, fps=30.0,
duration=0.0, cache_dir=""):