RemoveApeV2

MP3RootPackage.RemoveApeV2 method

Removes the APEv2 audio tag.

public void RemoveApeV2()

Remarks

This feature is not available in trial mode.

Examples

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);
}

See Also