How to Extract Audio File from Slide Timeline?

@oscarstar,
With Aspose.Slides for Java 22.11, you can use the following code snippet:

Presentation presentation = new Presentation("ActionSoundTest.pptx");
IEffect firstEffect = presentation.getSlides().get_Item(1).getTimeline().getMainSequence().get_Item(0);
if (firstEffect.getStopPreviousSound()) { // Stop Previous Sound
    // some code
}
if (firstEffect.getSound() == null) { // No Sound
    // some code
} 

Great, Iā€™m already using it. Thank you so much!

@oscarstar,
Thank you for using Aspose.Slides.