From 331674159bd1e572dabc54114874c18803d0fafa Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Thu, 22 May 2014 16:43:59 +0200 Subject: [PATCH] Print all readable fields in info plugin This includes all audio properties (format, bit rate, channels, ...) too. --- beetsplug/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/info.py b/beetsplug/info.py index 11f605bdf..87e21f916 100644 --- a/beetsplug/info.py +++ b/beetsplug/info.py @@ -25,7 +25,7 @@ from beets import util def info(paths): # Set up fields to output. - fields = list(mediafile.MediaFile.fields()) + fields = list(mediafile.MediaFile.readable_fields()) fields.remove('art') fields.remove('images')