- MCP Server with audio fallback, sample management - Song generator with bus routing - Reference listener and audio resampler - Vector-based sample search - Master chain with limiter and calibration - Fix: Audio fallback now works without M4L - Fix: Full song detection in sample loader Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
464 B
Batchfile
12 lines
464 B
Batchfile
@echo off
|
|
REM Wrapper para ejecutar AbletonMCP-AI Server en opencode
|
|
REM Redirige stderr a un archivo de log para mantener stdout limpio
|
|
|
|
cd /d "C:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scripts"
|
|
|
|
set PYTHONIOENCODING=utf-8
|
|
set PYTHONUNBUFFERED=1
|
|
set PYTHONPATH=C:/ProgramData/Ableton/Live 12 Suite/Resources/MIDI Remote Scripts/AbletonMCP_AI
|
|
|
|
python "AbletonMCP_AI/MCP_Server/server.py" --transport stdio 2>>"C:/Users/ren/opencode_mcp_error.log"
|