Python将ppt转为mp4

电脑技术 电脑技术 1151 人阅读 | 0 人回复 | 2022-04-12

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import win32com.client
import time

powerpoint = win32com.client.Dispatch("Powerpoint.Application")
try:
    # Attempt to open file
    #presentation = powerpoint.Presentations.Open(FileName='lol.pptx', WithWindow=False)
    presentation = powerpoint.Presentations.Open(FileName=r'C:\Users\tomd\Development\PPPTX2MP4\lol.pptx')
except:
    # If file cannot be found
    print('File cannot be found')
    exit

try:
    # May need a few other parameters as well
    presentation.CreateVideo(r'C:\Users\tomd\Development\PPPTX2MP4\out.wmv')
    while presentation.CreateVideoStatus == 1:
        time.sleep(1)
    presentation.Close()
    print('Done')
except:
    print('Unable to export to video')
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则