Welcome Guest

Pages: 1
Auto rename track
10mlPostNovember 29, 2015, 21:35
Newbie
Posts: 2
Registered:
November 30, 2015, 02:24
Normal topicAuto rename track

Is there an easy way to auto rename track id from a predefine number
ex. I'd like all track from disk 1 to start at 101 and rename in sequence starting from 101
cd 2 should start at 201 etc....
I was able to do this with tag&rename in windows - auto fill track# for all files start from...(enter a number in the field)

Thanks

2MR2PostNovember 29, 2015, 22:10
Avatar photo
Administrator
Posts: 2085
Registered:
August 23, 2012, 19:27
Normal topicRe: Auto rename track

Actions>Renumber Tracks>From...

should do what you want from the UI.

If you want to automate it, it is relatively easy to write a simple action which would add (disc#*100) to each track number.

For example:

Evaluate Expression "(0\[Disc] * 100) + 0\[Track]" save integer result to Variable 1
Copy the Variable 1 field to the Track field

The 0's before the backslashes are to handle the case of an entirely empty disc or track field which would mess up the unescaped expression.

if you are missing track numbers altogether, you can preceed the above with a:

Renumber Tracks from 1 per disc

2MR2PostNovember 29, 2015, 22:30
Avatar photo
Administrator
Posts: 2085
Registered:
August 23, 2012, 19:27
Normal topicRe: Auto rename track

The Evaluate Expression statement has a bug when executing stepwise. This will be fixed in the next path or release. For now you can solve the problem by forcing the action to run grouped.

Force Grouped Execution
Evaluate Expression "(0\[Disc] * 100) + 0\[Track]" save integer result to Variable 1
Copy the Variable 1 field to the Track field

10mlPostNovember 30, 2015, 16:58
Newbie
Posts: 2
Registered:
November 30, 2015, 02:24
Normal topicRe: Auto rename track

Wow! that was easy, thank you

Pages: 1
Mingle Forum by Cartpauj | Version: 1.1.0beta | Page loaded in: 0.01 seconds.