Hi, I'm on a Mac, these are the actions I can add, I don't have any "guess value" action
Adjust Cover
Case conversion
Convert Codepage
Export Cover
Format tag field
Import Cover
Import tag fields
Import text file
Merge duplicate fields
Remove duplicate fields
Remove fields
Remove fields except
Replace
Replace with Regular Expression
Set Cover Properties
Split tag field
Thanks a lot for your help, @ohrenkino but I'm at the starting point. I explained very clearly what I would like to do the first time I asked. That's exactly what I want to do, not something similar. Your answers don't help me to do exactly what I want to do. Thank you anyway.
I would like to know how can I create an Action group with these three actions inside:
Action 1. Assign Track number with a 0 in front (I know there is an "Assign track and disc numbers" button, but I want this as an Action. This action is for the "Track" tag.
Action 2. Get the "Title" tag from the filename. This action is for the "Title" tag.
Action 3. Remove 3 characters from the beginning of the title given by the second action. This action is for the "Title" tag, too.
Thanks again and sorry to bother and sorry for the hassle.
According to your generic example, the track number already contains the leading zero, so no additional work is required there. Both the track and title exist in this example and only a single action is required to assign both field values in your task.
@ohrenkino has provided the correct guidance already other than the Action name difference between the Mac and Win versions.
On a MAC, the Action is IMPORT TAG FIELDS. (Note this is similar in the Win version to the GUESS VALUES Action) Sourceformat: %_filename% Formatstring: %track% %title%
Edited:
If your actual use cases do not always include the leading zero in the filename you can expand this with a separate Action for FORMAT TAG FIELD to add it afterwards. Field: %track% Format: $num(%track%,2)
Format tag field for TRACK
Format string: $num(%track%,2)
See previous posts about "Import tag fields"
Will not be necessary if you use
Guessing pattern: %track% %title%
To remove the leading number from TITLE try
Replace with regular expression for TITLE
Search pattern: ^\d+\s
Replace with:
(leave empty)
Are you mixing up the filename and title here? The source was _FILENAME, and takes the first part "01" and puts that in the TRACK field, then the first space is ignored, then all remaining text "song name" is put to the TITLE field. There is no change to the origianl source info in _FILENAME in this request.
The problem was that I was selecting the Source Format and Formatstring with the "+" button to the right, when I copied and pasted it from here, it worked. Thank you very much, to all of you.
Excellent! Glad it's working now. If you use the + button, you'd still need to make sure to enter the characters that separate the individual fields, i.e., in your example, the blank between track and title.