Uses of Class
org.jaudiotagger.audio.exceptions.InvalidAudioFrameException

Packages that use InvalidAudioFrameException
org.jaudiotagger.audio   
org.jaudiotagger.audio.generic   
org.jaudiotagger.audio.mp3   
 

Uses of InvalidAudioFrameException in org.jaudiotagger.audio
 

Methods in org.jaudiotagger.audio that throw InvalidAudioFrameException
static AudioFile AudioFileIO.read(java.io.File f)
          

Read the tag contained in the given file.

 AudioFile AudioFileIO.readFile(java.io.File f)
          

Read the tag contained in the given file.

 

Uses of InvalidAudioFrameException in org.jaudiotagger.audio.generic
 

Methods in org.jaudiotagger.audio.generic that throw InvalidAudioFrameException
 AudioFile AudioFileReader.read(java.io.File f)
           
 

Uses of InvalidAudioFrameException in org.jaudiotagger.audio.mp3
 

Methods in org.jaudiotagger.audio.mp3 that throw InvalidAudioFrameException
 long MP3File.getMP3StartByte(java.io.File file)
          Used by tags when writing to calculate the location of the music file
static MPEGFrameHeader MPEGFrameHeader.parseMPEGHeader(java.nio.ByteBuffer bb)
          Parse the MPEGFrameHeader of an MP3File, file pointer returns at end of the frame header
static XingFrame XingFrame.parseXingFrame()
          Parse the XingFrame of an MP3File, cannot be called until we have validated that this is a XingFrame
 AudioFile MP3FileReader.read(java.io.File f)
           
 

Constructors in org.jaudiotagger.audio.mp3 that throw InvalidAudioFrameException
MP3AudioHeader(java.io.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(java.io.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(java.io.File file)
          Creates a new MP3File datatype and parse the tag from the given file Object.
MP3File(java.io.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(java.io.File file, int loadOptions, boolean readOnly)
          Creates a new MP3File datatype and parse the tag from the given file Object, files can be onpened read only if required.
MP3File(java.lang.String filename)
          Creates a new MP3File datatype and parse the tag from the given filename.