diff --git a/README.md b/README.md index dbc05e0..9e6392e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ +> **NOTE** +> +> This is a fork of [github.com/dhowden/tag](https://github.com/dhowden/tag) +> exposing some lower level functions publicly. + +## Install + +```shell +go get git.radioz.org/pisoj/dhowden-tag +``` + # MP3/MP4/OGG/FLAC metadata parsing library [![GoDoc](https://pkg.go.dev/badge/github.com/dhowden/tag)](https://pkg.go.dev/github.com/dhowden/tag) diff --git a/cmd/check/main.go b/cmd/check/main.go index 6f4c2af..59f2408 100644 --- a/cmd/check/main.go +++ b/cmd/check/main.go @@ -16,8 +16,8 @@ import ( "path/filepath" "strings" + tag "git.radioz.org/pisoj/dhowden-tag" "github.com/dhowden/itl" - "github.com/dhowden/tag" ) func decodeLocation(l string) (string, error) { diff --git a/cmd/sum/main.go b/cmd/sum/main.go index 3e7f3dc..ea0ad4e 100644 --- a/cmd/sum/main.go +++ b/cmd/sum/main.go @@ -12,7 +12,7 @@ import ( "fmt" "os" - "github.com/dhowden/tag" + tag "git.radioz.org/pisoj/dhowden-tag" ) func main() { diff --git a/cmd/tag/main.go b/cmd/tag/main.go index c34e319..2beff93 100644 --- a/cmd/tag/main.go +++ b/cmd/tag/main.go @@ -13,8 +13,8 @@ import ( "fmt" "os" - "github.com/dhowden/tag" - "github.com/dhowden/tag/mbz" + tag "git.radioz.org/pisoj/dhowden-tag" + "git.radioz.org/pisoj/dhowden-tag/mbz" ) var usage = func() { diff --git a/go.mod b/go.mod index e1aa28a..05ed556 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/dhowden/tag +module git.radioz.org/pisoj/dhowden-tag go 1.20 diff --git a/id3v1_test.go b/id3v1_test.go index 44fc933..e5afb7b 100644 --- a/id3v1_test.go +++ b/id3v1_test.go @@ -8,7 +8,7 @@ import ( "bytes" "testing" - "github.com/dhowden/tag/internal/id3v1_test" + "git.radioz.org/pisoj/dhowden-tag/internal/id3v1_test" ) //go:generate go-bindata -o internal/id3v1_test/id3v1_testdata.go -pkg id3v1_test -ignore .txt -ignore .go internal/id3v1_test diff --git a/mbz/mbz.go b/mbz/mbz.go index f0caeec..160886d 100644 --- a/mbz/mbz.go +++ b/mbz/mbz.go @@ -5,7 +5,7 @@ package mbz import ( "strings" - "github.com/dhowden/tag" + tag "git.radioz.org/pisoj/dhowden-tag" ) // Supported MusicBrainz tag names.