-
I am trying to import music files which have many tags missing, and am trying to get around the Why are fields like |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I made the decision to require at the least, what I considered, the minimum fields necessary to identify a track or album. This greatly simplifies many library functions that require or expect these minimum fields to be present.
If you'd like to set custom values for any missing fields e.g. "unknown title", you can use the Just be aware that any track with the same disc #, track #, and album will be considered a duplicate in the database. |
Beta Was this translation helpful? Give feedback.
-
Alright it makes sense if that is necessary for other functions. However I think the less assumptions we make about how someone organises/tags their music, the better. This makes it incompatible for existing libraries without that information already. Just considering the adding and storage, ultimately each track is pointing to one file path. I've have been writing a plugin to try and get around this and preserve any blank tags, whilst still using the DB and duplicate detection, and it works in my cases now, but it has turned very bodgey so I'm not happy with it. I've linked it here in case anyone else if interested. |
Beta Was this translation helpful? Give feedback.
I made the decision to require at the least, what I considered, the minimum fields necessary to identify a track or album. This greatly simplifies many library functions that require or expect these minimum fields to be present.
If you'd like to set custom values for any missing fields e.g. "unknown title", you can use the
read_custom_tags
hook in your plugin.Just be aware that any track with the same disc #, track #, and album will be considered a duplic…