Initial push to gitea
This commit is contained in:
10
internal/transcribe/transcribe.go
Normal file
10
internal/transcribe/transcribe.go
Normal file
@@ -0,0 +1,10 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user