Hi, all
a shitty 3rd party software I cannot avoid using is stripping the metadata from a lot (but not all) of my files and I want to know if it's possible to re-write the stripped fields based on where they are located and their file name
Example
E:\Labels\Rekids\2021-01-29 - Immortal Daydream\04. Alan Fitzpatrick - The Underdog.aiff
from the above, I can gather the following
Label (Rekids)
Year (2021-01-29)
Album (Immortal Daydream)
Number (04)
Artist (Alan Fitzpatrick)
Title (The Underdog)
Is there a similar way I can introduce a file's catalogue number from its path?
Path example
*\ANJ022R Super8 - Alba (Maor Levi Remix)\file
Catalogue field
ANJ022R
As @jewahe already told you, there is no standard field for CATALOG in ID3v2.3 or v2.4
It depends on your playing software, if it reads your choosen tag for the catalog content.
The Discogs Tag Source uses CATALOGID if you're already using that. To actually do that from the example, you'd the converter "Filename - Tag" with a formatstring like
%CATALOGID% %DUMMY%\%DUMMY%
Please note (also @jewahe), that there is no %dummy1% or %dummy2% field. You can reuse the %dummy% field for every part you want to ignore during import.