Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,9 +11,6 @@ High-performance inference of [OpenAI's Whisper](https://github.com/openai/whisp
|
|
| 11 |
- [C-style API](https://github.com/ggerganov/whisper.cpp/blob/master/whisper.h)
|
| 12 |
- Supported platforms: Linux, Mac OS (Intel and Arm), Raspberry Pi, Android
|
| 13 |
|
| 14 |
-
Incoming features:
|
| 15 |
-
- [Realtime audio input transcription](https://github.com/ggerganov/whisper.cpp/issues/10#issuecomment-1264665959)
|
| 16 |
-
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
To build the main program, run `make`. You can then transcribe a `.wav` file like this:
|
|
@@ -221,10 +218,10 @@ https://user-images.githubusercontent.com/1991296/193465125-c163d304-64f6-4f5d-8
|
|
| 221 |
|
| 222 |
## Implementation details
|
| 223 |
|
| 224 |
-
- The core tensor operations are implemented in C (
|
| 225 |
-
- The high-level C-style API is implemented in C++ (
|
| 226 |
-
- Simple usage is demonstrated in
|
| 227 |
-
- Sample real-time audio transcription from the microphone is demonstrated in
|
| 228 |
|
| 229 |
## Limitations
|
| 230 |
|
|
|
|
| 11 |
- [C-style API](https://github.com/ggerganov/whisper.cpp/blob/master/whisper.h)
|
| 12 |
- Supported platforms: Linux, Mac OS (Intel and Arm), Raspberry Pi, Android
|
| 13 |
|
|
|
|
|
|
|
|
|
|
| 14 |
## Usage
|
| 15 |
|
| 16 |
To build the main program, run `make`. You can then transcribe a `.wav` file like this:
|
|
|
|
| 218 |
|
| 219 |
## Implementation details
|
| 220 |
|
| 221 |
+
- The core tensor operations are implemented in C ([ggml.h](ggml.h) / [ggml.c](ggml.c))
|
| 222 |
+
- The high-level C-style API is implemented in C++ ([whisper.h](whisper.h) / [whisper.cpp](whisper.cpp))
|
| 223 |
+
- Simple usage is demonstrated in [main.cpp](main.cpp)
|
| 224 |
+
- Sample real-time audio transcription from the microphone is demonstrated in [stream.cpp](stream.cpp)
|
| 225 |
|
| 226 |
## Limitations
|
| 227 |
|