com.groupdocs.metadata.core

Interfaces

Classes

Enums

Exceptions

com.groupdocs.metadata.core

Class MovRootPackage

  • All Implemented Interfaces:
    IXmp, Iterable<MetadataProperty>


    public class MovRootPackage
    extends RootMetadataPackage
    implements IXmp

    Represents the root package allowing working with metadata in a QuickTime video.

    Learn more

    This example shows how to read QuickTime atoms in a MOV video.

    
     try (Metadata metadata = new Metadata(Constants.InputMov)) {
         MovRootPackage root = metadata.getRootPackageGeneric();
         for (MovAtom atom : root.getMovPackage().getAtoms()) {
             System.out.println(atom.getType());
             System.out.println(atom.getOffset());
             System.out.println(atom.getSize());
             // ...
         }
     }