Skip to main content

Speaker diarization for Python — detect who spoke when in audio files. CPU-only, no GPU, no API keys, no account signup. Automatic speaker count detection.

Project description

diarize

PyPI version Python versions License codecov CI Docs

Speaker diarization for Python — answers "who spoke when?" in any audio file.

Runs on CPU. No GPU, no API keys, no account signup. Apache 2.0 licensed.

pip install diarize
from diarize import diarize

result = diarize("meeting.wav")
for seg in result.segments:
    print(f"  [{seg.start:.1f}s - {seg.end:.1f}s] {seg.speaker}")

~10.8% DER on VoxConverse (lower than pyannote's free models). Processes audio ~8x faster than real-time on CPU. Automatically detects the number of speakers.

Benchmarked on a single dataset (VoxConverse). Cross-dataset validation is in progress.

How diarize compares

diarize pyannote (free) pyannote (commercial)
License Apache 2.0 CC-BY-4.0 Commercial
GPU required No No (7x slower on CPU) No
HuggingFace account No Yes Yes
Auto speaker count Yes Yes Yes
DER (VoxConverse) ~10.8% ~11.2% ~8.5%
CPU speed (RTF) 0.12 0.86
Install pip install diarize pip install pyannote.audio pip install pyannote.audio

DER = Diarization Error Rate (lower is better). RTF = Real-Time Factor (lower is faster). pyannote numbers are self-reported from their benchmark page. Full methodology: benchmarks.

Quick Start

from diarize import diarize

result = diarize("meeting.wav")

print(f"Found {result.num_speakers} speakers")
for seg in result.segments:
    print(f"  [{seg.start:.1f}s - {seg.end:.1f}s] {seg.speaker}")

# Export to RTTM format
result.to_rttm("meeting.rttm")

Requires Python 3.9+. Supports WAV, MP3, FLAC, OGG, and other formats via soundfile/libsndfile. diarize pins a compatible torch/torchaudio range during install, so no extra manual pinning is required.

📖 Full documentation — installation, API reference, architecture, benchmarks.

API

result = diarize("meeting.wav")                # auto-detect speakers
result = diarize("call.mp3", num_speakers=2)   # known speaker count
result = diarize("panel.flac", min_speakers=3, max_speakers=8)

result.segments      # [Segment(start=0.5, end=4.2, speaker='SPEAKER_00'), ...]
result.num_speakers  # 3
result.speakers      # ['SPEAKER_00', 'SPEAKER_01', 'SPEAKER_02']
result.audio_duration  # 324.5

result.to_rttm("output.rttm")  # export to standard RTTM format
result.to_list()                # export as list of dicts (JSON-serializable)

Each Segment has .start, .end, .speaker, and .duration (all in seconds).

Full API reference: documentation

How It Works

Four-stage pipeline, all CPU, all open-source:

  1. Silero VAD (MIT) — detects speech segments
  2. WeSpeaker ResNet34-LM (Apache 2.0) — extracts 256-dim speaker embeddings via ONNX
  3. GMM BIC — estimates the number of speakers
  4. Spectral Clustering (scikit-learn, BSD) — assigns speaker labels

Details: How It Works

Benchmarks

Evaluated on VoxConverse dev set (216 files, 1–20 speakers):

Diarization Error Rate (DER)

System Weighted DER Notes
pyannote precision-2 ~8.5% Commercial license
diarize ~10.8% Apache 2.0, CPU-only, no API key
pyannote community-1 ~11.2% CC-BY-4.0, needs HF token
pyannote 3.1 (legacy) ~11.2% MIT, needs HF token

Speaker Count Estimation

GT Speakers Files Exact Match Within ±1
1 22 91% 95%
2 44 70% 91%
3 35 69% 97%
4 24 54% 88%
5 31 32% 87%
6–7 29 45% 79%
8+ 31 0% 26%
Overall 216 51% 81%

Full benchmark results, speed comparison, and methodology: benchmarks.

When to use something else

  • You need <9% DER. pyannote's commercial model (precision-2) achieves ~8.5%. If accuracy is the top priority and you have budget, use that.
  • Your audio has 8+ speakers. Automatic speaker count estimation degrades above 7 speakers. You can pass num_speakers explicitly, but test carefully.
  • You need overlapping speech detection. diarize assigns each segment to one speaker. Overlapping speech is not modeled.
  • You need GPU-accelerated throughput. diarize is CPU-only by design. For processing thousands of hours with GPU infrastructure, NeMo or pyannote on GPU will be faster.

Roadmap

Current benchmarks are based on VoxConverse dev set only. We are actively working on:

  • Cross-dataset validation — AMI, DIHARD III, CALLHOME, and other standard benchmarks in isolated environments
  • Speaker count estimation benchmarks — comparison of speaker counting accuracy against other systems
  • Broader system comparison — NeMo, WhisperX, and other diarization solutions
  • Streaming / real-time diarization — live audio streams with real-time speaker detection
  • Speaker identification — recognise known speakers across sessions using stored embeddings

Logging

diarize uses Python's standard logging module:

import logging
logging.basicConfig(level=logging.INFO)

License

Apache 2.0 License. See LICENSE for details.

All dependencies are permissively licensed:

  • Silero VAD: MIT
  • WeSpeaker: Apache 2.0
  • scikit-learn: BSD
  • PyTorch: BSD

Contributing

Contributions are welcome! Please open an issue or pull request on GitHub.

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

diarize-0.1.1.tar.gz (29.0 kB view details)

Uploaded Source

Built Distribution

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

diarize-0.1.1-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file diarize-0.1.1.tar.gz.

File metadata

  • Download URL: diarize-0.1.1.tar.gz
  • Upload date:
  • Size: 29.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for diarize-0.1.1.tar.gz
Algorithm Hash digest
SHA256 260b42a07654b5076171e928d83dc6954e76b0213fc3b19b585d4bf64a195d98
MD5 e0d11b451941b7b61883143f54b242d3
BLAKE2b-256 94e840e2737177969994850c7f1a4bcb2e3b1df358f916d29d6858c6fe4eaf2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diarize-0.1.1.tar.gz:

Publisher: publish.yml on FoxNoseTech/diarize

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

File details

Details for the file diarize-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: diarize-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for diarize-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 836d77a1b77a26561d19c803e29073a3c97b897b45518df90b1b4243408b2ec0
MD5 b9738319fa5ad0d992dbe8fae0571b77
BLAKE2b-256 4b8b566fe43952057419e532f289e19a66faba6ade16cf89c524d58b8e516b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for diarize-0.1.1-py3-none-any.whl:

Publisher: publish.yml on FoxNoseTech/diarize

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page