Revert "Add support for lyrics."

This commit is contained in:
David Howden
2015-05-19 08:03:36 +10:00
parent 90c5402ab5
commit c895efbcf8
7 changed files with 1 additions and 77 deletions
-8
View File
@@ -222,14 +222,6 @@ func (m metadataMP4) Disc() (int, int) {
return x, 0
}
func (m metadataMP4) Lyrics() string {
t, ok := m["\xa9lyr"]
if !ok {
return ""
}
return t.(string)
}
func (m metadataMP4) Picture() *Picture {
v, ok := m["covr"]
if !ok {