go.mod incorrect cannot download module
gokalper opened this issue · 2 comments
gokalper commented
A recent fix for ffmpeg 5.1 support merged the go.mod from another fork. Go will not download the module as it references the incorrect repo - github.com/reijnenhhfm/gmf
go get github.com/3d0c/gmf
go: downloading github.com/3d0c/gmf v0.0.0-20220906003747-3c1e70196c59
go: github.com/3d0c/gmf@v0.0.0-20220906003747-3c1e70196c59: parsing go.mod:
module declares its path as: github.com/reijnenhhfm/gmf
but was required as: github.com/3d0c/gmf
current go.mod:
module github.com/reijnenhhfm/gmf
go 1.12
require github.com/stretchr/testify v1.7.1
3d0c commented
Merged