├── .env ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── Whisper Transcriber.spec ├── cuda_detector.py ├── debug_imports.py ├── dev_env ├── install_deps.bat ├── install_pip.bat ├── run_app.bat └── verify_gpu.bat ├── dev_with_embedded.py ├── ffmpeg_bin └── ffmpeg.exe ├── get-pip.py ├── installer.iss ├── python_embed ├── python-3.12.7-embed-amd64.zip ├── python-3.12.7-embed-arm64.zip └── python-3.12.7-embed-win32.zip ├── requirements.txt ├── resources └── app_icon.ico ├── setup_embedded_python.py ├── src ├── gui │ ├── __init__.py │ └── main_window.py ├── main.py └── run.py ├── tests └── test_main_window.py └── whisper-to-windows-PRD.md /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /Whisper Transcriber.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/Whisper Transcriber.spec -------------------------------------------------------------------------------- /cuda_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/cuda_detector.py -------------------------------------------------------------------------------- /debug_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/debug_imports.py -------------------------------------------------------------------------------- /dev_env/install_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/dev_env/install_deps.bat -------------------------------------------------------------------------------- /dev_env/install_pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/dev_env/install_pip.bat -------------------------------------------------------------------------------- /dev_env/run_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/dev_env/run_app.bat -------------------------------------------------------------------------------- /dev_env/verify_gpu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/dev_env/verify_gpu.bat -------------------------------------------------------------------------------- /dev_with_embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/dev_with_embedded.py -------------------------------------------------------------------------------- /ffmpeg_bin/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/ffmpeg_bin/ffmpeg.exe -------------------------------------------------------------------------------- /get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/get-pip.py -------------------------------------------------------------------------------- /installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/installer.iss -------------------------------------------------------------------------------- /python_embed/python-3.12.7-embed-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/python_embed/python-3.12.7-embed-amd64.zip -------------------------------------------------------------------------------- /python_embed/python-3.12.7-embed-arm64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/python_embed/python-3.12.7-embed-arm64.zip -------------------------------------------------------------------------------- /python_embed/python-3.12.7-embed-win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/python_embed/python-3.12.7-embed-win32.zip -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/resources/app_icon.ico -------------------------------------------------------------------------------- /setup_embedded_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/setup_embedded_python.py -------------------------------------------------------------------------------- /src/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/src/gui/__init__.py -------------------------------------------------------------------------------- /src/gui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/src/gui/main_window.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/src/main.py -------------------------------------------------------------------------------- /src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/src/run.py -------------------------------------------------------------------------------- /tests/test_main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/tests/test_main_window.py -------------------------------------------------------------------------------- /whisper-to-windows-PRD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoz-barry/whisper-for-windows/HEAD/whisper-to-windows-PRD.md --------------------------------------------------------------------------------