alphacep / alphacep/vosk-api

PyPI package for VOSK is out of date and lacks fix for JSON output format

Aperta
#2,025 0 commenti 1 reazione 0 assegnatari Vedi su GitHub
Lingua principale
Jupyter Notebook
Stelle
15.1k
Fork
1.8k
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

Hey everyone,

The current version of VOSK on PyPI (0.3.45, Dec 14 2022) does not match the current release (0.3.50). Due to this, the fix made in 322a57b (Nov 27, 2023) is not present.

This causes VOSK to crash when attempting to output a JSON document as we attempt to append to `monologue["text"]` when we should be appending to `monologues["text"]`.

**Workaround**:
Edit `transcriber.py` manually and add the missing `s`:
```python
# Line 100 ⬇️
for part in result:
if part["text"] != "":
# change to "monologues["text"] += [part["text"]]" here!
monologue["text"] += part["text"]
```

This is my first time poking around here but this project seems super cool and I'm looking forward to playing with it!
_Edit: fix fixed line, I forgot the brackets_

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.