8 lines
293 B
Bash
8 lines
293 B
Bash
export P=${1:-1}
|
|
export MODEL=${2:-models/ggml-tiny.en.bin}
|
|
export WAV=${3:-git.d/samples/jfk.wav}
|
|
echo === RUST
|
|
time rust-whisper 2>&1 | grep -v ^whisper_ | grep ..
|
|
echo === C
|
|
time ./c-whisper -m $MODEL -f $WAV -t $P 2>&1 | grep -v ^whisper_ | grep -v ^system_info | grep -v ^main: | grep ..
|