Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers.
The following are the steps to read the header of an AVI file.
Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties
try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System....Us Contact Customers Legal Security Events Acquisition Ask AI...
Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed:
Load a ZIP archive Get the root metadata package Extract the native metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get metadata from a ZIP archive.
advanced_usage.managing_metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Us Contact Customers Legal Security Events Acquisition Ask AI...
Install GroupDocs.Viewer for Python via .NET on Windows, Linux, or macOS — from PyPI or from a pre-downloaded wheel, including Intel and Apple Silicon builds....Us Contact Customers Legal Security Events Acquisition Ask AI...
Key features of GroupDocs.Markdown for .NET — document to Markdown conversion with flavor control, image handling, front matter, and more...Us Contact Customers Legal Security Events Acquisition GroupDocs...
This article contains information about migration from the legacy API to GroupDocs.Viewer 19.8 or higher....Us Contact Customers Legal Security Events Acquisition Ask AI...
Inspect, clear, and watermark the images in Excel worksheet headers and footers using GroupDocs.Watermark for Python via .NET....Us Contact Customers Legal Security Events Acquisition Ask AI...
Quickly learn how to sign PDF with text signature using Java. Also, we will provide a code example to add text signature in PDF using Java without using extra tools....process and strengthen the security of your PDF file by following...
This article demonstrates how to convert specific document pages by page number using GroupDocs.Markdown for Python via .NET API....Us Contact Customers Legal Security Events Acquisition GroupDocs...
The page describes how to update annotation replies when collaborate over document using GroupDocs.Annotation for Java API....Us Contact Customers Legal Security Events Acquisition Ask AI...
The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are:
DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property.
The following code snippet reads metadata associated with a CAD file.
AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Us Contact Customers Legal Security Events Acquisition Ask AI...