diff --git a/Whisper-AHK.ahk b/Whisper-AHK.ahk index 6be3f63..6a46374 100644 --- a/Whisper-AHK.ahk +++ b/Whisper-AHK.ahk @@ -21,7 +21,7 @@ Menu, Tray, Icon, %A_scriptDir%\Assets\Elegantthemes-Beautiful-Flat-Speaker.ico ScriptName = Whisper-AHK -ScriptVersion = V1.0 +ScriptVersion = V1.1 ; VARIABLES @@ -468,14 +468,17 @@ IniWrite, %TranscriptionLengthsSelected%, Settings.ini, %ScriptName%, Transcript text = Creating Required Directories ShowTooltipText(Text) +FileCreateDir, %AudioFilesDIR%\Logs +FileCreateDir, %AudioFilesDIR%\WAVFiles +/* FileCreateDir, %AudioFilesDIR%\Transcriptions FileCreateDir, %AudioFilesDIR%\Transcriptions\Logs FileCreateDir, %AudioFilesDIR%\Transcriptions\Large FileCreateDir, %AudioFilesDIR%\Transcriptions\Medium FileCreateDir, %AudioFilesDIR%\Transcriptions\Small FileCreateDir, %AudioFilesDIR%\Transcriptions\Base -FileCreateDir, %AudioFilesDIR%\WAVFiles +*/ text = Starting Transcription ShowTooltipText(Text) @@ -518,9 +521,9 @@ loop % SelectedAudioFilesArray.Length() { ; create filepaths where outputs will be saved to - OutputPath = %AudioFilesDIR%\Transcriptions\%ModelName%\%OutNameNoExt% + OutputPath = %AudioFilesDIR%\%OutNameNoExt%.%ModelName% OutputModelTxtFile = %OutputPath%.txt ; the filepath of one of the outputs - LogFileFP = %AudioFilesDIR%\Transcriptions\Logs\%OutNameNoExt%_%ModelName%.log + LogFileFP = %AudioFilesDIR%\Logs\%OutNameNoExt%_%ModelName%.log Text = Checking for Previous Transcription diff --git a/Whisper-AHK.exe b/Whisper-AHK.exe deleted file mode 100644 index 3b39028..0000000 Binary files a/Whisper-AHK.exe and /dev/null differ