From a127e899d6c606c8b35dcdc5b20112f9c8ee0ad4 Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Sun, 8 Jan 2023 12:03:18 -0600 Subject: [PATCH] Make first example and stream example easier to run Give an example of ./main that uses a sample file that's already there, and make the stream example clarify you need `make stream` --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3347638..f22724a 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Now build the [main](examples/main) example and transcribe an audio file like th make # transcribe an audio file -./main -f input.wav +./main -f samples/jfk.wav ``` --- @@ -307,6 +307,7 @@ The [stream](examples/stream) tool samples the audio every half a second and run More info is available in [issue #10](https://github.com/ggerganov/whisper.cpp/issues/10). ```java +make stream ./stream -m ./models/ggml-base.en.bin -t 8 --step 500 --length 5000 ```