tuffy / python-audio-tools

A collection of audio handling programs which work from the command line.
http://audiotools.sourceforge.net
GNU General Public License v2.0
249 stars 58 forks source link

Add performer_name to m4a tags #47

Open moubctez opened 9 years ago

moubctez commented 9 years ago

I think performer_name should be mapped to Album Artist for m4a files. Here 's the patch:

--- audiotools/m4a_atoms.py.orig    2014-12-30 00:01:59.000000000 +0100
+++ audiotools/m4a_atoms.py     2015-05-26 11:13:31.000000000 +0200
@@ -1080,6 +1080,7 @@
                               "artist_name": b"\xa9ART",
                               "composer_name": b"\xa9wrt",
                               "copyright": b"cprt",
+                              "performer_name": b"aART",
                               "year": b"\xa9day",
                               "comment": b"\xa9cmt"}

Kind regards, Adam

tuffy commented 9 years ago

I've added your fix, along with some unit tests for it, and pushed them out. Thanks!