Automatic Speech Recognition
pyannote.audio
pyannote
pyannote-audio-pipeline
audio
voice
speech
speaker
speaker-diarization
speaker-change-detection
voice-activity-detection
overlapped-speech-detection
Instructions to use DroolingPanda/speaker-diarization-3.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- pyannote.audio
How to use DroolingPanda/speaker-diarization-3.1 with pyannote.audio:
from pyannote.audio import Pipeline pipeline = Pipeline.from_pretrained("DroolingPanda/speaker-diarization-3.1") # inference on the whole file pipeline("file.wav") # inference on an excerpt from pyannote.core import Segment excerpt = Segment(start=2.0, end=5.0) from pyannote.audio import Audio waveform, sample_rate = Audio().crop("file.wav", excerpt) pipeline({"waveform": waveform, "sample_rate": sample_rate}) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,8 +19,8 @@ extra_gated_fields:
|
|
| 19 |
Website: text
|
| 20 |
---
|
| 21 |
|
| 22 |
-
Using this open-source
|
| 23 |
-
|
| 24 |
|
| 25 |
# 🎹 Speaker diarization 3.1
|
| 26 |
|
|
|
|
| 19 |
Website: text
|
| 20 |
---
|
| 21 |
|
| 22 |
+
Using this open-source model in production?
|
| 23 |
+
Consider switching to [pyannoteAI](https://www.pyannote.ai) for better and faster options.
|
| 24 |
|
| 25 |
# 🎹 Speaker diarization 3.1
|
| 26 |
|