RemoveApeV2
Leave feedback
On this page
Removes the APEv2 audio tag.
public void RemoveApeV2()
This feature is not available in trial mode.
This example shows how to remove the APEv2 tag from an MP3 file.
using (Metadata metadata = new Metadata(Constants.MP3WithApe))
{
var root = metadata.GetRootPackage<MP3RootPackage>();
root.RemoveApeV2();
metadata.Save(Constants.OutputMp3);
}
- 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.