Package com.googlecode.mp4parser.boxes.apple

Examples of com.googlecode.mp4parser.boxes.apple.AppleArtist2Box


                  AppleArtistBox artist = getOrNull(apple, AppleArtistBox.class);
                  addMetadata(TikaCoreProperties.CREATOR, metadata, artist);
                  addMetadata(XMPDM.ARTIST, metadata, artist);

                  // Album Artist
                  AppleArtist2Box artist2 = getOrNull(apple, AppleArtist2Box.class);
                  addMetadata(XMPDM.ALBUM_ARTIST, metadata, artist2);

                  // Album
                  AppleAlbumBox album = getOrNull(apple, AppleAlbumBox.class);
                  addMetadata(XMPDM.ALBUM, metadata, album);
View Full Code Here

TOP

Related Classes of com.googlecode.mp4parser.boxes.apple.AppleArtist2Box

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.