我通过带有单击功能的matplotlib进行了交互式绘图。目前,点击功能给了我时间t。现在,使用moviepy和pygame,我正在播放直接跳到该时间实例的视频。但是在演出期间,我无法控制。我想有一个暂停和滚动条来前进或后退视频。类似于Windows Media Player。 按下键盘按钮时,是否有与剪辑相关的某些功能来暂停视频?
print('Playing video from time :', (t - 5, "to :", t + 5)
clip = VideoFileClip(self.videofile).subclip(int(t) - 5, int(t) + 5)
clip.preview()
pygame.quit() # currently it is called at the end of the my plot
function
我想暂停功能。我寻找了一些诸如clip.show()的函数,但并没有帮助我。