Revamp: embedded console, faster-whisper, simplified install

This commit is contained in:
Kristofer Söderström
2026-03-02 17:02:16 +01:00
parent 7d3fe1ba26
commit f8cf42733d
12 changed files with 449 additions and 139 deletions

View File

@@ -1,7 +1,7 @@
from cx_Freeze import setup, Executable
build_exe_options = {
"packages": ['whisper','tkinter','customtkinter']
"packages": ['faster_whisper','tkinter','customtkinter']
}
executables = (
[
@@ -13,7 +13,7 @@ executables = (
)
setup(
name="Local Transcribe with Whisper",
version="1.2",
version="2.0",
author="Kristofer Rolf Söderström",
options={"build_exe":build_exe_options},
executables=executables