Added Genre() to Metadata interface

This commit is contained in:
David Howden
2015-05-24 22:37:21 +10:00
parent ce0c1dc2f8
commit 8bdc82eff0
3 changed files with 5 additions and 0 deletions
+1
View File
@@ -67,6 +67,7 @@ func printMetadata(m tag.Metadata) {
fmt.Printf(" Album: %v\n", m.Album())
fmt.Printf(" Artist: %v\n", m.Artist())
fmt.Printf(" Composer: %v\n", m.Composer())
fmt.Printf(" Genre: %v\n", m.Genre())
fmt.Printf(" Year: %v\n", m.Year())
track, trackCount := m.Track()