Command Line Interface¶
CoreMusic includes a comprehensive command-line interface for common audio and MIDI operations. The CLI provides quick access to audio playback, recording, analysis, format conversion, device management, plugin processing, and MIDI operations without writing Python code.
Installation and Usage¶
The CLI is automatically available after installing CoreMusic:
# Show help
coremusic --help
# Show version
coremusic --version
# Get help for a specific command
coremusic audio --help
Global Options¶
All commands support these global options:
--json
Output results in JSON format (machine-readable)
--version
Show version number and exit
--help
Show help message and exit
Available Commands¶
| Command | Description |
|---|---|
audio |
Audio file operations (info, play, record, duration, metadata) |
device |
Audio device management (list, info, volume, mute, set-default, monitor) |
plugin |
AudioUnit plugin discovery and processing (list, find, info, params, process, chain, render) |
analyze |
Audio analysis (levels, tempo, key, spectrum, loudness, onsets) |
convert |
Audio conversion (file, batch, normalize, trim) |
midi |
MIDI operations (list, info, play, quantize, receive, monitor, send, panic) |
sequence |
MIDI sequence operations (info, play, tracks) |
Audio Command¶
Audio file information, playback, and recording operations.
# Display audio file information
coremusic audio info song.wav
# Play audio file
coremusic audio play song.wav
coremusic audio play song.wav --loop
# Record audio from input device
coremusic audio record -o recording.wav -d 10
# Get duration in different formats
coremusic audio duration song.wav
coremusic audio duration song.wav --format mm:ss
coremusic audio duration song.wav --format samples
# Show metadata/tags
coremusic audio metadata song.mp3
# Write metadata tags
coremusic audio metadata song.caf --set title="My Song" artist="Me"
Subcommands:
info <file>
Display comprehensive audio file information including format, sample rate,
channels, bit depth, duration, and file size.
play <file> [--loop]
Play an audio file with optional looping. Shows progress bar during playback.
record -o <output> [-d <duration>] [--sample-rate RATE] [--channels N]
Record audio from the default input device. Options:
-o, --output- Output file path (required)-d, --duration- Recording duration in seconds--sample-rate- Sample rate (default: 44100)--channels- Number of channels (default: 2)
duration <file> [--format FORMAT]
Get audio file duration. Format options: seconds (default), mm:ss, samples.
metadata <file> [--set key=value ...]
Show audio file metadata and tags. Use --set with key=value pairs to write
metadata (file must support writing, e.g. CAF or AIFF).
Devices Command¶
Audio device discovery, management, and control.
# List all audio devices
coremusic devices list
# Show default input/output devices
coremusic devices default
coremusic devices default --input
coremusic devices default --output
# Show detailed device information
coremusic devices info "Built-in Output"
# Get/set device volume (0.0-1.0)
coremusic devices volume "MacBook Pro Speakers"
coremusic devices volume "MacBook Pro Speakers" 0.5
# Get/set device mute state
coremusic devices mute "MacBook Pro Speakers"
coremusic devices mute "MacBook Pro Speakers" on
# Set default device
coremusic devices set-default "External Headphones" --output
coremusic devices set-default "USB Microphone" --input
# Monitor device changes (connect/disconnect, volume, sample rate)
coremusic device monitor
coremusic device monitor --interval 0.5
Subcommands:
list
List all available audio devices with name, manufacturer, and sample rate.
default [--input] [--output]
Show system default audio devices. Use flags to show only input or output.
info <device>
Show detailed information for a specific device (by name or UID).
volume <device> [level]
Get or set device volume (0.0-1.0). Options:
--scope- Volume scope:output(default) orinput--channel- Channel number (default: 0 for master)
mute <device> [on|off]
Get or set device mute state.
set-default <device> [--input|--output]
Set the system default input or output device.
monitor [--interval SEC]
Monitor audio device state changes in real time. Reports device connect/disconnect,
sample rate changes, volume changes, mute state changes, and default device changes.
Default poll interval is 1 second. Press Ctrl+C to stop.
Plugin Command¶
Discover, inspect, and use AudioUnit plugins installed on the system.
# List all plugins
coremusic plugin list
# List only plugin names (for scripting)
coremusic plugin list --name-only
# Filter by type
coremusic plugin list --type effect
coremusic plugin list --type instrument
# Search for plugins
coremusic plugin find "reverb"
coremusic plugin find "synth" --type instrument
# Show plugin details
coremusic plugin info "AUGraphicEQ"
# Show plugin parameters
coremusic plugin params "AUBandpass"
# List factory presets
coremusic plugin preset list "AUReverb2"
# Process audio through effect plugin
coremusic plugin process "AUDelay" input.wav -o output.wav
coremusic plugin process "AUReverb2" input.wav -o output.wav --preset "Large Hall"
# Chain multiple effect plugins
coremusic plugin chain input.wav -p "AUDelay" -p "AUReverb2" -o out.wav
# Chain with inline parameters (colon-delimited)
coremusic plugin chain input.wav -p "AUDelay:Delay Time=0.5:Wet Dry Mix=50" -p "AUReverb2" -o out.wav
# Chain with presets
coremusic plugin chain input.wav -p "AUDelay" -p "AUReverb2" --preset "Long Delay" --preset "Large Hall" -o out.wav
# Chain from config file (JSON or YAML)
coremusic plugin chain input.wav --config chain.yaml -o out.wav
# Render MIDI through instrument plugin
coremusic plugin render "DLSMusicDevice" song.mid -o rendered.wav
coremusic plugin render "DLSMusicDevice" song.mid -o rendered.wav --preset 0
Plugin Types:
effect- Audio effect processors (reverb, delay, EQ, etc.)instrument- Virtual instruments (synths, samplers)generator- Audio generatorsmusic_effect- MIDI-enabled effectsmixer- Mixer unitspanner- Panning unitsoutput- Output unitsformat_converter- Format converters
Subcommands:
list [--type TYPE] [--manufacturer NAME] [--name-only]
List available AudioUnit plugins with optional filtering.
--type- Filter by plugin type--manufacturer- Filter by manufacturer--name-only- Print only unique plugin names (one per line)
find <query> [--type TYPE]
Search for plugins by name.
info <name>
Show detailed information about a specific plugin.
params <name>
Display all parameters for a plugin with their ranges and units.
preset list <name>
List factory presets for a plugin.
process <name> <input> -o <output> [--preset NAME|NUMBER]
Apply an effect plugin to an audio file.
chain <input> -p SPEC [...] -o <output> [--preset PRESET [...]] [--config FILE]
Process audio through multiple effect plugins sequentially. Plugin specs can
include inline parameters: -p "AUDelay:Delay Time=0.5:Wet Dry Mix=50".
Alternatively, define the chain in a JSON or YAML config file:
chain:
- name: AUDelay
preset: "Long Delay"
params:
Delay Time: 0.5
Wet Dry Mix: 50
- name: AUReverb2
params:
Dry Wet Mix: 80
render <name> <midi> -o <output> [--preset NAME|NUMBER] [--sample-rate RATE] [--duration SEC]
Render a MIDI file through an instrument plugin to audio.
Analyze Command¶
Audio analysis and feature extraction.
# Show both peak and RMS levels
coremusic analyze levels song.wav
# Measure peak amplitude
coremusic analyze peak song.wav
coremusic analyze peak song.wav --db
# Calculate RMS level
coremusic analyze rms song.wav --db
# Detect silence regions
coremusic analyze silence song.wav --threshold -40 --min-duration 0.5
# Detect tempo/BPM
coremusic analyze tempo song.wav
# Analyze frequency spectrum
coremusic analyze spectrum song.wav --peaks 10
coremusic analyze spectrum song.wav --time 5.0
# Detect musical key
coremusic analyze key song.wav
# LUFS loudness measurement
coremusic analyze loudness song.wav
# Onset detection
coremusic analyze onsets song.wav --threshold 0.5 --min-gap 0.1
# Extract MFCC features
coremusic analyze mfcc song.wav --coefficients 13
Subcommands:
levels <file>
Show both peak and RMS levels in dB.
peak <file> [--db]
Calculate peak amplitude. Use --db for decibel output.
rms <file> [--db]
Calculate RMS (average) level.
silence <file> [--threshold DB] [--min-duration SEC]
Detect silence regions. Default threshold: -40 dB, minimum duration: 0.5s.
tempo <file>
Detect tempo in BPM (requires scipy).
spectrum <file> [--time SEC] [--peaks N]
Analyze frequency spectrum at a specific time position.
key <file>
Detect the musical key of the audio.
loudness <file>
LUFS loudness measurement with integrated LUFS, loudness range, peak, and RMS.
onsets <file> [--threshold FLOAT] [--min-gap SEC]
Onset detection using spectral flux.
mfcc <file> [--coefficients N] [--time SEC]
Extract Mel-frequency cepstral coefficients for audio fingerprinting.
Convert Command¶
Convert audio files between formats with sample rate and channel conversion.
# Basic format conversion
coremusic convert file input.wav output.aac
# Specify output format explicitly
coremusic convert file input.wav output.m4a --format aac
# Change sample rate
coremusic convert file input.wav output.wav --rate 48000
# Convert to mono
coremusic convert file input.wav output.wav --channels 1
# Full conversion with quality
coremusic convert file input.wav output.aac --rate 44100 --channels 2 --quality high
# Batch conversion
coremusic convert batch input_dir/ output_dir/ --format wav
# Normalize audio
coremusic convert normalize input.wav output.wav --target -1.0
coremusic convert normalize input.wav output.wav --target -14.0 --mode rms
# Trim audio
coremusic convert trim input.wav output.wav --start 10 --end 30
coremusic convert trim input.wav output.wav --start 5 --duration 10
Supported Formats:
wav- Uncompressed PCMaif/aiff- Audio Interchange File Formatcaf- Core Audio Formataac/m4a- AAC (lossy compression)alac- Apple Losslessflac- Free Lossless Audio Codecmp3- MPEG Layer 3
Quality Levels:
min- Minimum quality (smallest file)low- Low qualitymedium- Medium qualityhigh- High quality (default)max- Maximum quality (largest file)
Subcommands:
file <input> <output> [options]
Convert a single audio file.
batch <input_dir> <output_dir> [--format FORMAT]
Batch convert all audio files in a directory.
normalize <input> <output> [--target DB] [--mode peak|rms]
Normalize audio to target peak or RMS level.
trim <input> <output> [--start SEC] [--end SEC] [--duration SEC]
Extract a portion of an audio file.
MIDI Command¶
MIDI device discovery, monitoring, recording, and basic MIDI operations.
# List all MIDI devices and endpoints
coremusic midi list
coremusic midi list --verbose
# Show MIDI file info
coremusic midi info song.mid
# Monitor MIDI input (human-readable: note names, CC names, timestamps)
coremusic midi monitor
coremusic midi monitor --device 1
# Receive MIDI input (raw display, record, or route to plugin)
coremusic midi receive
coremusic midi receive -o recorded.mid --tempo 120
coremusic midi receive --plugin "DLSMusicDevice"
# Send MIDI messages
coremusic midi send --note 60 --velocity 100
coremusic midi send --cc 7 64
coremusic midi send --test
# Send panic (all notes off)
coremusic midi panic
# Play MIDI file
coremusic midi play song.mid
# Quantize MIDI file
coremusic midi quantize input.mid -o output.mid --grid 1/16
coremusic midi quantize input.mid -o output.mid --grid 1/8 --strength 0.8
Subcommands:
list [--verbose]
List all MIDI devices, sources, and destinations.
info <path>
Show MIDI file information (tracks, events, duration, tempo).
monitor [--device INDEX]
Monitor MIDI input with human-readable formatting. Displays note names (C4, F#3),
CC names (Sustain Pedal, Modulation), centered pitch bend values, and 1-indexed
channels. Press Ctrl+C to stop.
receive [--device INDEX] [-o FILE] [--plugin NAME] [--quiet] [--duration SEC] [--tempo BPM]
Receive MIDI input. Modes: display (default), save to MIDI file (-o file.mid),
or route to AudioUnit plugin (--plugin).
send [DEST] [--note N] [--cc NUM VAL] [--program N] [--test] [--channel CH] [--velocity VEL]
Send MIDI messages to an output destination.
panic [DEST]
Send all-notes-off (CC 123) and all-sound-off (CC 120) on all 16 channels.
play <path> [--device INDEX]
Play MIDI file through an output device.
quantize <input> -o <output> [--grid GRID] [--strength FLOAT]
Quantize MIDI note timing to grid. Grid options: 1/4, 1/8, 1/16, 1/32.
Sequence Command¶
MIDI sequence operations for working with MIDI files.
# Show MIDI file information
coremusic sequence info song.mid
# List tracks in MIDI file
coremusic sequence tracks song.mid
# Play MIDI file
coremusic sequence play song.mid
# Play with tempo override
coremusic sequence play song.mid --tempo 140
# Play to specific device
coremusic sequence play song.mid --device 1
Subcommands:
info <file>
Display MIDI file information (format, tracks, duration, events).
tracks <file>
List all tracks with event counts and note ranges.
play <file> [options]
Play MIDI file through an output device. Options:
--device,-d- MIDI output device index (default: 0)--tempo,-t- Override tempo in BPM
JSON Output¶
All commands support --json for machine-readable output:
# Get audio info as JSON
coremusic --json audio info song.wav
# List devices as JSON
coremusic --json devices list
# List plugins as JSON
coremusic --json plugin list --type effect
# Pipe to jq for processing
coremusic --json plugin list | jq '.[] | select(.type == "Effect")'
Environment Variables¶
DEBUG
Set to 1 to enable debug logging:
Examples¶
Complete Workflow Example¶
# 1. Check audio file info
coremusic audio info recording.wav
# 2. Analyze levels and tempo
coremusic analyze levels recording.wav
coremusic analyze tempo recording.wav
# 3. Normalize and trim
coremusic convert normalize recording.wav normalized.wav --target -1.0
coremusic convert trim normalized.wav trimmed.wav --start 2 --end 30
# 4. Process through effect chain
coremusic plugin chain trimmed.wav -p "AUBandpass" -p "AUReverb2" --preset "" --preset "Medium Hall" -o final.wav
# 5. Check available MIDI outputs
coremusic midi list
# 6. Play MIDI accompaniment
coremusic midi play accompaniment.mid
Batch Processing Script¶
#!/bin/bash
# Analyze all WAV files in a directory
for file in *.wav; do
echo "=== $file ==="
coremusic analyze levels "$file"
coremusic analyze tempo "$file"
echo
done
Plugin Discovery Script¶
# Find all reverb plugins
coremusic plugin list --name-only | grep -i reverb
# Export all effect plugins to JSON
coremusic --json plugin list --type effect > effects.json
# Get parameters for a specific plugin
coremusic --json plugin params "AUGraphicEQ" > eq_params.json