Skip to main content

demucs-mlx

Split any song into its individual stems — vocals, drums, bass, and other instruments — directly on your Mac.

demucs-mlx is a fast, native Apple Silicon port of Meta's Demucs music source separation model, built on MLX. No PyTorch required.

Features

  • ~73x realtime on Apple Silicon — 2.6x faster than Demucs with PyTorch MPS
  • Bit-exact parity with upstream Demucs stems (within floating-point tolerance)
  • Custom fused Metal kernels (GroupNorm+GELU, GroupNorm+GLU, OLA)
  • Metal-free fallbacks for non-Apple platforms (Linux)
  • No PyTorch required at inference time
  • Automatic resampling — input files at any sample rate are resampled to the model rate
  • Audio I/O via mlx-audio-io
  • STFT/iSTFT via mlx-spectro

Requirements

  • Python >= 3.10
  • macOS with Apple Silicon (recommended) or Linux with MLX
  • MLX 0.31.2 paired with mlx-audio-io 1.3.11; the native audio package does not yet support MLX 0.32

Install

pip install demucs-mlx

On first run, demucs-mlx loads cached MLX weights if available. If the optional mlx-weights package is installed locally, demucs-mlx uses its shared cache. Otherwise it uses its built-in cache. A cache miss is converted internally from the official Demucs registry using the restricted loader described below.

To bootstrap a missing model with the public package, install the conversion extra:

pip install 'demucs-mlx[convert]'

You can explicitly generate a safe cache in any directory with:

python -m demucs_mlx.mlx_convert htdemucs --output-dir ~/.cache/demucs-mlx

Once weights are cached, the convert extra is no longer needed for inference.

CLI usage

demucs-mlx /path/to/audio.wav

Options:

-n, --name          Model name (default: htdemucs)
-o, --out           Output directory (default: separated)
--shifts            Number of random shifts (default: 1)
--seed              Optional RNG seed for reproducible shifts (default: none)
--overlap           Overlap ratio (default: 0.25)
-b, --batch-size    Batch size (default: 2)
--write-workers     Concurrent writer threads (default: 1)
--list-models       List available models
-v, --verbose       Verbose logging

Python usage

from demucs_mlx import Separator

separator = Separator()
origin, stems = separator.separate_audio_file("song.wav")

# stems is a dict: {"drums": array, "bass": array, "other": array, "vocals": array}
for name, audio in stems.items():
    print(f"{name}: {audio.shape}")

To keep outputs as MLX arrays (avoids GPU-to-CPU copy):

origin, stems = separator.separate_audio_file("song.wav", return_mx=True)

For reproducible shift sampling (while keeping shifts=1 behavior), pass a seed:

separator = Separator(model="htdemucs", shifts=1, seed=0)
origin, stems = separator.separate_audio_file("song.wav")

What changed in 1.4.6

  • Restricted official Demucs checkpoint loading to PyTorch 2.6+ with weights_only=True, a narrow class allowlist, hash verification, and strict package validation.
  • Replaced executable pickle caches with digest-verified MLX safetensors and versioned JSON metadata.
  • Legacy pickle caches are never opened; they are ignored while safe artifacts regenerate from the verified official registry.

What changed in 1.4.5

  • Fixed audio prefetch on MLX 0.31.2 by materializing decoded arrays on the producer thread before queue handoff.
  • Reduced the default inference batch size from 8 to 2 to avoid memory thrashing on 16–36 GB Macs; explicit -b values are unchanged.
  • Pinned MLX 0.31.2 and mlx-audio-io 1.3.11 as a compatible native runtime pair. MLX 0.32 support will follow a matching mlx-audio-io release.

What changed in 1.4.4

  • Fixed multi-segment split=True overlap-add on MLX 0.31.2. Long inputs no longer produce high-amplitude reconstruction spikes.
  • Added regression coverage for split-mode overlap-add and an optional model-level reproduction for issue #1.

What changed in 1.4.3

  • resample_mx() now uses direct mac.resample() instead of writing/reading a temp file — eliminates an unnecessary MLX→numpy→disk→MLX round-trip.
  • Bumped minimum mlx-audio-io to >=1.3.9 (auto-selects best resampling quality).

What changed in 1.4.2

  • Audio loading now stays as native MLX arrays end-to-end (no numpy round-trip).
  • Automatic resampling via mlx-audio-io — input files no longer need to match the model sample rate.
  • Uses soxr_vhq resampling quality when available, with automatic fallback.
  • Bumped minimum dependencies: mlx>=0.31.0, mlx-audio-io>=1.3.8, mlx-spectro>=0.2.4.

What changed in 1.4.0

  • Fixed shifted-inference TensorChunk propagation so chunk length/offset is handled correctly in all paths.
  • Added optional deterministic RNG control (seed) for Python API and CLI.
  • Default behavior is unchanged: shifts=1 remains stochastic unless seed is provided.

Performance

Benchmarked on a 3:15 stereo track (44.1 kHz, 16-bit) using htdemucs with default settings:

Package Backend Time Speedup
demucs 4.0.1 PyTorch (CPU) 52.3s 0.1x
demucs 4.0.1 PyTorch (MPS) 6.9s 1x
demucs-mlx 1.1.0 MLX + Metal 2.7s 2.6x

Apple M4 Max, 128 GB. All runs use htdemucs with default settings and a single warm-up pass before timing.

Models

Model Sources Description
htdemucs 4 Hybrid Transformer Demucs (default)
htdemucs_ft 4 Fine-tuned HTDemucs
htdemucs_6s 6 6-source (adds piano, guitar)
hdemucs_mmi 4 Hybrid Demucs MMI
mdx 4 Music Demixing model
mdx_extra 4 MDX with extra training

MLX model cache

Pre-converted MLX weights are cached under ~/.cache/demucs-mlx by default. When the optional mlx-weights package is installed, demucs-mlx uses its shared ~/.cache/mlx-weights/demucs-mlx directory instead.

Cache format v1 consists of <model>.safetensors and a versioned <model>_config.json sidecar. Arrays are saved and loaded with MLX's native safetensors support. The bounded JSON metadata records the exact MLX model classes and constructor data, ensemble shape and weights, ordered official Demucs source signatures/checksums, conversion time, actual MLX version, verification result, and the SHA-256 of the safetensors file. Exceptional constructor values such as Fraction use a narrowly validated tagged JSON representation. The digest and complete metadata are validated before arrays are loaded or a model is constructed.

Older <model>_mlx.pkl files are unsafe legacy caches. demucs-mlx never opens, rewrites, or deletes them. If conversion dependencies are installed, a legacy-only cache is ignored and safe v1 artifacts are regenerated from the verified official source. Without automatic conversion, the error includes the ignored pickle path and the exact regeneration command. Partial, corrupt, unversioned, or otherwise invalid safetensors/config pairs fail closed and never fall back to a pickle; move those safe artifacts aside and run, for example:

python -m demucs_mlx.mlx_convert htdemucs --output-dir ~/.cache/demucs-mlx

Model trust boundary

Conversion requires PyTorch 2.6 or newer before any checkpoint is downloaded or deserialized. Official packages retain filename-hash verification and are loaded with weights_only=True plus a scoped allowlist of exact Demucs classes and narrowly needed compatibility types. The package shape, exact model class, constructors, and ordinary or quantized state are validated before trusted Demucs code constructs a model. There is no unrestricted fallback.

Installed PyTorch, Demucs, NumPy, optional DiffQ quantization code, MLX, and the packaged official model registry are inside the trust boundary. Arbitrary checkpoint globals and local pickle caches are not trusted. Restricted loading prevents executable pickle globals; it is not a resource-exhaustion sandbox for otherwise valid tensor files.

Documentation

  • API reference: docs/api.md
  • Development workflow: docs/development.md
  • Platform notes: docs/platform.md

License

MIT. Based on Demucs by Meta Research. See LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

demucs_mlx-1.4.6.tar.gz (76.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

demucs_mlx-1.4.6-py3-none-any.whl (73.8 kB view details)

Uploaded Python 3

File details

Details for the file demucs_mlx-1.4.6.tar.gz.

File metadata

  • Download URL: demucs_mlx-1.4.6.tar.gz
  • Upload date:
  • Size: 76.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for demucs_mlx-1.4.6.tar.gz
Algorithm Hash digest
SHA256 46bff29f84e40b83ee5f859f501ebf2a9abf479c5ff0ba7f0ccabbd8953e3d97
MD5 9333ecb1415fe9eb4e8bffd495c8b9dc
BLAKE2b-256 2ce4761c898a3637d480b142a6f287f20b19a4aa9b8c886a9e29f0cc642004aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for demucs_mlx-1.4.6.tar.gz:

Publisher: release-pypi.yml on ssmall256/demucs-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file demucs_mlx-1.4.6-py3-none-any.whl.

File metadata

  • Download URL: demucs_mlx-1.4.6-py3-none-any.whl
  • Upload date:
  • Size: 73.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for demucs_mlx-1.4.6-py3-none-any.whl
Algorithm Hash digest
SHA256 4e7ec8836ff8dae68ee9ac763659508a3b25eefdf9b1c2c3f66485efba25e3ec
MD5 90673201c61b5b02acbd551318d7d2f2
BLAKE2b-256 c75e32c2b36ecdd5f588020610dab8586203acb9d9f1928401bd101620b39789

See more details on using hashes here.

Provenance

The following attestation bundles were made for demucs_mlx-1.4.6-py3-none-any.whl:

Publisher: release-pypi.yml on ssmall256/demucs-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.4.6 This release

2 files

1.4.5

2 files

1.4.4

2 files

1.4.3

2 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page