diff --git a/README.md b/README.md index c9a3b4c2..a461cd35 100644 --- a/README.md +++ b/README.md @@ -798,6 +798,7 @@ For more details, see the conversion script [models/convert-pt-to-ggml.py](model - [stlukey/whispercpp.py](https://github.com/stlukey/whispercpp.py) (Cython) - [AIWintermuteAI/whispercpp](https://github.com/AIWintermuteAI/whispercpp) (Updated fork of aarnphm/whispercpp) - [aarnphm/whispercpp](https://github.com/aarnphm/whispercpp) (Pybind11) + - [abdeladim-s/pywhispercpp](https://github.com/abdeladim-s/pywhispercpp) (Pybind11) - [x] R: [bnosac/audio.whisper](https://github.com/bnosac/audio.whisper) - [x] Unity: [macoron/whisper.unity](https://github.com/Macoron/whisper.unity) diff --git a/examples/python/whisper_processor.py b/examples/python/whisper_processor.py index 3e84e587..354b3c0d 100644 --- a/examples/python/whisper_processor.py +++ b/examples/python/whisper_processor.py @@ -21,7 +21,7 @@ def process_audio(wav_file, model_name="base.en"): if not os.path.exists(wav_file): raise FileNotFoundError(f"WAV file not found: {wav_file}") - full_command = f"./main -m {model} -f {wav_file} -np -nt" + full_command = f"./main -m {model} -f {wav_file} -nt" # Execute the command process = subprocess.Popen(full_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)