I have an action to change tracks from 1/11 2/11 etc to
01,02 etc
Plus one to rename the filename based on if track exists or not, is it easy to join to actions together, thanks
Why don't you use the suggestion in
and the advice from
You can add as many Actions in an Action Group as you like.
But there is no dedicated process to "join" two existing, separated Actions into 1 new Action Group. You need to copy & paste the ones that should run one after the other.
remove spaces
replace with regular expression
Field: _TAG
pattern: ^(\s)+|(\s)+$
Replace With:
move -The- artist field
replace with regular expression
Field: _TAG
pattern: ^The, (.*)
Matches with: $1,The
change track to single digit
format value
TRACK
$num(%track%,2)
Write filename based on if track exists
_Filename
[%track% - ]%artist% - %title%
have 4 actions can these be added to an action group, use different fields
pattern: ^(\s)+|(\s)+$
^The, (.*)
Matches with: $1,The
$num(%track%,2)
[%track% - ]%artist% - %title%
thanks
I doubt that this action changes a lot of files. I know only very few that have a "The" followed immediatly by a comma.
Do you really want to remove the total tracks from the field TRACK or do you want to use the single track number only to modify the filename? If the latter is the case, then you do not need this action.
But modify
to
[$num(%track%,2) - ]%artist% - %title%
And in general, a look at the documentation is highly recommendable:
As you haven't seen my digital record collection, you wouldn't know if many of my tracks have The, ![]()
All I needed to know is if I can add all 4 actions to one action group
I e. Remove trailing & leading spaces
Adjust track from 2/11,3/11 etc to 02,03 etc.I Need the tracks written this way
Move The, in the artist field to the correct position
Finally re create the filename, having had all the previous actions implemented
Thanks
Yes.
Try it - much better than repeated questions without progress.
That's not very nice is it, Thanks for nothing ![]()
@reddwarf4ever Please understand that most of the community members here offering support are users volunteering their time and knowledge. We all do this freely but the expectation when you ask for help is to at least try the suggestions. If they don't work to meet your needs, reply with what you wanted and what you got.
Frustration starts to creep in on both sides when questions get repeated and the answers have already been posted.
You are not really cooperative IMHO.
You have got 2 suggestions (by @LyricsLover and me) and instead of telling us what you have tried or where you got stuck you ask the original question
again
So I see a repetition of the same question but no progress.
I think that the best results can be achieved in an iterative process in which each side adds a little more information based on the previous exchanges.
In the context of MP3tag one iteration is certainly to try the suggestion to see if it yields the expected results and if not then state in which respect expectation and result do not match.
On a footnote:
If you treat a non-existing TRACK number with $num(%track%,2) you get as result "00" in the field TRACK.
So the check with the square brackets when writing the filename will never start with the data from ARTIST but use the data from TRACK which now could be "00" as the previous action just set it.
If you want to cater for files without data in TRACK to get a special filename, then I would leave out the action to modify TRACK directly and use the suggested
to write the filename.
Another footnote:
As you say that you have a lot of files with "The," as leading string may that be as it is.
But I assume that there are a lot of files with an ordinary "The " (without the comma) at front - and these files will not be treated as the pattern does not match.
Is this intended?