I'd like to write a custom/user defined field in a mp4 file with jaudiotagger
For FLAC files, I can do this with VorbisCommentTagField
.
For MP3 files using ID3v24Tag
I can do this with a ID3v24Frame
as ID3v24Frames.FRAME_ID_USER_DEFINED_INFO
Is there any way to do this in mp4?
Looks like there is a Mp4FreeBox
, but I can't find a public API to use it.
Moreover, does jaudiotagger
expose any public API to set custom tags (key/value) in an unified way? Could not find any, and I need to treat each format independently.
Thank you