From: Georgi Gerganov Date: Sat, 15 Oct 2022 06:40:08 +0000 (+0300) Subject: Update README.md (ref #50) X-Git-Tag: upstream/1.7.4~1958 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=36945162fa6c92e54928ce5278b6b64b9f1f7e73;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp Update README.md (ref #50) --- diff --git a/README.md b/README.md index 9c4dcc36..19de94f6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ High-performance inference of [OpenAI's Whisper](https://github.com/openai/whisp To build the main program, run `make`. You can then transcribe a `.wav` file like this: ```bash -$ ./main -f input.wav +./main -f input.wav ``` Before running the program, make sure to download one of the ggml Whisper models. For example: @@ -216,11 +216,23 @@ The `stream` tool samples the audio every half a second and runs the transcripti More info is available in [issue #10](https://github.com/ggerganov/whisper.cpp/issues/10). ```java -$ ./stream -m ./models/ggml-base.en.bin -t 8 --step 500 --length 5000 +./stream -m ./models/ggml-base.en.bin -t 8 --step 500 --length 5000 ``` https://user-images.githubusercontent.com/1991296/194935793-76afede7-cfa8-48d8-a80f-28ba83be7d09.mp4 +The `stream` tool depends on SDL2 library to capture audio from the microphone. You can build it like this: + +```bash +# Install SDL2 on Linux +sudo apt-get install libsdl2-dev + +# Install SDL2 on Mac OS +brew install sdl2 + +make stream +``` + ## Implementation details - The core tensor operations are implemented in C ([ggml.h](ggml.h) / [ggml.c](ggml.c))