HyperBlaze

Results 2 issues of HyperBlaze

The project's very good! The ability to detect vowels from live audio is amazing! I'm currently trying to make project with spine runtime, and there seems no support with it....

My code is like this: `from whisper_live.server import TranscriptionServer from whisper_live.client import TranscriptionClient server = TranscriptionServer() client = TranscriptionClient( "localhost", 9090, is_multilingual=True, lang="ko", translate=False, ) server.run("localhost",9090) client()` After running this,...