Skip to content

Chatie/stt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stt

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.

Quick Start

JavaScript

const stt = require('stt')

const speechStream = createReadStream('./test/fixture/测试.mp3')

stt(speechStream).then(text => {
  console.log('STT: ' + text)
})

TypeScript

import { stt } from 'stt'

const speechStream = createReadStream('./test/fixture/测试.mp3')

const text = await stt(speechStream)

console.log('STT: ' + text)

Requirement

Ffmpeg is required for converting the speech stream format.

Todo

Copyright

2016© Huan LI https://git.io/zixia

MIT LICENSE

Releases

No releases published

Packages

No packages published