ApeV2
Leave feedback
On this page
Gets the APE v2 metadata.
public ApePackage ApeV2 { get; }
The APE v2 metadata.
This example demonstrates how to read the APEv2 tag in an MP3 file.
using (Metadata metadata = new Metadata(Constants.MP3WithApe))
{
var root = metadata.GetRootPackage<MP3RootPackage>();
if (root.ApeV2 != null)
{
Console.WriteLine(root.ApeV2.Album);
Console.WriteLine(root.ApeV2.Title);
Console.WriteLine(root.ApeV2.Artist);
Console.WriteLine(root.ApeV2.Composer);
Console.WriteLine(root.ApeV2.Copyright);
Console.WriteLine(root.ApeV2.Genre);
Console.WriteLine(root.ApeV2.Language);
// ...
}
}
- class ApePackage
- class MP3RootPackage
- namespace GroupDocs.Metadata.Formats.Audio
- assembly GroupDocs.Metadata
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.