whisper node
0.3.1
node.js bindings to Openai的耳語。轉錄本地完成。
npm install whisper-node
npx whisper-node download
Windows的要求:從此處安裝make
命令。
import whisper from 'whisper-node' ;
const transcript = await whisper ( "example/sample.wav" ) ;
console . log ( transcript ) ; // output: [ {start,end,speech} ]
[
{
"start" : "00:00:14.310" , // time stamp begin
"end" : "00:00:16.480" , // time stamp end
"speech" : "howdy" // transcription
}
]
import whisper from 'whisper-node' ;
const filePath = "example/sample.wav" ; // required
const options = {
modelName : "base.en" , // default
// modelPath: "/custom/path/to/model.bin", // use model in a custom directory (cannot use along with 'modelName')
whisperOptions : {
language : 'auto' // default (use 'auto' for auto detect)
gen_file_txt : false , // outputs .txt file
gen_file_subtitle : false , // outputs .srt file
gen_file_vtt : false , // outputs .vtt file
word_timestamps : true // timestamp for every word
// timestamp_size: 0 // cannot use along with word_timestamps:true
}
}
const transcript = await whisper ( filePath , options ) ;
文件必須為.wav和16Hz
示例.mp3文件使用ffmpeg命令轉換: ffmpeg -i input.mp3 -ar 16000 output.wav
d.ts
文件中包括打字條字樣類型npm run dev
在'/src/test.ts'上運行nodemon和tsc
npm run build
- 運行TSC,輸出到'/dist',並允許sh授予'dist/download.js'