بنقرة واحدة
carla-rack
Carla plugin chain rack — automated multi-effect processing via Carla's LV2/VST engine
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Carla plugin chain rack — automated multi-effect processing via Carla's LV2/VST engine
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when working with the Sleepy Circuits Hypno 2 video synthesizer/resampler — 2-channel video mixer/looper, shader engine, MIDI CC mapping, CV/modulation, sampler. Firmware v0.0.163+.
Hardware instrument skills — reference guides for each device in the music studio setup.
GLSL fragment shader techniques adapted for the Hypno 2 video synthesizer — single-pass generative visuals and video effects optimized for Raspberry Pi 5, 5-uniform limit, CC-mapped parameters
Korg KAOSS DJ — USB DJ controller with X-Y touchpad, Serato DJ Intro integration, KAOSS effects, EQ, crossfader, and MIDI on Linux
Korg KAOSSILATOR dynamic phrase synthesizer (2007 model) — X-Y touchpad, 100 programs, gate arpeggiator, phrase loop recording, USB MIDI on Linux
Use when working with the Korg kaossilator 2S dynamic phrase synthesizer — X-Y touchpad, 150 programs, 50 arp patterns, loop recording, audio player, master recorder, microSD storage, and USB MIDI on Linux.
| name | carla-rack |
| description | Carla plugin chain rack — automated multi-effect processing via Carla's LV2/VST engine |
| version | 0.1.0 |
| author | Hermes Agent |
| license | MIT |
| inputs | [{"name":"input_audio","type":"file","description":"Input audio file (WAV/FLAC/MP3)"},{"name":"chain_config","type":"list[dict]","description":"Ordered list of plugin descriptors and parameters"}] |
| outputs | [{"name":"output_audio","type":"file","description":"Rendered output file"}] |
Wraps Carla in rack mode for automated multi-effect
plugin chains. Exposes add_plugin() and render_once() as a Python interface.
carla or carla2) on PATHBatch-processing audio through chains of VST2/VST3/LV2 plugins without manual DAW
work. Intended for clean headless operation: carla --batch --input=in.wav …
from carla_rack import CarlaRack, CARLA_AVAILABLE
if not CARLA_AVAILABLE:
raise RuntimeError("Install Carla first")
rack = CarlaRack()
rack.add_plugin("/usr/lib/lv2/calf-studios/low_gear_lv2.so", {"drive": 0.7})
rack.chain([...])
output = rack.render_once("vocals.wav", "vocals-processed.wav")
tests/test_carla_rack.py: availability detection, module imports, API shapeCARLA_AVAILABLE = False and raises
CarlaRackError on instantiation.