Initial commit of WhisperVoice

This commit is contained in:
Your Name
2026-01-24 17:03:52 +02:00
commit 9ff0e8d108
118 changed files with 6102 additions and 0 deletions

13
run_source.bat Normal file
View File

@@ -0,0 +1,13 @@
@echo off
echo Starting Whisper Voice (Source Mode)...
if not exist venv (
echo Venv not found. Creating...
python -m venv venv
call venv\Scripts\activate
pip install -r requirements.txt
) else (
call venv\Scripts\activate
)
python main.py
pause