Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikeesto/whispercpp-android
An Android app using whisper.cpp to do voice-to-text transcriptions
https://github.com/mikeesto/whispercpp-android
android kotlin speech-to-text whisper whisper-cpp
Last synced: 6 days ago
JSON representation
An Android app using whisper.cpp to do voice-to-text transcriptions
- Host: GitHub
- URL: https://github.com/mikeesto/whispercpp-android
- Owner: mikeesto
- License: mit
- Created: 2024-07-06T07:50:09.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-09T02:15:24.000Z (6 months ago)
- Last Synced: 2024-10-29T20:55:28.870Z (about 2 months ago)
- Topics: android, kotlin, speech-to-text, whisper, whisper-cpp
- Language: Kotlin
- Homepage:
- Size: 322 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# whispercpp-android
An Android app using [whisper.cpp](https://github.com/ggerganov/whisper.cpp/) to do voice-to-text transcriptions.
## Usage
1. Download a model from [here](https://huggingface.co/ggerganov/whisper.cpp) and place it in the `app/src/main/assets/models` folder. Tiny and base models work best.
2. This project relies on the `whisper.cpp` library to be built for Android. Clone the [whisper.cpp repository](https://github.com/ggerganov/whisper.cpp/) and then set the `WHISPER_CPP_DIR` environment variable to the path of the repository. In Android Studio you can do this by going to Settings -> Build, Execution, Deployment -> Gradle-Android Compiler -> Command-line Options and adding the following line:
```
-DWHISPER_CPP_DIR=/path/to/whisper.cpp
```3. Select the `release` active build variant, and use Android Studio to run and deploy to your device.