Package | Description |
---|---|
org.jaudiotagger.audio |
Classes and interfaces generic to all audio formats.
|
org.jaudiotagger.audio.asf |
Classes for Microsoft Advanced Systems Format files.
|
org.jaudiotagger.audio.generic |
A miscellaneous collection of classes dealing with generic audio files and tags.
|
org.jaudiotagger.audio.mp3 |
Classes for MP3 files.
|
Modifier and Type | Method and Description |
---|---|
static AudioFile |
AudioFileIO.read(File f)
Read the tag contained in the given file.
|
static AudioFile |
AudioFileIO.readAs(File f,
String ext)
Read the tag contained in the given file.
|
AudioFile |
AudioFileIO.readFile(File f)
Read the tag contained in the given file.
|
AudioFile |
AudioFileIO.readFileAs(File f,
String ext)
Read the tag contained in the given file.
|
AudioFile |
AudioFileIO.readFileMagic(File f)
Read the tag contained in the given file.
|
static AudioFile |
AudioFileIO.readMagic(File f)
Read the tag contained in the given file.
|
Modifier and Type | Method and Description |
---|---|
AudioFile |
AsfFileReader.read(File f) |
Modifier and Type | Method and Description |
---|---|
AudioFile |
AudioFileReader.read(File f) |
AudioFile |
AudioFileReader2.read(File f) |
Modifier and Type | Method and Description |
---|---|
byte[] |
MP3File.getHash()
Calculates hash with algorithm "MD5".
|
byte[] |
MP3File.getHash(int buffer)
Calculates hash with given buffer size.
|
byte[] |
MP3File.getHash(String algorithm)
Calculates hash with given algorithm.
|
byte[] |
MP3File.getHash(String algorithm,
int bufferSize)
Calculates hash with algorithm "MD5", "SHA-1" or SHA-256".
|
long |
MP3File.getMP3StartByte(File file)
Used by tags when writing to calculate the location of the music file
|
static MPEGFrameHeader |
MPEGFrameHeader.parseMPEGHeader(ByteBuffer bb)
Parse the MPEGFrameHeader of an MP3File, file pointer returns at end of the frame header
|
static VbriFrame |
VbriFrame.parseVBRIFrame(ByteBuffer header)
Parse the VBRIFrame of an MP3File, cannot be called until we have validated that
this is a VBRIFrame
|
static XingFrame |
XingFrame.parseXingFrame(ByteBuffer header)
Parse the XingFrame of an MP3File, cannot be called until we have validated that
this is a XingFrame
|
AudioFile |
MP3FileReader.read(File f) |
AudioFile |
MP3FileReader.readMustBeWritable(File f)
Read
|
Constructor and Description |
---|
MP3AudioHeader(File seekFile)
Search for the first MP3Header in the file
The search starts from the start of the file, it is usually safer to use the alternative constructor that
allows you to provide the length of the tag header as a parameter so the tag can be skipped over.
|
MP3AudioHeader(File seekFile,
long startByte)
Search for the first MP3Header in the file
Starts searching from location startByte, this is because there is likely to be an ID3TagHeader
before the start of the audio.
|
MP3File(File file)
Creates a new MP3File datatype and parse the tag from the given file
Object.
|
MP3File(File file,
int loadOptions)
Creates a new MP3File dataType and parse the tag from the given file
Object, files must be writable to use this constructor.
|
MP3File(File file,
int loadOptions,
boolean readOnly)
Creates a new MP3File dataType and parse the tag from the given file
Object, files can be opened read only if required.
|
MP3File(String filename)
Creates a new MP3File datatype and parse the tag from the given filename.
|
Copyright © 2005–2020 jthink.net. All rights reserved.