wakecore
v0.1.0
Published
Open hotword detection for private voice systems
Maintainers
Readme
wakecore (Node.js)
Open hotword detection for private voice systems.
npm install wakecoreconst { Runtime } = require("wakecore");
const rt = Runtime.load("hey_computer.wake");
const frame = Buffer.alloc(rt.bytesPerFrame); // your audio frame here
const hit = rt.process(frame);
if (hit) console.log("wake!");
rt.close();The reference inference binary is distributed separately.
Set WAKECORE_NATIVE_DIR to its location.
MIT — see LICENSE.
