Working with metadata in AVI files

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.

  1. Load an AVI video
  2. Get the root metadata package
  3. Extract  the native metadata package using AviRootPackage.Header
  4. Read the AVI header properties

AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Avi.AviReadHeaderProperties

using (Metadata metadata = new Metadata(Constants.InputAvi))
{
	var root = metadata.GetRootPackage<AviRootPackage>();

	Console.WriteLine(root.Header.AviHeaderFlags);
	Console.WriteLine(root.Header.Height);
	Console.WriteLine(root.Header.Width);
	Console.WriteLine(root.Header.TotalFrames);
	Console.WriteLine(root.Header.InitialFrames);
	Console.WriteLine(root.Header.MaxBytesPerSec);
	Console.WriteLine(root.Header.PaddingGranularity);
	Console.WriteLine(root.Header.Streams);

	// ...
}

Extract RIFF INFO chunk metadata

The AVI format is derived from the RIFF container which acts as a wrapper for various audio and video coding formats. As a derivative of RIFF, AVI files can be tagged with metadata in the INFO chunk. The chunk may include information such as the title of the work, the author, the creation date, and copyright information. Here is an example of how the RIFF INFO metadata can be extracted:

AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Avi.AviReadInfoMetadata

using (Metadata metadata = new Metadata(Constants.InputAvi))
{
    var root = metadata.GetRootPackage<AviRootPackage>();
    if (root.RiffInfoPackage != null)
    {
        Console.WriteLine(root.RiffInfoPackage.Artist);
        Console.WriteLine(root.RiffInfoPackage.Comment);
        Console.WriteLine(root.RiffInfoPackage.Copyright);
        Console.WriteLine(root.RiffInfoPackage.CreationDate);
        Console.WriteLine(root.RiffInfoPackage.Software);
        Console.WriteLine(root.RiffInfoPackage.Engineer);
        Console.WriteLine(root.RiffInfoPackage.Genre);
 
        // ...
    }
}

Working with XMP metadata

GroupDocs.Metadata for .NET allows managing XMP metadata in AVI files. For more details please refer to the following guide: Working with XMP metadata.

More resources

GitHub examples

You may easily run the code above and see the feature in action in our GitHub examples:

Free online document metadata management App

Along with full featured .NET library we provide simple, but powerful free Apps. You are welcome to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online Free Online Document Metadata Viewing and Editing App.