python-pptx模块可以插入视频吗?

nag*_*don 4 python video powerpoint

根据文档,python-pptx可以插入视频,但是,文档没有给出很好的示例。有人有任何代码片段可以将video1.avi添加到我的 pptx 中吗?

from pptx import Presentation
pptx1 = Presentation()
slide = pptx1.slides.add_slide(blank_slide_layout)
Run Code Online (Sandbox Code Playgroud)

不确定我需要什么输入

slide.placeholders.element.add_placeholder(id_,name,ph_type, orient, sz,idx)
Run Code Online (Sandbox Code Playgroud)

谢谢

Yos*_*oun 5

该库现在具有将视频添加到幻灯片的功能:

slide.shapes.add_movie(video_file, x_pos, y_pos, width, height, poster_frame_image=thumbnail_image_file)
Run Code Online (Sandbox Code Playgroud)