Good morning all
Im trying to change a bit of my process of adding/tagging/renaming stuff and sort out a few extra steps. At the moment its like this:
Rip CD/Tape… or grab the Digital Download files >
Run Picard and Tag it >
Mp3Tag for a few things tag related > (want to cut this)
Rename and move in the wanted location with mp3tag (want to cut this too)
So my rename script from Mp3tag is like this:
%genre%\$replace($left(%albumartist%,1),Ä,A,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,С,C,Ć,C,$,#,0,#,*,#)\$replace($regexp(%albumartist%,(.*?)/(.*),$1\\- Features -\\mit $2),/,', ')\(%year%) %album%[\CD%discnumber%]\%track%. $left($replace($regexp(%artist%,(.*)/(.*),$1 & $2),/,', '),140) - %title%
Copy&Paste into Picard will result in an error “2:1: Unexpected Character”
Dont know if its the regexp stuff, but i would like to make the rename/move in Picard to. Before that i had to fix some stuff in Mp3tag to fit the rename for my needs. I just would like to have it like this:
Genre >
First letter of the Albumartist name (Numbers in # folder, variations of like ê é etc.
should be in E, âá in A etc.) and folder name should be Uppercase >
Albumartist (only the first one, if there are more than one move to “- Features -” folder
inside the first Albumartist and ignore any kind of feat. ft. with etc. etc. just use “,” as seperator
and on the last one, if there are more then one use “&”.
But dont replace and, with, X etc if they are part of a name/group just replace the seperators used for seperating multiple artist) >
Releasetype like Single,Album,EP (also only the first one if there are more) first Letter should be in Uppercase (EP should stay like that if possible) >
(Year) Album >
Track. Artists (all on that track and also use “,” as seperator and the last one “&”) - Title.ext
small example:
lets say the Track is something like this:
9. 2Pac feat. Biggie X Wu-Tang ft. WunTwo - Blablabla.mp3 from the EP XYZ from 2004, its on disc 2 and genre is Rap.
I want it like that:
Rap/#/2Pac/- Features -/Biggie, Wu-Tang & WuTwo/EP/[2004] XYZ/CD02/09. 2Pac, Biggie, Wu-Tang & WunTwo - Blablabla.mp3
I got it like that with mp3tag after a few changes like disc#, 1disc only i had to remove the 1.
If its 2 or more i had to change 1/2 to 1 and 2/2 to 2 etc. to get it working, same for track#.
I had to change 2/18 to 02 etc. (is it possible to use only 2 letters for albums with track count
below 100, and use 3 if there are more than 100? yea…i know just a few have that much, just to dont mess things up)
how could i achieve this with Picard without removing/changing alot of the tags?
(want to keep them as much “perfect” from MB as possible)
Im playing around with the picard script editor but i cant get some steps to work.
Here is what i got so far:
%genre%/
$upper($firstalphachar(%albumartist%))/
%albumartist%/
%releasetype%/
[$if(%date%,$left(%date%,4),0000)]
%album%/
$if(%discnumber%,CD%discnumber%,)/
$num(%tracknumber%,2). %artist% - %title%
the problems are here:
$upper($firstalphachar(%albumartist%))/
is this enough to change all the variations like âêé etc.? a quick test changes Ä to A and 23 to # but is this for EVERY variation?
the whole - Features - folder part is missing from the albumartist folder, dont know how to do this im lost here…
%releasetype%/
throws out album and also album; complilation etc. How can i set the first letter only in uppercase on like Album, Single? EP should stay EP. and how to cut it to only use the first one? “album; compilation” should be Album, “album; mixtape” should be Album etc.
$if(%discnumber%,CD%discnumber%,)/
how can i ignore this if theres only 1 disc, and how can i add a 0 before the number if its below 10? Like 01,02 etc (for sorting)
$num(%tracknumber%,2). %artist% - %title%
the conver from 2/18 to 02 seems to work, title also.
But how do i ignore all the types of Artist seperators and just use “,” and for the last one “&”?
I checked the option in picard to alow longer than 259 filenames (windows11) and to replace illegal characters and ASCII, is this save on all of them, or do i need to put something into the rename script? And if the filenames are to long, how can i change it, that it would cut the %artist% part in the end if there are to much artists on one track
A little check to replace stuff ends in an unwanted path.
An album named like “Das Gleiche Wie Immer, Bitte.” would end in “Das Gleiche Wie Immer, Bitte_” so a “.” gets replaced with “", but why? Its not an illegal char… how can i keep it? I changed the option and replaced all "” with “”, but even then… it gets cut.
And how can i change it, that illegal replaced chars dont get an “_”? if its really an illegal char i just want to erase it.
Stuff like this " \ / : * ? " < > |" should just get deleted to “”.
Sorry for the wall of text. just banging my head againts the editor…
I hope i did not forget something, and that this wouldnt be that much of work.
Maybe im just to stupid LOL