Package com.googlecode.mp4parser.boxes.apple

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


                  // Genre
                  AppleGenreBox genre = getOrNull(apple, AppleGenreBox.class);
                  addMetadata(XMPDM.GENRE, metadata, genre);

                  // Year
                  AppleRecordingYear2Box year = getOrNull(apple, AppleRecordingYear2Box.class);
                  if (year != null) {
                      metadata.set(XMPDM.RELEASE_DATE, year.getValue());
                  }

                  // Track number
                  AppleTrackNumberBox trackNum = getOrNull(apple, AppleTrackNumberBox.class);
                  if (trackNum != null) {
View Full Code Here

TOP

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

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.