Im on Windows running python 3.12.6 and i cant seem to get past this error
FileNotFoundError: Shared library with base name 'whisper' not found
The Code
from whisper_cpp_python import Whisper
whisper = Whisper(model_path="/Main Base/ggml-large-v2.bin")
output = whisper.transcribe(open('/Main Base/output.wav'))
print(output)
dose anybody know how to fix this issue?