Right now I'm doing something like this:
CODE
file_info_impl info;
track->get_info(info);
info.info_set("test_field","test_value");
... and then using update_info_async_simple to update the info. However, any fields I set with info_set are overwritten by this operation (I can add basic metadata fields just fine).
Is it possible to add custom technical info entries (or even update existing entries)? I don't want to use a metadata field because that writes directly to the file - I just want a field accessible through a title formatting variable.
Any thoughts?