Add support for lyrics.

Not supported in id3v1 and id3v22
This commit is contained in:
Xavier Henner
2015-05-18 09:32:54 +02:00
parent 7a80548ea8
commit 7fac753a70
7 changed files with 75 additions and 0 deletions
+4
View File
@@ -288,6 +288,10 @@ func (m *metadataFLAC) Disc() (int, int) {
return x, n
}
func (m *metadataFLAC) Lyrics() string {
return m.c["lyrics"]
}
func (m *metadataFLAC) Picture() *Picture {
return m.p
}