Examples of CopyrightBox


Examples of net.sourceforge.jaad.mp4.boxes.impl.CopyrightBox

   * ---tshd
   */
  void parse(Box udta, Box meta) {
    //standard boxes
    if(meta.hasChild(BoxTypes.COPYRIGHT_BOX)) {
      CopyrightBox cprt = (CopyrightBox) meta.getChild(BoxTypes.COPYRIGHT_BOX);
      put(Field.LANGUAGE, new Locale(cprt.getLanguageCode()));
      put(Field.COPYRIGHT, cprt.getNotice());
    }
    //3gpp user data
    if(udta!=null) parse3GPPData(udta);
    //id3, TODO: can be present in different languages
    if(meta.hasChild(BoxTypes.ID3_TAG_BOX)) parseID3((ID3TagBox) meta.getChild(BoxTypes.ID3_TAG_BOX));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.