@timur00kh/whisper.wasm 0.0.1 → 0.0.3

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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,7 @@ A TypeScript wrapper for [whisper.cpp](https://github.com/ggerganov/whisper.cpp)
16
16
  ## Installation
17
17
 
18
18
  ```bash
19
- npm install whisper.wasm
19
+ npm install @timur00kh/whisper.wasm
20
20
  ```
21
21
 
22
22
  ## Quick Start
@@ -186,6 +186,12 @@ Processes audio data in streaming fashion.
186
186
 
187
187
  Try the interactive demo:
188
188
 
189
+ **Live Demo:** https://timur00kh.github.io/whisper.wasm/
190
+
191
+ **Source Code:** [demo/index.html](demo/index.html)
192
+
193
+ **Local Development:**
194
+
189
195
  ```bash
190
196
  npm run dev:demo
191
197
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timur00kh/whisper.wasm",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "WebAssembly bindings for OpenAI Whisper speech recognition",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",