-
I know that for albums you can use %aunique for generating unique filenames for different albums. Is there something equivalent for singletons? I have a couple of standalone tracks from the same artist and with the same title, like for example 1 and 2, and > beet move -p ugo
Moving 1 item (1 already in place).
Source Destination
<LIBRARY>/Non-Album/Ugo Sforza/Fantasy on Veni Creator Spiritus, Op 7.1.mp3 -> <LIBRARY>/Non-Album/Ugo Sforza/Fantasy on Veni Creator Spiritus, Op 7.mp3
> beet move ugo
Moving 1 item (1 already in place).
> beet move -p ugo
Moving 1 item (1 already in place).
Source Destination
<LIBRARY>/Non-Album/Ugo Sforza/Fantasy on Veni Creator Spiritus, Op 7.2.mp3 -> <LIBRARY>/Non-Album/Ugo Sforza/Fantasy on Veni Creator Spiritus, Op 7.mp3
> beet move ugo
Moving 1 item (1 already in place).
> beet move -p ugo
Moving 1 item (1 already in place).
Source Destination
<LIBRARY>/Non-Album/Ugo Sforza/Fantasy on Veni Creator Spiritus, Op 7.1.mp3 -> <LIBRARY>/Non-Album/Ugo Sforza/Fantasy on Veni Creator Spiritus, Op 7.mp3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Very interesting! We don't currently have an analog to Barring that, one option would be to think of some distinguishing field you'd like to use in your filenames for these tracks. Then you could manually mark them as "ambiguous," using something like paths:
ambig:1: Non-Album/$artist/$title - $catalognum …or whatever, replacing |
Beta Was this translation helpful? Give feedback.
Very interesting! We don't currently have an analog to
%aunique
, which is a surprisingly complicated set of functionality, for singletons instead of albums. It would certainly be interesting to consider!Barring that, one option would be to think of some distinguishing field you'd like to use in your filenames for these tracks. Then you could manually mark them as "ambiguous," using something like
beet modify ambig=1 Fantasy on Veni Creator Spiritus, Op 7
. Then, in thepaths:
section of your config, you could add an extra path template just for this kind of track:…or whatever, replacing
$catalognum
with the disambiguating field y…