Minor update

- added transcription folder with checker and transcription modules
- logger is a separated module now
This commit is contained in:
2025-09-06 23:36:33 +03:00
parent 6b05918895
commit ecbbbfd5d1
9 changed files with 437 additions and 139 deletions
+13 -1
View File
@@ -1 +1,13 @@
# empty((
import tkinter as tk
root = tk.Tk()
root.title("Audio Transcriptor")
root.geometry("800x600")
path_entry = tk.Entry(root, width=40)
path_entry.pack(padx=10, pady=(5, 10))
transcribe_button = tk.Button(text="Transcribe")
transcribe_button.pack(anchor="e", rely=25, relx=15)
root.mainloop()