org.farng.mp3
Interface MP3Tag

All Known Implementing Classes:
AbstractID3, AbstractID3v1, AbstractID3v2, AbstractLyrics3, AbstractMP3Tag, FilenameTag, ID3v1, ID3v1_1, ID3v2_2, ID3v2_3, ID3v2_4, Lyrics3v1, Lyrics3v2

public interface MP3Tag

API for extracting various metdata from an MPEG audio file.

Version:
$Revision: 3 $ $Date: 2008-12-27 08:09:28 +1300 (Sat, 27 Dec 2008) $
Author:
Matt Magoffin (spamsqr@msqr.us)

Method Summary
 java.lang.String getAlbumTitle()
          Get the song's album title.
 java.lang.String getAuthorComposer()
          Get the author/composer.
 java.lang.String getLeadArtist()
          Get the lead artist.
 java.lang.String getSongComment()
          Get a song comment.
 java.lang.String getSongGenre()
          Get the genre.
 java.lang.String getSongLyric()
          Get the song lyrics.
 java.lang.String getSongTitle()
          Get the song title.
 java.lang.String getTrackNumberOnAlbum()
          Get the track number.
 java.lang.String getYearReleased()
          Get the year the song was released.
 java.util.Iterator<MP3MetadataItem> iterator()
          Get an iterator over all tags available.
 

Method Detail

iterator

java.util.Iterator<MP3MetadataItem> iterator()
Get an iterator over all tags available.

Returns:
iterator

getSongTitle

java.lang.String getSongTitle()
Get the song title.

Returns:
song title

getLeadArtist

java.lang.String getLeadArtist()
Get the lead artist.

Returns:
lead artist

getAlbumTitle

java.lang.String getAlbumTitle()
Get the song's album title.

Returns:
album title

getYearReleased

java.lang.String getYearReleased()
Get the year the song was released.

Returns:
year

getSongComment

java.lang.String getSongComment()
Get a song comment.

Returns:
comment

getSongGenre

java.lang.String getSongGenre()
Get the genre.

Returns:
genre

getTrackNumberOnAlbum

java.lang.String getTrackNumberOnAlbum()
Get the track number.

Returns:
track number

getSongLyric

java.lang.String getSongLyric()
Get the song lyrics.

Returns:
song lyrics

getAuthorComposer

java.lang.String getAuthorComposer()
Get the author/composer.

Returns:
author/composer