-
Notifications
You must be signed in to change notification settings - Fork 0
ID Tag Update Plugin Codec Examples
dBpoweramp can pre-process, or update metadata, and ID Tags before using the dynamic naming feature. Before using the batch converter to reorganize files, it might be useful to first process the ID Tags and manipulate them.
This functionality is provided as part of dBpoweramp's Codec Central ^, documentation for [Arrange Audio] and [ID Tag Update] ^
If metadata is missing the artist, set to Unknown Artist
IF Artist=
SET Artist=Unknown Artist
If metadata is missing the album artist, copy it from artist. If both are missing, it might be possible to cascade the logic, so first artist is set to Unknown Artist, as above, and then this logic propagates to also set the album artist to Unknown Artist.
IF Album Artist=
SET Album Artist=[artist]
IF Album Artist=
SET Album Artist=Unknown Artist ([cddb_id])
IF Album=
SET Album=Unknown Album ([cddb_id])
Set Genre to only Christmas
IFCONTAINS Album=Christmas
SET Genre=Christmas
Add Christmas to Genre List or Multiple Genre
IFCONTAINS Album=Christmas
SET Genre=Christmas;[genre]
or depending on your library/ music player
IFCONTAINS Album=Christmas
SET Genre=Christmas/[genre]