How to get a Powerpoint presentation into shotcut video?

Hi there,

I have a powerpoint presentation completed on a mac air with ending with “pptx” file.

I attempted to place in a shotcut video and failed?

What does the powerpoint code\ending need to be to get into shotcut video?

I want to place it on windows PC with shotcut…

If it has animations you want to keep, export is as a video: https://support.office.com/en-us/article/turn-your-presentation-into-a-video-c140551f-cb37-4818-b5d4-3e30815c3e83

You can export one image per slide and then import the images into shotcut: https://www.lifewire.com/create-pictures-from-powerpoint-slides-2767362

I recommend PNG format if it supports it

You might need https://support.microsoft.com/en-gb/help/827745/how-to-change-the-export-resolution-of-a-powerpoint-slide for this

1 Like

Here’s a Powerpoint macro you can use to export the presentation to a 1080p (1k) high quality mp4. Then add the mp4 to your Shotcut project. The script can be tweaked to output 2k or 4k video in 30fps or 60fps.

Attribute VB_Name = "Export1K"

Sub Export1K()

    If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then
    
        ActivePresentation.CreateVideo FileName:="C:\EXPORT.mp4", _
            UseTimingsAndNarrations:=True, _
            VertResolution:=1080, _
            FramesPerSecond:=60, _
            Quality:=100
        
    Else
    
        MsgBox "Video Conversion Already In Progress ..."
        
    End If

End Sub
2 Likes

Thanks for te information!