Add files via upload

This commit is contained in:
Sorrow446
2022-06-12 08:19:17 +01:00
committed by GitHub
parent 9af89ccd83
commit d93f2850ab
2 changed files with 496 additions and 0 deletions

20
structs.go Normal file
View File

@@ -0,0 +1,20 @@
package mp4tag
type Tags struct {
Album string
AlbumArtist string
Artist string
Comment string
Composer string
Cover []byte
Custom map[string]string
Delete []string
DiskNumber int
DiskTotal int
Genre string
Label string
Title string
TrackNumber int
TrackTotal int
Year string
}