So I am inserting videos using add_video function in pptx-python. The documentation says one of the inputs is a poster_image for the video. IF this is not set, it shows a huge speaker icon in the video. How do I remove the speaker and not have a poster_image?
def makevideoslide(prs,video,title1,layout):
video_slide_layout = prs.slide_layouts[layout]
#POSITION ON SLIDE
left = Inches(1.63)
top = Inches(1.24)
height = Inches(3.71)
width = Inches(6.78)
slide = prs.slides.add_slide(video_slide_layout) #Actualy making the slide
title = slide.shapes.title #Title that goes on top of the layout and the slide
title.text = title1
vid = slide.shapes.add_movie(video, left, top, width=width,height=height,)
return slide