Speech to Text for Node.js
Currently support Chinese only. Will add more language(en/etc) and more engine(now stt use baidu api) recently.
const stt = require('stt')
const speechStream = createReadStream('./test/fixture/测试.mp3')
stt(speechStream).then(text => {
console.log('STT: ' + text)
})
import { stt } from 'stt'
const speechStream = createReadStream('./test/fixture/测试.mp3')
const text = await stt(speechStream)
console.log('STT: ' + text)
Ffmpeg is required for converting the speech stream format.
2016© Huan LI https://git.io/zixia
MIT LICENSE