- accept(File) - Method in class entagged.audioformats.AudioFileFilter
-
Check wether the given file meet the required conditions (supported by the library OR directory).
- add(TagField) - Method in interface entagged.audioformats.Tag
-
Adds a tagfield to the structure.
It is not recommended to use this method for normal use of the
audiolibrary.
- addAlbum(String) - Method in interface entagged.audioformats.Tag
-
Adds an album to the tag.
- addArtist(String) - Method in interface entagged.audioformats.Tag
-
Adds an artist to the tag.
- addAudioFileModificationListener(AudioFileModificationListener) - Method in class entagged.audioformats.AudioFileIO
-
Adds an listener for all file formats.
- addComment(String) - Method in interface entagged.audioformats.Tag
-
Adds a comment to the tag.
- addGenre(String) - Method in interface entagged.audioformats.Tag
-
Adds a genre to the tag.
- addTitle(String) - Method in interface entagged.audioformats.Tag
-
Adds a title to the tag.
- addTrack(String) - Method in interface entagged.audioformats.Tag
-
Adds a track to the tag.
- addYear(String) - Method in interface entagged.audioformats.Tag
-
Adds a year to the Tag.
- AudioFile - Class in entagged.audioformats
-
This is the main object manipulated by the user representing an audiofile, its properties and its tag.
- AudioFile(File, EncodingInfo) - Constructor for class entagged.audioformats.AudioFile
-
These constructors are used by the different readers, users should not use them, but use the AudioFileIO.read(File)
method instead !.
- AudioFile(File, EncodingInfo, Tag) - Constructor for class entagged.audioformats.AudioFile
-
These constructors are used by the different readers, users should not use them, but use the AudioFileIO.read(File)
method instead !.
- AudioFile(String, EncodingInfo) - Constructor for class entagged.audioformats.AudioFile
-
These constructors are used by the different readers, users should not use them, but use the AudioFileIO.read(File)
method instead !.
- AudioFile(String, EncodingInfo, Tag) - Constructor for class entagged.audioformats.AudioFile
-
These constructors are used by the different readers, users should not use them, but use the AudioFileIO.read(File)
method instead !.
- AudioFileFilter - Class in entagged.audioformats
-
This is a simple FileFilter that will only allow the file supported by this library.
- AudioFileFilter() - Constructor for class entagged.audioformats.AudioFileFilter
-
- AudioFileIO - Class in entagged.audioformats
-
The main entry point for the Tag Reading/Writing operations, this class will
select the appropriate reader/writer for the given file.
- AudioFileIO() - Constructor for class entagged.audioformats.AudioFileIO
-
Creates an instance.
- get(String) - Method in interface entagged.audioformats.Tag
-
Returns a list of TagField
objects whose "id"
is the specified one.
- getAlbum() - Method in interface entagged.audioformats.Tag
-
- getArtist() - Method in interface entagged.audioformats.Tag
-
- getBitrate() - Method in class entagged.audioformats.AudioFile
-
Returns the bitrate of this AufioFile in kilobytes per second (KB/s).
- getBitrate() - Method in class entagged.audioformats.EncodingInfo
-
This method returns the bitrate of the represented audio clip in
"Kbps".
- getChannelNumber() - Method in class entagged.audioformats.AudioFile
-
Returns the number of audio channels contained in this AudioFile, 2 for example means stereo
- getChannelNumber() - Method in class entagged.audioformats.EncodingInfo
-
This method returns the number of audio channels the clip contains.
(The stereo, mono thing).
- getComment() - Method in interface entagged.audioformats.Tag
-
- getDefaultAudioFileIO() - Static method in class entagged.audioformats.AudioFileIO
-
This method returns the default isntance for static use.
- getEncodingType() - Method in class entagged.audioformats.AudioFile
-
Returns the encoding type of this AudioFile, this needs to be precisely specified in the future
- getEncodingType() - Method in class entagged.audioformats.EncodingInfo
-
Returns the encoding type.
- getExtraEncodingInfos() - Method in class entagged.audioformats.AudioFile
-
Returns the extra encoding infos of this AudioFile, this needs to be precisely specified in the future
- getExtraEncodingInfos() - Method in class entagged.audioformats.EncodingInfo
-
This method returns some extra information about the encoding.
This may not contain anything for some audio formats.
- getFields() - Method in interface entagged.audioformats.Tag
-
- getFirstAlbum() - Method in interface entagged.audioformats.Tag
-
- getFirstArtist() - Method in interface entagged.audioformats.Tag
-
- getFirstComment() - Method in interface entagged.audioformats.Tag
-
- getFirstGenre() - Method in interface entagged.audioformats.Tag
-
- getFirstTitle() - Method in interface entagged.audioformats.Tag
-
- getFirstTrack() - Method in interface entagged.audioformats.Tag
-
- getFirstYear() - Method in interface entagged.audioformats.Tag
-
- getGenre() - Method in interface entagged.audioformats.Tag
-
- getLength() - Method in class entagged.audioformats.AudioFile
-
Returns the length (duration) in seconds (s) of this AudioFile.Example: 241 seconds
- getLength() - Method in class entagged.audioformats.EncodingInfo
-
This method returns the duration of the represented audio clip in
seconds.
- getPreciseLength() - Method in class entagged.audioformats.AudioFile
-
Returns the length (duration) in seconds with fractions.
- getPreciseLength() - Method in class entagged.audioformats.EncodingInfo
-
This method returns the duration of the represented audio clip in seconds
(single-precision).
- getSamplingRate() - Method in class entagged.audioformats.AudioFile
-
Returns the sampling rate of this AudioFile in Hertz (Hz).
- getSamplingRate() - Method in class entagged.audioformats.EncodingInfo
-
This method returns the sample rate, the audio clip was encoded with.
- getTag() - Method in class entagged.audioformats.AudioFile
-
Returns the tag contained in this AudioFile, the Tag
contains any useful meta-data, like artist, album, title, etc.
- getTitle() - Method in interface entagged.audioformats.Tag
-
- getTrack() - Method in interface entagged.audioformats.Tag
-
- getYear() - Method in interface entagged.audioformats.Tag
-