whisper.rn 0.3.0-rc.7 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/cpp/ggml.c +4627 -1594
- package/cpp/ggml.h +427 -25
- package/cpp/whisper.cpp +226 -102
- package/cpp/whisper.h +30 -6
- package/package.json +1 -1
- package/whisper-rn.podspec +10 -6
package/README.md
CHANGED
|
@@ -21,7 +21,9 @@ React Native binding of [whisper.cpp](https://github.com/ggerganov/whisper.cpp).
|
|
|
21
21
|
npm install whisper.rn
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
For iOS, please re-run `npx pod-install` again.
|
|
25
|
+
|
|
26
|
+
For Android, it's recommended to use `ndkVersion = "24.0.8215888"` (or above) in your root project build configuration for Apple Silicon Macs. Otherwise please follow this trobleshooting [issue](./TROUBLESHOOTING.md#android-got-build-error-unknown-host-cpu-architecture-arm64-on-apple-silicon-macs).
|
|
25
27
|
|
|
26
28
|
For Expo, you will need to prebuild the project before using it. See [Expo guide](https://docs.expo.io/guides/using-libraries/#using-a-library-in-a-expo-project) for more details.
|
|
27
29
|
|