This article explains how the The GroupDocs.Metadata API allows reading some common MPEG audio properties from MP3 Files....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article gives the knowledge of the API methods which can be used to perform operations about Alias dictionary in Java....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This example demonstrates how to load a File from a stream.
advanced_usage.loading_Files.LoadFromStream
JavaScript try { const FileStream = fs.createReadStream("input.one") const metadata = new groupdocs.metadata.Metadata(FileStream); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article explains how to handle ID3v1 tag....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article explains how to load from stream while using GroupDocs. Watermarks API....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
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.
Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties
try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, PDF, PPT, JPG, PNG, HTML, EML and many more....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
Using the GroupDocs.Metadata search engine you can extract desired metadata properties from Files of different types. You don’t need to worry about the exact File format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported Files in various metadata packages. All tags defined in GroupDocs....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
Reading Photoshop Metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a PSD image. For more information on the Photoshop File format and metadata blocks please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/Fileformatashtml/.
The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop File format) from a PSD image.
Load a PSD File Get the root metadata package Extract the ImageResourcePackage instance and obtain a list of ImageResourceBlock objects Iterate trough the collection of resource blocks AdvancedUsage....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
The Example in this article demonstrates that how to update metadata properties using a combination of criteria...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...