Browse Source

Updated README

main
Unbewohnte 3 years ago
parent
commit
1c983417cd
  1. 10
      README.md

10
README.md

@ -30,7 +30,7 @@ go install github.com/Unbewohnte/id3ed/...
# ∙ Usage # ∙ Usage
## ⚬ Decoding ID3v1.1 ## ⚬ Decoding ID3v1
``` ```
package main package main
@ -46,7 +46,7 @@ func main() {
} }
// extract ID3v1.1 tags // extract ID3v1.1 tags
mp3tags, err := id3v1.Getv11Tags(mp3file) mp3tags, err := id3v1.Getv1Tag(mp3file)
if err != nil { if err != nil {
panic(err) panic(err)
} }
@ -62,7 +62,7 @@ func main() {
} }
``` ```
## ⚬ Encoding ID3v1.1 ## ⚬ Encoding ID3v1
``` ```
package main package main
@ -79,7 +79,7 @@ func main() {
defer f.Close() defer f.Close()
// create your tags struct // create your tags struct
tags := &id3v1.ID3v11Tags{ tag := &id3v1.ID3v1Tag{
SongName: "mysong", SongName: "mysong",
Artist: "me", Artist: "me",
Album: "my album", Album: "my album",
@ -90,7 +90,7 @@ func main() {
} }
// write tags to file // write tags to file
err = tags.WriteToFile(f) err = tag.WriteToFile(f)
if err != nil { if err != nil {
panic(err) panic(err)
} }

Loading…
Cancel
Save