Package com.googlecode.mp4parser.boxes.apple

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


                  if (discNum != null) {
                     metadata.set(XMPDM.DISC_NUMBER, discNum.getA());
                  }

                  // Compilation
                  AppleCompilationBox compilation = getOrNull(apple, AppleCompilationBox.class);
                  if (compilation != null) {
                      metadata.set(XMPDM.COMPILATION, (int)compilation.getValue());
                  }

                  // Comment
                  AppleCommentBox comment = getOrNull(apple, AppleCommentBox.class);
                  addMetadata(XMPDM.LOG_COMMENT, metadata, comment);
View Full Code Here

TOP

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

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.