@@ -66,6 +66,8 @@ def PositiveIntArg(i):
6666
6767 g .add_argument ("--composer" , dest = "composer" ,
6868 metavar = "STRING" , help = ARGS_HELP ["--composer" ])
69+ g .add_argument ("--conductor" , dest = "conductor" ,
70+ metavar = "STRING" , help = ARGS_HELP ["--conductor" ])
6971 g .add_argument ("--orig-artist" , dest = "orig_artist" ,
7072 metavar = "STRING" , help = ARGS_HELP ["--orig-artist" ])
7173 g .add_argument ("-d" , "--disc-num" , type = PositiveIntArg , dest = "disc_num" ,
@@ -566,6 +568,10 @@ def printTag(self, tag):
566568 tag .album_artist ))
567569 if tag .composer :
568570 printMsg ("%s: %s" % (boldText ("composer" ), tag .composer ))
571+
572+ if tag .conductor :
573+ printMsg ("%s: %s" % (boldText ("conductor" ), tag .conductor ))
574+
569575 if tag .original_artist :
570576 printMsg ("%s: %s" % (boldText ("original artist" ), tag .original_artist ))
571577
@@ -1170,6 +1176,7 @@ def _getTemplateKeys():
11701176 "--track-offset" : "Increment/decrement the track number by [-]N. "
11711177 "This option is applied after --track=N is set." ,
11721178 "--composer" : "Set the composer's name." ,
1179+ "--conductor" : "Set the conductor's name, mostly for orchestral or choir music." ,
11731180 "--orig-artist" : "Set the orignal artist's name. For example, a cover song can include "
11741181 "the orignal author of the track." ,
11751182}
0 commit comments