Created
March 13, 2017 22:43
-
-
Save diverted247/9533efac917a40a18755086784a5d043 to your computer and use it in GitHub Desktop.
Export 4K Video from Powerpoint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub Export4KPowerpoint() | |
If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then | |
ActivePresentation.CreateVideo FileName:=Environ("USERPROFILE") & "\Desktop\export.mp4", _ | |
UseTimingsAndNarrations:=True, _ | |
VertResolution:=2160, _ | |
FramesPerSecond:=30, _ | |
Quality:=100 | |
Else: MsgBox "There is another conversion to video in progress" | |
End If | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works perfectly in Office 2016. Tnx