Closed xiebruce closed 11 months ago
Turns out that I didn't specify the encoding, now I solved the issue, I got the example from here
tag.AddAttachedPicture(id3v2.PictureFrame{
Encoding: id3v2.EncodingUTF8,
MimeType: "image/jpeg",
PictureType: id3v2.PTFrontCover,
Description: "Front cover",
Picture: metaData.AlbumPicB,
})
I use the following code, no error but no effect too (go version go1.21.0 darwin/amd64).
BTW, it seems I can set many Pictures? not only one?