11 lines
308 B
Go
11 lines
308 B
Go
// Package transcribe converts a normalized WAV file into plain-text transcript.
|
|
package transcribe
|
|
|
|
import "context"
|
|
|
|
// Transcriber turns a 16kHz mono WAV at wavPath into a plaintext transcript.
|
|
type Transcriber interface {
|
|
Transcribe(ctx context.Context, wavPath string) (string, error)
|
|
Name() string
|
|
}
|