Convert PPSM Slide Shows to PPTM in Python

Save a macro-enabled PowerPoint slide show as an editable macro-enabled presentation with Aspose.Slides for Python via Java.

Convert PPSM to PPTM in Python

Aspose.Slides for Python via Java can load a macro-enabled PowerPoint PPSM slide show and save it in the editable PPTM presentation format. Both PPSM and PPTM support VBA projects, so the output remains macro-enabled. The conversion does not require Microsoft PowerPoint.

Convert PPSM to PPTM using Python

Create a Presentation from the PPSM file and call save with SaveFormat.Pptm to create the PPTM file.

Python code for converting PPSM to PPTM

presentation = Presentation("presentation.ppsm")
try:
    presentation.save("presentation.pptm", SaveFormat.Pptm)
finally:
    presentation.dispose()

How to convert PPSM to PPTM in Python

Follow these steps to convert a macro-enabled PowerPoint slide show to an editable macro-enabled PPTM presentation.

  1. Install Aspose.Slides for Python via Java .

  2. Configure the package and start the Java Virtual Machine in your application.

  3. Open the source PPSM file with Presentation.

  4. Call save with SaveFormat.Pptm to write the PPTM file.