Initial commit: AbletonMCP-AI complete system
- 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>
This commit is contained in:
16
AbletonMCP_AI/MCP_Server/scan_audio.py
Normal file
16
AbletonMCP_AI/MCP_Server/scan_audio.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import sample_manager
|
||||
|
||||
print('Iniciando escaneo de la libreria de samples con analyze_audio=True...')
|
||||
try:
|
||||
path = r'C:\Users\ren\embeddings\all_tracks'
|
||||
stats = sample_manager.scan_samples(path, analyze_audio=True)
|
||||
p = stats.get('processed', 0)
|
||||
a = stats.get('added', 0)
|
||||
u = stats.get('updated', 0)
|
||||
e = stats.get('errors', 0)
|
||||
print(f'Procesados: {p}')
|
||||
print(f'Agregados: {a}')
|
||||
print(f'Actualizados: {u}')
|
||||
print(f'Errores: {e}')
|
||||
except Exception as e:
|
||||
print('Error:', e)
|
||||
Reference in New Issue
Block a user