Disc # in album title tag

I get multiple folders for multiple disc good.
I want to add disc # inside album tag then discs kept separate
in player library.
Any help?

This may be a bit late but use this as a tagger script and it should fit to your description perfectly.

$if($gt(%totaldiscs%,1),$if(%discnumber%,$set(album,%album% \(disc %discnumber%\))))
3 Likes

Thank you phonebox this is perfect.
This Is trey.
I thought at first it needed some editing, and for an older version of Picard it did.
It created album (disc #) (disc #)
The script worked in Linux so I investigated and upgraded Widows Picard.
So for others reading this post if your using and older version and don’t to
upgrade. the script will be depending on your version

$if($gt(%totaldiscs%,1),$if(album,%album% (Disc %Discnumber%)))
to get
Album (disc #)
Also it added extra (disc #) to the folder name so I simply took that part out of the naming script.

1 Like

Thank you phonebox

It’s almost perfect It created

album (disc #) (disc #)

So the script is now

$if($gt(%totaldiscs%,1),$if(album,%album% (Disc %Discnumber%)))

album (disc #)

It adds to the folder name as well so I simply took that part

out of the naming script

Life is good thanx again