/ pkg / fasterwhisper / init.go
init.go
 1  package fasterwhisper
 2  
 3  type FastwhisperProcessor struct {
 4  	WorkDir string // 生成中间文件的目录
 5  	Model   string
 6  }
 7  
 8  func NewFastwhisperProcessor(model string) *FastwhisperProcessor {
 9  	return &FastwhisperProcessor{
10  		Model: model,
11  	}
12  }