mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
a13a7da5ad
* rebase and add simple python interface * moved python files to examples/python
7 lines
189 B
Python
7 lines
189 B
Python
import whisper_processor
|
|
|
|
try:
|
|
result = whisper_processor.process_audio("./audio/wake_word_detected16k.wav", "base.en")
|
|
print(result)
|
|
except Exception as e:
|
|
print(f"Error: {e}") |