]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
Update README.md
authorGeorgi Gerganov <redacted>
Wed, 23 Nov 2022 07:52:36 +0000 (09:52 +0200)
committerGitHub <redacted>
Wed, 23 Nov 2022 07:52:36 +0000 (09:52 +0200)
README.md

index 003674a8b30bd8e9ad6001cbd72f8ef625a57407..a9e621bbe8f0320bd1eacada906b03cb4e56082e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -30,10 +30,14 @@ The entire implementation of the model is contained in 2 source files:
 - Transformer inference: [whisper.h](whisper.h) / [whisper.cpp](whisper.cpp)
 
 Having such a lightweight implementation of the model allows to easily integrate it in different platforms and applications.
-As an example, here is a video of running the model on an iPhone 13 device - fully offline, on-device:
+As an example, here is a video of running the model on an iPhone 13 device - fully offline, on-device: [whisper.objc](https://github.com/ggerganov/whisper.cpp/tree/master/examples/whisper.objc)
 
 https://user-images.githubusercontent.com/1991296/197385372-962a6dea-bca1-4d50-bf96-1d8c27b98c81.mp4
 
+Or you can even run it in the straigt in your browser: [talk.wasm](https://github.com/ggerganov/whisper.cpp/tree/master/examples/talk.wasm)
+
+https://user-images.githubusercontent.com/1991296/203411580-fedb4839-05e4-4474-8364-aaf1e9a9b615.mp4
+
 ## Implementation details
 
 - The core tensor operations are implemented in C ([ggml.h](ggml.h) / [ggml.c](ggml.c))