mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-04-16 07:18:30 +02:00
stream : update build instructions
This commit is contained in:
parent
6a52eaea74
commit
d17e7139d8
@ -5,7 +5,7 @@ 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).
|
More info is available in [issue #10](https://github.com/ggerganov/whisper.cpp/issues/10).
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./stream -m ./models/ggml-base.en.bin -t 8 --step 500 --length 5000
|
./build/bin/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
|
https://user-images.githubusercontent.com/1991296/194935793-76afede7-cfa8-48d8-a80f-28ba83be7d09.mp4
|
||||||
@ -15,7 +15,7 @@ https://user-images.githubusercontent.com/1991296/194935793-76afede7-cfa8-48d8-a
|
|||||||
Setting the `--step` argument to `0` enables the sliding window mode:
|
Setting the `--step` argument to `0` enables the sliding window mode:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./stream -m ./models/ggml-small.en.bin -t 6 --step 0 --length 30000 -vth 0.6
|
./build/bin/stream -m ./models/ggml-small.en.bin -t 6 --step 0 --length 30000 -vth 0.6
|
||||||
```
|
```
|
||||||
|
|
||||||
In this mode, the tool will transcribe only after some speech activity is detected. A very
|
In this mode, the tool will transcribe only after some speech activity is detected. A very
|
||||||
@ -40,21 +40,10 @@ sudo dnf install SDL2 SDL2-devel
|
|||||||
# Install SDL2 on Mac OS
|
# Install SDL2 on Mac OS
|
||||||
brew install sdl2
|
brew install sdl2
|
||||||
|
|
||||||
make stream
|
cmake -B build -DWHISPER_SDL2=ON
|
||||||
```
|
cmake --build build --config Release
|
||||||
|
|
||||||
Ensure you are at the root of the repo when running `make stream`. Not within the `examples/stream` dir
|
./build/bin/stream
|
||||||
as the libraries needed like `common-sdl.h` are located within `examples`. Attempting to compile within
|
|
||||||
`examples/steam` means your compiler cannot find them and it gives an error it cannot find the file.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
whisper.cpp/examples/stream$ make stream
|
|
||||||
g++ stream.cpp -o stream
|
|
||||||
stream.cpp:6:10: fatal error: common/sdl.h: No such file or directory
|
|
||||||
6 | #include "common/sdl.h"
|
|
||||||
| ^~~~~~~~~~~~~~
|
|
||||||
compilation terminated.
|
|
||||||
make: *** [<builtin>: stream] Error 1
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Web version
|
## Web version
|
||||||
|
Loading…
Reference in New Issue
Block a user