MoviePy – 预览视频剪辑
在本文中,我们将了解如何在 MoviePy 中预览视频文件剪辑。 MoviePy 是一个用于视频编辑的Python模块,可用于视频和 GIF 的基本操作。方法 clip.show 和 clip.preview 使您可以在 Pygame 窗口中可视化剪辑。它们是最快的预览方式,因为剪辑是同时生成和显示的,它们对于获取像素的坐标或颜色很有用。这些方法需要安装 PyGame,并使用 moviepy.editor 模块。
In order to do this we will use preview
method with the VideoFileClip object
Syntax : clip.preview(fps)
Argument : It takes fps as optional argument
Return : It returns None
如果我们单击正在预览的视频剪辑的帧中的某个位置,它将打印单击的像素的位置和颜色。按 Escape 中止预览。
下面是实现
# Import everything needed to edit video clips
from moviepy.editor import *
# loading video dsa gfg intro video
clip = VideoFileClip("dsa_geek.webm")
# getting only first 5 seconds
clip = clip.subclip(0, 5)
# previewing the clip at fps = 20
clip.preview(fps = 20)
输出 :
另一个例子
# Import everything needed to edit video clips
from moviepy.editor import *
# loading video gfg
clip = VideoFileClip("geeks.mp4")
# getting only first 5 seconds
clip = clip.subclip(0, 5)
# previewing the clip at fps = 20
clip.preview(fps = 20)
输出 :