Package com.coremedia.iso.boxes.apple

Examples of com.coremedia.iso.boxes.apple.AppleTrackTitleBox


           // See http://atomicparsley.sourceforge.net/mpeg-4files.html and
           //  http://code.google.com/p/mp4v2/wiki/iTunesMetadata for more on these
           AppleItemListBox apple = getOrNull(meta, AppleItemListBox.class);
           if (apple != null) {
              // Title
              AppleTrackTitleBox title = getOrNull(apple, AppleTrackTitleBox.class);
              addMetadata(TikaCoreProperties.TITLE, metadata, title);

              // Artist
              AppleArtistBox artist = getOrNull(apple, AppleArtistBox.class);
              addMetadata(TikaCoreProperties.CREATOR, metadata, artist);
View Full Code Here


           // See http://atomicparsley.sourceforge.net/mpeg-4files.html and
           //  http://code.google.com/p/mp4v2/wiki/iTunesMetadata for more on these
           AppleItemListBox apple = getOrNull(meta, AppleItemListBox.class);
           if (apple != null) {
              // Title
              AppleTrackTitleBox title = getOrNull(apple, AppleTrackTitleBox.class);
              addMetadata(Metadata.TITLE, metadata, title);

              // Artist
              AppleArtistBox artist = getOrNull(apple, AppleArtistBox.class);
              addMetadata(Metadata.AUTHOR, metadata, artist);
View Full Code Here

TOP

Related Classes of com.coremedia.iso.boxes.apple.AppleTrackTitleBox

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.