Hello,
I don't know if it addressed on older post (couldn't find it) but I want to know if there is a way to add an index number to the renamed file when there is a conflict with another file having the same name.. ex (1), (2),..
Especially in the Acoustid section.
Thanx in advance.
Thanos
Add index number on renamed file.
Re: Add index number on renamed file.
Try this. Not sure how well it'll work for AcoustID matches though.
rednoah wrote: ↑03 Jan 2020, 19:34 The {di} duplicate index and {dc} duplicate count should do the job:Code: Select all
{if (dc > 1) ".part$di"}
![]()
Re: Add index number on renamed file.
I tried it but it does not seem to work there..
Re: Add index number on renamed file.
I suppose AcoustID will have many unique IDs for conceptually the same song, so it's a duplicate or not depending on your point of view.


EDIT:
AudioTrack "uniqueness" is defined by [album, artist, title] so [di, dc] will work:
Code: Select all
{album} - {artist} - {t}{if (dc > 1) ".$di"}