Working with metadata in FLV files

Reading FLV header properties

The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header.

The following are the steps to read the header of an FLV file.

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

AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties

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

	Console.WriteLine(root.Header.Version);
	Console.WriteLine(root.Header.HasAudioTags);
	Console.WriteLine(root.Header.HasVideoTags);
	Console.WriteLine(root.Header.TypeFlags);
}

Working with XMP metadata

GroupDocs.Metadata for .NET allows managing XMP metadata in FLV 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.