Nikhil Mohite
Nikhil Mohite
@namanmistry Hey! it was not working with Python `3.11.x`, works fine with earlier versions.
We are getting the warnings because of this configuration https://github.com/agilescientific/redflag/blob/31a60435959c9c4de667edf71ee13d67cdce2a60/pyproject.toml#L15 #### When I ran mypy locally I got warnings like this, I don't see any mistake in the functions return...
If you are looking for a way to run whisperx completely offline, I have a script for that, Repo - https://github.com/nkilm/offline-whisperx You have to manually download the models and then...
You mean VAD(Voice Activity Detection)?
`pyannote.audio` models are gated on hg.co, you have to fill a form before you download the models. After this, you should be able to download the pyannote models.
It's because of the network issue. You can manually download the `.tiktoken` file and specify the location of this file in tiktoken using `TIKTOKEN_CACHE_DIR` environment variable. You can find a...
> > It's because of the network issue. You can manually download the `.tiktoken` file and specify the location of this file in tiktoken using `TIKTOKEN_CACHE_DIR` environment variable. > >...
@Yuxiang1995 Thanks! I'll checkout and let you know.
**Update:** Latest version of `.tiktoken` fixes this issue.
@veenified Currently [WriteTXT](https://github.com/m-bain/whisperX/blob/f2da2f858e99e4211fe4f64b5f2938b007827e17/whisperx/utils.py#L212) class writes only the transcripts to the file. We can modify it as follows, ```python class WriteTXT(ResultWriter): extension: str = "txt" def write_result(self, result: dict, file: TextIO,...