3d0c / gmf

Go Media Framework
MIT License
889 stars 170 forks source link

go.mod incorrect cannot download module #154

Closed gokalper closed 2 years ago

gokalper commented 2 years ago

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
gokalper commented 2 years ago

created PR to fix this:

3d0c commented 2 years ago

Merged