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

Packages that use CannotReadException
org.jaudiotagger.audio   
org.jaudiotagger.audio.flac   
org.jaudiotagger.audio.generic   
org.jaudiotagger.audio.mp4   
org.jaudiotagger.audio.mp4.atom   
org.jaudiotagger.audio.ogg   
org.jaudiotagger.audio.ogg.util   
org.jaudiotagger.tag.vorbiscomment   
 

Uses of CannotReadException in org.jaudiotagger.audio
 

Methods in org.jaudiotagger.audio that throw CannotReadException
static void AudioFileIO.delete(AudioFile f)
          

Delete the tag, if any, contained in the given file.

 void AudioFileIO.deleteTag(AudioFile f)
          

Delete the tag, if any, contained in the given file.

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 CannotReadException in org.jaudiotagger.audio.flac
 

Methods in org.jaudiotagger.audio.flac that throw CannotReadException
 int FlacInfoReader.countMetaBlocks(java.io.File f)
          Count the number of metadatablocks, useful for debugging
static void FlacStream.findStream(java.io.RandomAccessFile raf)
          Reads the stream block to ensure it is a flac file
 FlacTag FlacTagReader.read(java.io.RandomAccessFile raf)
           
 GenericAudioHeader FlacInfoReader.read(java.io.RandomAccessFile raf)
           
 

Uses of CannotReadException in org.jaudiotagger.audio.generic
 

Methods in org.jaudiotagger.audio.generic that throw CannotReadException
 void AudioFileWriter.delete(AudioFile f)
          Delete the tag (if any) present in the given file
 void AudioFileWriter.delete(java.io.RandomAccessFile raf, java.io.RandomAccessFile tempRaf)
          Delete the tag (if any) present in the given randomaccessfile, and do not close it at the end.
 AudioFile AudioFileReader.read(java.io.File f)
           
 

Uses of CannotReadException in org.jaudiotagger.audio.mp4
 

Methods in org.jaudiotagger.audio.mp4 that throw CannotReadException
 Mp4Tag Mp4TagReader.read(java.io.RandomAccessFile raf)
           
 GenericAudioHeader Mp4InfoReader.read(java.io.RandomAccessFile raf)
           
 

Uses of CannotReadException in org.jaudiotagger.audio.mp4.atom
 

Methods in org.jaudiotagger.audio.mp4.atom that throw CannotReadException
static void Mp4StcoBox.debugShowStcoInfo(java.io.RandomAccessFile raf)
           
 void Mp4StsdBox.processData()
           
 void Mp4Mp4aBox.processData()
           
 void Mp4MetaBox.processData()
           
 void Mp4DrmsBox.processData()
          Process direct data
 

Uses of CannotReadException in org.jaudiotagger.audio.ogg
 

Methods in org.jaudiotagger.audio.ogg that throw CannotReadException
 byte[] OggVorbisTagReader.convertToVorbisSetupHeaderPacket(long fileOffsetOfStartingOggPage, java.io.RandomAccessFile raf)
          The Vorbis Seup Header may span multiple(2) pages, athough it doesnt normally.
 void OggVorbisTagWriter.delete(java.io.RandomAccessFile raf, java.io.RandomAccessFile tempRaf)
           
 Tag OggVorbisTagReader.read(java.io.RandomAccessFile raf)
          Read the Logical VorbisComment Tag from the file
 OggPageHeader OggFileReader.readOggPageHeader(java.io.RandomAccessFile raf, int count)
          Return count Ogg Page header, count starts from zero count=0; should return PageHeader that contains Vorbis Identification Header count=1; should return Pageheader that contains VorbisComment and possibly SetupHeader count>=2; should return PageHeader containng remaining VorbisComment,SetupHeader and/or Audio
 OggVorbisTagReader.OggVorbisHeaderSizes OggVorbisTagReader.readOggVorbisHeaderSizes(java.io.RandomAccessFile raf)
          Calculate the size of the packet data for the comment and setup headers
 int OggVorbisTagReader.readOggVorbisRawSize(java.io.RandomAccessFile raf)
          Retrieve the Size of the VorbisComment packet including the oggvorbis header
 byte[] OggVorbisTagReader.readRawPacketData(java.io.RandomAccessFile raf)
          Retrieve the raw VorbisComment packet data, does not include the OggVorbis header
 void OggFileReader.summarizeOggPageHeaders(java.io.File oggFile)
          Summarize all the ogg headers in a file A useful utility function
 void OggVorbisTagWriter.write(Tag tag, java.io.RandomAccessFile raf, java.io.RandomAccessFile rafTemp)
           
 

Uses of CannotReadException in org.jaudiotagger.audio.ogg.util
 

Methods in org.jaudiotagger.audio.ogg.util that throw CannotReadException
static OggPageHeader OggPageHeader.read(java.io.RandomAccessFile raf)
           
 GenericAudioHeader OggInfoReader.read(java.io.RandomAccessFile raf)
           
 

Uses of CannotReadException in org.jaudiotagger.tag.vorbiscomment
 

Methods in org.jaudiotagger.tag.vorbiscomment that throw CannotReadException
 VorbisCommentTag VorbisCommentReader.read(byte[] rawdata, boolean isFramingBit)