whisper.cpp/examples/addon.node
Borislav Stanimirov af5833e298
whisper : remove speed_up and phase_vocoder* functions (#2198)
* whisper : fix cast warning

* whisper : remove phase_vocoder functions, ref #2195

* whisper : remove speed_up from whisper_full_params, closes #2195
2024-05-31 11:37:29 +03:00
..
__test__ node : add flash_attn param (#2170) 2024-05-20 09:08:48 +03:00
.gitignore addon.node : using whisper as a Node.js addon (#443) 2023-02-04 09:10:25 +02:00
addon.cpp whisper : remove speed_up and phase_vocoder* functions (#2198) 2024-05-31 11:37:29 +03:00
CMakeLists.txt examples : fix node compilation (#2115) 2024-05-02 22:52:55 +01:00
index.js node : add flash_attn param (#2170) 2024-05-20 09:08:48 +03:00
package.json examples : fix node compilation (#2115) 2024-05-02 22:52:55 +01:00
README.md examples : fix node compilation (#2115) 2024-05-02 22:52:55 +01:00

addon

This is an addon demo that can perform whisper model reasoning in node and electron environments, based on cmake-js. It can be used as a reference for using the whisper.cpp project in other node projects.

Install

npm install

Compile

Make sure it is in the project root directory and compiled with make-js.

npx cmake-js compile -T addon.node -B Release

For Electron addon and cmake-js options, you can see cmake-js and make very few configuration changes.

Such as appointing special cmake path:

npx cmake-js compile -c 'xxx/cmake' -T addon.node -B Release

Run

cd examples/addon.node

node index.js --language='language' --model='model-path' --fname_inp='file-path'

Because this is a simple Demo, only the above parameters are set in the node environment.

Other parameters can also be specified in the node environment.