Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minsithu/burmese-voice
A vocie command ai library for Burmese language
https://github.com/minsithu/burmese-voice
artificial-intelligence burma burmese frontend javascript machine-learning myanmar tensorflow voice-recognition
Last synced: 3 months ago
JSON representation
A vocie command ai library for Burmese language
- Host: GitHub
- URL: https://github.com/minsithu/burmese-voice
- Owner: MinSiThu
- License: mit
- Created: 2023-10-21T17:34:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-31T11:43:26.000Z (about 1 year ago)
- Last Synced: 2024-04-24T07:24:43.809Z (9 months ago)
- Topics: artificial-intelligence, burma, burmese, frontend, javascript, machine-learning, myanmar, tensorflow, voice-recognition
- Language: JavaScript
- Homepage: https://burmese-voice.vercel.app
- Size: 10.9 MB
- Stars: 19
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# burmese-voice
A speech command ai library for Burmese language
Read the documentation [Here](https://burmese-voice.vercel.app/).
Download the model [Here](https://github.com/MinSiThu/burmese-voice/releases).The library currently can classify **6** burmese words by voice and one additional noise.
The voices are
- Go (သွား)
- Stop (ရပ်)
- Left (ဘယ်)
- Right (ညာ)
- On (ဖွင့်)
- Off (ပိတ်)
- Background Noise## Using BurmeseVoice Model
```js
let burmeseVoice;async function main(){
const URL = "http://localhost:8000/models/"; // URL must be absolute URL
burmeseVoice = new BurmeseVoice(URL)
await burmeseVoice.load();
console.log(burmeseVoice.getLabels());
}function init(){
burmeseVoice.listen((result)=>{
console.log(result);
const voice = burmeseVoice.getBestResult(result.scores);
console.log(voice);
});
}function stop(){
burmeseVoice.stopListening();
}main();
```