|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ID3v2FormatException | |
helliker.id3 | |
net.sourceforge.neurosdbm.db.track |
Uses of ID3v2FormatException in helliker.id3 |
Methods in helliker.id3 that throw ID3v2FormatException | |
java.lang.String |
MP3File.getArtist()
Returns the artist of the mp3 if set and the empty string if not. |
java.lang.String |
MP3File.getAlbum()
Returns the album of the mp3 if set and the empty string if not. |
java.lang.String |
MP3File.getComment()
Returns the comment field of this mp3 if set and the empty string if not. |
java.lang.String |
MP3File.getGenre()
Returns the genre of this mp3 if set and the empty string if not. |
java.lang.String |
MP3File.getTitle()
Returns the title of this mp3 if set and the empty string if not. |
java.lang.String |
MP3File.getTrackString()
Returns the track exactly as the track field of the id3 tag reads. |
int |
MP3File.getTrack()
Returns an integer value of the track number. |
int |
MP3File.getNumTracks()
Although not a standard, sometimes track numbers are expressed as "x/y" where x is the track number and y is the total number of tracks on an album. |
java.lang.String |
MP3File.getYear()
Returns the year of this mp3 if set and the empty string if not. |
java.lang.String |
MP3File.getComposer()
Returns the composer of this mp3 if set and the empty string if not (id3v2 only). |
java.lang.String |
MP3File.getOriginalArtist()
Returns the original artist of this mp3 if set and the empty string if not (id3v2 only). |
java.lang.String |
MP3File.getCopyrightInfo()
Returns the copyright info of this mp3 if set and the empty string if not (id3v2 only). |
java.lang.String |
MP3File.getUserDefinedURL()
Returns the user defined url of this mp3 if set and the empty string if not (id3v2 only). |
java.lang.String |
MP3File.getEncodedBy()
Returns who encoded this mp3 if set and the empty string if not (id3v2 only). |
java.lang.String |
MP3File.getFrameDataString(java.lang.String id)
Returns the textual information contained in the frame specifed by the id. |
private void |
ID3v2Tag.parseFrames(java.io.RandomAccessFile raf)
Read the frames from the file and create ID3v2Frame objects from the data found. |
java.lang.String |
ID3v2Tag.getFrameDataString(java.lang.String id)
Returns the textual information contained in the frame specified by the id. |
private void |
ID3v2Frame.parseFlags(byte[] flags)
Read the information from the flags array. |
java.lang.String |
ID3v2Frame.getDataString()
If possible, this method attempts to convert textual part of the data into a string. |
private void |
ID3v2ExtendedHeader.readExtendedHeader(java.io.RandomAccessFile raf)
Read the information in the file's extended header |
private void |
ID3v2ExtendedHeader.parseFlags(byte[] flags)
Parse the extended header flag bytes |
Constructors in helliker.id3 that throw ID3v2FormatException | |
MP3File(java.lang.String fn)
Create an MP3File object that reads and writes to the file with the filename fn. |
|
MP3File(java.io.File mp3)
Create an MP3File object that reads and writes to the specified file. |
|
MP3File(java.lang.String fn,
int tagType)
Create an MP3File object that reads and writes to the file with the filename fn. |
|
MP3File(java.io.File mp3,
int tagType)
Create and MP3File object that reads and writes to the specified file. |
|
ID3v2Tag(java.io.File mp3,
long mpegOffset)
Create an id3v2 tag bound to the file provided as a parameter. |
|
ID3v2Frame(java.lang.String id,
byte[] flags,
byte[] data)
Create an ID3v2Frame with a specified id, a byte array containing the frame header flags, and a byte array containing the data for this frame. |
|
ID3v2ExtendedHeader(java.io.File mp3)
Create an extended header object from the file passed. |
Uses of ID3v2FormatException in net.sourceforge.neurosdbm.db.track |
Constructors in net.sourceforge.neurosdbm.db.track that throw ID3v2FormatException | |
MP3Track(java.io.File trackToAdd,
boolean rebuild,
java.lang.String path,
NeurosDevice device)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |