CLI Audio Analyzer for Music Producers - DnB, Techno, House
Project description
mixref
CLI Audio Analyzer for Music Producers
Status: v0.4.0 - Feature Complete! ๐
A sharp, opinionated audio analysis tool that speaks the language of producers. Not another generic analyzerโbuilt specifically for electronic music (Drum & Bass, Techno, House) with genre-aware insights that matter.
Features
๐๏ธ Professional Loudness Analysis
- EBU R128 Metering: Integrated LUFS, True Peak (dBTP), Loudness Range (LRA)
- Platform Targets: Spotify (-14), YouTube (-14), Apple Music (-16), Club (-6 to -8)
- Genre Awareness: DnB, Techno, House, Dubstep, Trance profiles
- Real-time Warnings: Clipping detection, loudness guidance
๐ต Musical Analysis
- BPM Detection: Genre-aware tempo detection with half-time correction
- Key Detection: Krumhansl-Schmuckler algorithm with Camelot notation (8A, 5B, etc.)
- Confidence Scores: Know how reliable the detection is
๐ Spectral Analysis
- 5-Band Breakdown: Sub (20-60Hz), Low (60-250Hz), Mid (250-2kHz), High (2-8kHz), Air (8-20kHz)
- Visual Bars: See your frequency balance at a glance
- Percentage Distribution: Understand where your energy sits
๐ A/B Comparison
- Reference Matching: Compare your mix against professional tracks
- Side-by-Side Analysis: Loudness, spectral, BPM, and key comparison
- Smart Suggestions: Get actionable feedback on what to adjust
- Difference Highlighting: See exactly where you differ (> 3% significance threshold)
๐ค Flexible Output
- Rich CLI Tables: Beautiful terminal output with colors and formatting
- JSON Export: Perfect for scripting and automation
- Multiple Formats: WAV, FLAC, MP3, OGG, AIFF support
Installation
# From PyPI
pip install mixref
# Or with uv
uv pip install mixref
System Requirements
- Python: 3.12 or 3.13
- Platforms: Linux, macOS, Windows
โ ๏ธ Known Issue: Python 3.13 on Windows is not currently supported due to numpy/librosa compatibility issues. Windows users should use Python 3.12. This limitation does not affect Linux or macOS.
Quick Start
Python API
from mixref.audio import load_audio
from mixref.meters import calculate_lufs
from mixref.detective import detect_tempo, detect_key
# Load and analyze
audio, sr = load_audio("your_track.wav")
# Get loudness metrics
result = calculate_lufs(audio, sr)
print(f"LUFS: {result.lufs_integrated}")
print(f"True Peak: {result.true_peak_dbtp}")
# Detect BPM and key
bpm = detect_tempo(audio, sr)
key = detect_key(audio, sr)
print(f"Tempo: {bpm.bpm} BPM")
print(f"Key: {key.key_name} ({key.camelot_code})")
CLI Usage
# Check version
mixref --version
# Analyze a track
mixref analyze my_track.wav
# With platform target
mixref analyze track.wav --platform spotify
# With genre awareness
mixref analyze dnb_track.wav --genre dnb
# JSON output for scripting
mixref analyze track.wav --json | jq '.lufs.integrated'
# Compare your mix to a reference
mixref compare my_mix.wav professional_reference.wav
# Full comparison with BPM and key
mixref compare my_track.wav reference.wav --bpm --key
# Compare with JSON output
mixref compare track1.wav track2.wav --json
Live Demos
๐ Analyze Command
Analyze any track to get loudness metrics, BPM, key, and spectral balance. Add --genre dnb for genre-specific feedback.
๐ Compare Command
Compare your mix against professional references with side-by-side analysis and smart suggestions.
Real-World Example
$ mixref analyze neurofunk_banger.wav --genre dnb
Analysis: neurofunk_banger.wav
โโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโณโโโโโโโโโ
โ Metric โ Value โ Status โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ Integrated Loudness โ -6.2 LUFS โ ๐ด โ
โ True Peak โ -0.8 dBTP โ โ ๏ธ โ
โ Loudness Range โ 5.2 LU โ โน โ
โโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโผโโโโโโโโโค
โ Tempo โ 174.0 BPM โ โ โ
โ Key โ F minor (4A) โ โ โ
โโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโผโโโโโโโโโค
โ Sub โ โ โ โ โ โ โ โ โกโกโก โ 35.2% โ
โ Low โ โ โ โ โ โ โ โ โ โ โก โ 28.4% โ
โ Mid โ โ โ โ โ โกโกโกโกโกโก โ 18.1% โ
โ High โ โ โ โ โ โ โ โกโกโกโก โ 14.2% โ
โ Air โ โ โกโกโกโกโกโกโกโกโก โ 4.1% โ
โโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโดโโโโโโโโโ
โ ๏ธ Platform Targets
โข Spotify (-14): ๐ด +7.8 dB too loud
โข YouTube (-14): ๐ด +7.8 dB too loud
โข Club/DJ: ๐ข OK for club play
๐ก Genre Insights (DnB)
โข Sub-bass is strong (35%) - typical for neurofunk
โข True peak close to 0dB - consider -1dB headroom
Documentation
Full documentation is available at caparrini.github.io/mixref
- ๐ Installation Guide
- ๐ Quick Start
- ๐ API Reference
- ๐จ Examples Gallery
Development
# Clone and setup
git clone https://github.com/caparrini/mixref.git
cd mixref
uv sync --all-extras
# Run tests
uv run pytest
# Type check
uv run mypy src/
# Lint and format
uv run ruff check src/
uv run ruff format src/
# Build docs
cd docs && uv run sphinx-build -b html source build/html
See CONTRIBUTING.md for detailed development guidelines.
CI/CD
This project uses GitHub Actions for continuous integration:
- โ Tests: Python 3.12-3.13 on Ubuntu, macOS, Windows
- ๐ Docs: Auto-deployed to GitHub Pages
- ๐ Quality: Linting, type checking, coverage (88%+)
- ๐ฆ Publish: Automated PyPI releases
- ๐ Coverage: Tracked on Codecov
See .github/CICD_SETUP.md for CI/CD configuration details.
Links
- PyPI: https://pypi.org/project/mixref/
- Documentation: https://caparrini.github.io/mixref/
- Source Code: https://github.com/caparrini/mixref
- Issue Tracker: https://github.com/caparrini/mixref/issues
- Codecov: https://codecov.io/gh/caparrini/mixref
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
License
MIT License - see LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mixref-0.4.0.tar.gz.
File metadata
- Download URL: mixref-0.4.0.tar.gz
- Upload date:
- Size: 176.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbec8bf69658146854225052fdd5f66c9f1e979d616668484f32aea7f1443bf7
|
|
| MD5 |
2b0dc265b9c8f55edef79241031a4768
|
|
| BLAKE2b-256 |
7b679dc4c05cb2e928b0731c1da5b39a245e3b837f99ec4176457217f5dcddde
|
Provenance
The following attestation bundles were made for mixref-0.4.0.tar.gz:
Publisher:
publish.yml on Caparrini/mixref
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mixref-0.4.0.tar.gz -
Subject digest:
dbec8bf69658146854225052fdd5f66c9f1e979d616668484f32aea7f1443bf7 - Sigstore transparency entry: 896636192
- Sigstore integration time:
-
Permalink:
Caparrini/mixref@6d34e925fbfba5dbf0f9ef4796818644bcc9e306 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Caparrini
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@6d34e925fbfba5dbf0f9ef4796818644bcc9e306 -
Trigger Event:
release
-
Statement type:
File details
Details for the file mixref-0.4.0-py3-none-any.whl.
File metadata
- Download URL: mixref-0.4.0-py3-none-any.whl
- Upload date:
- Size: 34.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fe45b99f48e79db1b833bb030b0c5dbce78211f75b2dd3b8d36d32e526c6024
|
|
| MD5 |
6278e267c5209d44da2cd7da40b62607
|
|
| BLAKE2b-256 |
91b340613281f84701b226d36422d5ab639c988e2c21e567c4454643b2d80eea
|
Provenance
The following attestation bundles were made for mixref-0.4.0-py3-none-any.whl:
Publisher:
publish.yml on Caparrini/mixref
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mixref-0.4.0-py3-none-any.whl -
Subject digest:
5fe45b99f48e79db1b833bb030b0c5dbce78211f75b2dd3b8d36d32e526c6024 - Sigstore transparency entry: 896636238
- Sigstore integration time:
-
Permalink:
Caparrini/mixref@6d34e925fbfba5dbf0f9ef4796818644bcc9e306 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Caparrini
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@6d34e925fbfba5dbf0f9ef4796818644bcc9e306 -
Trigger Event:
release
-
Statement type: