public final class ApePackage extends CustomPackage
Represents an APE v2 metadata package.
Please find more information at <a href="http://wiki.hydrogenaud.io/index.php?title=APE_key">http://wiki.hydrogenaud.io/index.php?title=APE_key</a>
.
Learn more
This example demonstrates how to read the APEv2 tag in an MP3 file.
try (Metadata metadata = new Metadata(Constants.MP3WithApe)) { MP3RootPackage root = metadata.getRootPackageGeneric(); if (root.getApeV2() != null) { System.out.println(root.getApeV2().getAlbum()); System.out.println(root.getApeV2().getTitle()); System.out.println(root.getApeV2().getArtist()); System.out.println(root.getApeV2().getComposer()); System.out.println(root.getApeV2().getCopyright()); System.out.println(root.getApeV2().getGenre()); System.out.println(root.getApeV2().getLanguage()); // ... } }
Modifier and Type | Method and Description |
---|---|
String |
getAbstract()
Gets the abstract link.
|
String |
getAlbum()
Gets the album.
|
String |
getArtist()
Gets the artist.
|
String |
getBibliography()
Gets the bibliography.
|
String |
getComment()
Gets the comment.
|
String |
getComposer()
Gets the composer.
|
String |
getConductor()
Gets the conductor.
|
String |
getCopyright()
Gets the copyright.
|
String |
getDebutAlbum()
Gets the debut album.
|
String |
getFile()
Gets the file.
|
String |
getGenre()
Gets the genre.
|
String |
getIsbn()
Gets the ISBN number with check digit.
|
String |
getIsrc()
Gets the International Standard Recording Number.
|
String |
getLanguage()
Gets the language.
|
String |
getPublicationRight()
Gets the publication right.
|
String |
getPublisher()
Gets the publisher.
|
String |
getRecordLocation()
Gets the record location.
|
String |
getSubtitle()
Gets the subtitle.
|
String |
getTitle()
Gets the title.
|
Integer |
getTrack()
Gets the track number.
|
addProperties, contains, findProperties, get_Item, getCount, getKeys, getKnowPropertyDescriptors, getMetadataType, getPropertyDescriptors, iterator, removeProperties, sanitize, setProperties, updateProperties
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public final String getTitle()
Gets the title.
public final String getSubtitle()
Gets the subtitle.
public final String getArtist()
Gets the artist.
public final String getAlbum()
Gets the album.
public final String getDebutAlbum()
Gets the debut album.
public final String getPublisher()
Gets the publisher.
public final String getConductor()
Gets the conductor.
public final Integer getTrack()
Gets the track number.
public final String getComposer()
Gets the composer.
public final String getComment()
Gets the comment.
public final String getCopyright()
Gets the copyright.
public final String getPublicationRight()
Gets the publication right.
public final String getFile()
Gets the file.
public final String getIsbn()
Gets the ISBN number with check digit. See more: https://en.wikipedia.org/wiki/International_Standard_Book_Number.
public final String getRecordLocation()
Gets the record location.
public final String getGenre()
Gets the genre.
public final String getIsrc()
Gets the International Standard Recording Number.
public final String getAbstract()
Gets the abstract link.
public final String getLanguage()
Gets the language.
public final String getBibliography()
Gets the bibliography.