Some checks failed
CodeQL / Analyze (go) (push) Successful in 6m28s
Docker Image / build-docker (push) Failing after 13m26s
Lint and Testing / lint (push) Successful in 11m17s
Lint and Testing / test (push) Successful in 11m17s
Lint and Testing / golangci (push) Successful in 2m40s
49 lines
1.9 KiB
Modula-2
49 lines
1.9 KiB
Modula-2
module go-whisper-api
|
|
|
|
go 1.26
|
|
|
|
require (
|
|
github.com/Eyevinn/mp4ff v0.51.0
|
|
github.com/ggerganov/whisper.cpp/bindings/go v0.0.0-20230606002726-57543c169e27
|
|
github.com/go-audio/audio v1.0.0
|
|
github.com/go-audio/wav v1.1.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gopxl/beep v1.4.1
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/k2-fsa/sherpa-onnx-go v1.13.2
|
|
github.com/mattn/go-isatty v0.0.20
|
|
github.com/olivier-w/climp-aac-decoder v0.1.0
|
|
github.com/pion/opus v0.0.0-20260601214817-71d58474cec8
|
|
github.com/rs/zerolog v1.35.0
|
|
github.com/skrashevich/go-aac v0.1.0
|
|
github.com/urfave/cli/v2 v2.27.7
|
|
github.com/yalue/onnxruntime_go v1.24.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/go-audio/riff v1.0.0 // indirect
|
|
github.com/hajimehoshi/go-mp3 v0.3.4 // indirect
|
|
github.com/icza/bitio v1.1.0 // indirect
|
|
github.com/jfreymuth/oggvorbis v1.0.5 // indirect
|
|
github.com/jfreymuth/vorbis v1.0.2 // indirect
|
|
github.com/k2-fsa/sherpa-onnx-go-linux v1.13.2 // indirect
|
|
github.com/k2-fsa/sherpa-onnx-go-macos v1.13.2 // indirect
|
|
github.com/k2-fsa/sherpa-onnx-go-windows v1.13.2 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mewkiz/flac v1.0.8 // indirect
|
|
github.com/mewkiz/pkg v0.0.0-20230226050401-4010bf0fec14 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
|
|
golang.org/x/sys v0.45.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
)
|
|
|
|
replace github.com/ggerganov/whisper.cpp/bindings/go => ./third_party/whisper.cpp/bindings/go
|