From aeb5c7ebe82de0de590b430b27545833ad712721 Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu@163.com>
Date: Tue, 3 Nov 2020 09:38:58 +0800
Subject: [PATCH 3/4] * emms-tag-editor.el (emms-tag-editor-tagfile-functions):
 Support mp3 albumartist, composer, performer and date.

---
 emms-tag-editor.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/emms-tag-editor.el b/emms-tag-editor.el
index e6b7394..49d2900 100644
--- a/emms-tag-editor.el
+++ b/emms-tag-editor.el
@@ -125,7 +125,11 @@ See also `emms-tag-editor-default-parser'.")
       (info-tracknumber . "T")
       (info-year        . "y")
       (info-genre       . "g")
-      (info-note        . "c")))
+      (info-note        . "c")
+      (info-albumartist . "-TPE2")
+      (info-composer    . "-TCOM")
+      (info-performer   . "-TOPE")
+      (info-date        . "-TDAT")))
     ("ogg" . emms-tag-editor-tag-ogg)
     ("flac" . emms-tag-editor-tag-flac))
   "An alist used when committing changes to tags in files.
-- 
2.20.1

