diart
diart copied to clipboard
A python package to build AI-powered real-time audio applications
Fixes #80
When trying to run `diart` on some audio file that doesn't have a voice activity, I got an `IndexError: list index out of range`. Traceback: ``` Streaming 01047da6: 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 461/461...
## Problem Since `pyannote/segmentation` and `pyannote/embedding` seem to be aliases to the newest pyannote.audio releases, the instructions for reproducibility keep getting out of date and diart scripts don't allow you...
This PR addresses issue #9 and partly #68. ## Changelog - Add `WebSocketAudioSource` - Add `websockets>=10.3` dependency - Add websocket tutorial in the README - The tutorial works given https://github.com/pyannote/pyannote-core/pull/80...
## Problem As the codebase grows, it is difficult for a user to keep track of all the features and mix-and-match possibilities available. ## Idea Create a documentation page with...
Hi, Currently when I try to stream the predicted labels (as shown in your readme as well). The speed of your stream is almost 2x times faster than that of...
I'm currently working on a implementation where I occasionally receive raw byte data from a TCP socket. I want to pass this data into the pipeline but the current `AudioSource`:s...
Hi, Thanks for the repo! I wanted to know how to export the dataframe printed at last of benchmark into a csv file. Please add a option for exporting if...
Hello there, first, thank you for your great work! I was trying to reproduce the result that I obtain from https://huggingface.co/spaces/pyannote/pretrained-pipelines but using the diart modules to achieve the same...
Hello. I'm trying to use this code in mobile app(flutter). My implementation is as following: 1. Get the voice from mic of the mobile. 2. Convert voice into udp datagram...