```bash
# build the project
cmake -B build
-cmake --build build --config Release
+cmake --build build -j --config Release
# transcribe an audio file
./build/bin/whisper-cli -f samples/jfk.wav
```bash
# build with GGML_BLAS defined
cmake -B build -DGGML_BLAS=1
-cmake --build build --config Release
+cmake --build build -j --config Release
./build/bin/whisper-cli [ .. etc .. ]
```
```bash
# quantize a model with Q5_0 method
cmake -B build
-cmake --build build --config Release
+cmake --build build -j --config Release
./build/bin/quantize models/ggml-base.en.bin models/ggml-base.en-q5_0.bin q5_0
# run the examples as usual, specifying the quantized model file
```bash
cmake -B build -DWHISPER_SDL2=ON
-cmake --build build --config Release
+cmake --build build -j --config Release
./build/bin/whisper-stream -m ./models/ggml-base.en.bin -t 8 --step 500 --length 5000
```