I’m pretty strict and tedious about my tags, which perhaps a lot of you are. I have some questions how to have columns which will show tags that does not follow my schemes and so on.
Basically I want to have two failcheck columns, one that shows all my needed tags that not present [Missing tags] and one that shows tags that does not follow my naming schemes [Wrong tags]
- [Missing tags] column should display:
IF
%album% OR
%albumartist% OR
%artist% OR
%discnumber% OR
%genre% OR
%publisher% OR
%title% OR
%track% OR
%year% OR
%_covers%
IS EMPTY
RETURN ”Missing tags”
Otherwise RETURN nothing (blank).
- [Wrong tags] column should display
IF
%artistsort% OR %barcode% OR %bpm% OR %encoder% OR %length%
IS PRESENT
RETURN ”Too many tags”
IF
%_id3v2_character_encoding%
IS NOT UTF-16
RETURN ”Charset”
IF
%discnumber%
DOES NOT CONTAIN /
RETURN ”Disc #”
IF
%year%
IS MORE THAN 4 CHARACTERS
RETURN ”Year”
IF
%_covers% IS MORE THAN 1
RETURN ”Cover”
Otherwise RETURN nothing (blank).
Have a good day folks! Cheers