Simplified diarization pipeline using some pretrained models - audio file to diarized segments in a few lines of code
Project description
simple_diarizer
Simplified diarization pipeline using some pretrained models.
Made to be a simple as possible to go from an input audio file to diarized segments.
import soundfile as sf
import matplotlib.pyplot as plt
from simple_diarizer.diarizer import Diarizer
from simple_diarizer.utils import combined_waveplot
diar = Diarizer(
embed_model='xvec', # 'xvec' and 'ecapa' supported
cluster_method='sc' # 'ahc' and 'sc' supported
)
segments = diar.diarize(WAV_FILE, num_speakers=NUM_SPEAKERS)
signal, fs = sf.read(WAV_FILE)
combined_waveplot(signal, fs, segments)
plt.show()
Install
Simplified diarization is available on PyPI:
pip install simple-diarizer
Source Video
"Some Quick Advice from Barack Obama!"
Pre-trained Models
The following pretrained models are used:
- Voice Activity Detection (VAD)
- Deep speaker embedding extraction
- (Optional/Experimental) Speech-to-text
- ESPnet Model Zoo
- English ASR model
- ESPnet Model Zoo
Demo
It can be checked out in the above link, where it will try and diarize any input YouTube URL.
Other References
- Spectral clustering methods lifted from https://github.com/wq2012/SpectralCluster
Planned Features
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file simple_diarizer-0.0.13-py3-none-any.whl
.
File metadata
- Download URL: simple_diarizer-0.0.13-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e331532a63ca9cd9ce98157c2a5c48e9ed2fbee683757298f678dd954e13278e |
|
MD5 | 52c1895510a8e995103390bdac3ad828 |
|
BLAKE2b-256 | ee333f214ea395176ccd2be3de075d6e242c3eb70c729b9ae832a5f0b6958533 |