This interface represents the basic data structure for the default audiolibrary functionality.
Some audio file tagging systems allow to specify multiple values for one type of information. The artist for example. Some songs may be a cooperation of two or more artists. Sometimes a tagging user wants to specify them in the tag without making one long text string.
For that kind of fields, the
commonly used fields have adequate methods for adding values. But it is possible the underlying implementation does not support that kind of storing multiple values.
Code Examples: AudioFile file = AudioFileIO.read(new File("C:\\test.mp3")); Tag tag = file.getTag();
@author Rapha�l Slinckx