Made a Command executor to run whisper, but it never executes whisper.
Tried two different inputs to the Command executor
Code: Select all
%comspec% /C "whisper "%s_source%" --model tiny --language no --output_format srt"
the other is:Process exited with error code: 1 ('whisper' is not recognized as an internal or external command,
operable program or batch file.
)
Code: Select all
whisper "%s_source%" --model tiny --language no --output_format srt
runningExecuting Dos command: whisper "D:\SVG.wav" --model tiny --language no --output_format srt
Code: Select all
whisper "D:\SVG.wav" --model tiny --language no --output_format srt
I'm guessing I'm missing some basic understanding how the Command executor works.
If anyone is interested in using OpenAi whisper on windows 10, I used these resources.
https://github.com/openai/whisper
https://www.assemblyai.com/blog/how-to- ... on-model/
https://phoenixnap.com/kb/install-pip-windows
Or if you just want to use it with GUI (on windows, mac os or liunx) use this.
https://github.com/chidiwilliams/buzz