Package com.googlecode.mp4parser.boxes.apple

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


                  if (compilation != null) {
                      metadata.set(XMPDM.COMPILATION, (int)compilation.getValue());
                  }

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

                  // Encoder
                  AppleEncoderBox encoder = getOrNull(apple, AppleEncoderBox.class);
                  if (encoder != null) {
View Full Code Here

TOP

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

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.