]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
Update README.md (ref #50)
authorGeorgi Gerganov <redacted>
Sat, 15 Oct 2022 06:40:08 +0000 (09:40 +0300)
committerGitHub <redacted>
Sat, 15 Oct 2022 06:40:08 +0000 (09:40 +0300)
README.md

index 9c4dcc365ace3587803fc63d56a415dba45b14bb..19de94f68bc9c0352eaabfbda08f9af8ed5359d2 100644 (file)
--- 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))