Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mohammadmansour200/vosk.c
https://github.com/mohammadmansour200/vosk.c
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mohammadmansour200/vosk.c
- Owner: mohammadmansour200
- Created: 2024-12-03T06:20:57.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-03T07:17:18.000Z (2 months ago)
- Last Synced: 2024-12-03T08:23:41.240Z (2 months ago)
- Language: C
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# C CLI wrapper for VOSK speech recognition toolkit.
## Usage
Wav file should be in a PCM 16-bit mono format:
```bash
ffmpeg -i -ar 16000 -ac 1 -sample_fmt s16 .wav
``````bash
./vosk
```## Build
### 1. Download Vosk shared library
Download your own platform's shared lib: https://github.com/alphacep/vosk-api/releases
then move it to vosk folder### 2. Build the program using cmake
```bash
cmake -B build -S .
cmake --build build
```