https://github.com/baristikir/whisper-zig
Example repository to demonstrate usage of whisper.cpp in Zig.
https://github.com/baristikir/whisper-zig
whisper-cpp zig
Last synced: about 2 months ago
JSON representation
Example repository to demonstrate usage of whisper.cpp in Zig.
- Host: GitHub
- URL: https://github.com/baristikir/whisper-zig
- Owner: baristikir
- Created: 2024-10-19T18:54:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T15:28:00.000Z (over 1 year ago)
- Last Synced: 2024-10-22T02:21:37.546Z (over 1 year ago)
- Topics: whisper-cpp, zig
- Language: C
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Whisper.cpp with Zig
This repository demonstrates the usage of
[whisper.cpp](https://github.com//ggerganov/whisper.cpp) in Zig.
# Usage
First download a Whisper model from
[huggingface](https://huggingface.co/ggerganov/whisper.cpp).
```shell
$ ./whisper.cpp/models/download-ggml.sh base.en
$ zig build && ./zig-out/bin/whisper-zig -- -m ggml-base.en.bin -f ./whisper.cpp/samples/jfk.wav
```
## Tests
```shell
$ ./whisper.cpp/models/download-ggml.sh base.en
$ zig build test
```
# Sources
- [whisper.cpp](https://github.com//ggerganov/whisper.cpp)
- [dr_wav](https://github.com/mackron/dr_libs)