-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can`t start server in windows #57
Comments
@systemoutprintlnhelloworld can you check if the onnx model exists |
can you try changing the download path here WhisperLive/whisper_live/vad.py Line 98 in 410b91d
and see if that works |
thanks for your reply! |
Just curious does these error cause issues in transcriptions? |
FYI the reason this doesn't work on windows is subprocess.run(["wget", "-O" workaround is download this: https://github.com/snakers4/silero-vad/raw/master/files/silero_vad.onnx and place it manually in your home directory ~.cache\whisper-live this might not be the only thing necessary for windows setup though, it's just the first problem i ran into running run_server.py. notes be sure to allow python in windows firewall. i was able to get the server running and confirmed 9090. i created a run_client.py from whisper_live.client import TranscriptionClient
client = TranscriptionClient(
"127.0.0.1", "9090", is_multilingual=False, lang="en", translate=False
)
client() i tried speaking and it did display my words, though it was slow. since i'm running on a VM and even though GPU/CUDA passthrough is enabled, i know whisper-faster runs faster in CPU mode on my machine with 4 threads on the tiny.en model. i am going to dig into see what i need to do to update this stuff on the server. thanks for making this project its exactly what i needed for mine |
here is the log after this code
from whisper_live.server import TranscriptionServer
server = TranscriptionServer()
server.run("0.0.0.0", 9090)
i have installed requirement from client.txt and server.txt,and i can not installed them from setup.sh,cause i am running server and client both in the same windwos system,as well as setup.py ,it error
Perhaps my account does not have write access to this directory
and i don`t installed cuda,is this error linked with this or something else?
Lokk forward for your early reply
The text was updated successfully, but these errors were encountered: