I am trying to export powerpoint presentation to video programmatically. I have tried following.
- Open pptx file using
org.apache.poixslf.usermodel.SlideShow
- Update the slides as per requirement
- Create image for each slide (using
slide.draw()
) - Create a video by appending slide images one after the other
The code is generating a video. The video is collection of static images of slides. The problem is the animations contained in a slide is not present in the video.
Is there any way to get the animations exported in the video using apache.poi or any other option ?