MoviePy - 获取视频文件剪辑的原始文件名
在本文中,我们将了解如何在 MoviePy 中获取视频文件的原始文件名。 MoviePy 是一个用于视频编辑的Python模块,可用于视频和 GIF 的基本操作。原始文件名是最初存在的原始视频的名称,即加载的原始视频的名称,即使在对视频进行更改和编辑之后,我们也可以获得文件的原始名称。
我们可以在下面给出的命令的帮助下加载视频文件剪辑
clip = VideoFileClip(file_name)
In order to do this we will use filename
attribute with the VideoFileClip object
Syntax : clip.filename
Argument : It takes no argument
Return : It returns string
下面是实现
# Import everything needed to edit video clips
from moviepy.editor import *
# loading video dsa gfg intro video
clip = VideoFileClip("dsa_geek.webm")
# getting subclip from it
clip1 = clip.subclip(0, 10)
# resizing the clip1
clip1 = clip1.resize(0.5)
# rotating the clip1
clip1 = clip1.rotate(180)
# getting original file name of the clip
name = clip1.filename
# printing the name
print("File Name : " + name)
print("---------------------------------------")
# showing final clip
clip1.ipython_display()
输出 :
File Name : dsa_geek.webm
---------------------------------------
Moviepy - Building video __temp__.mp4.
Moviepy - Writing video __temp__.mp4
Moviepy - Done !
Moviepy - video ready __temp__.mp4
另一个例子
# Import everything needed to edit video clips
from moviepy.editor import *
# loading video gfg
clip = VideoFileClip("geeks.mp4")
# getting subclip from it
clip1 = clip.subclip(0, 7)
# getting original file name of the clip
name = clip1.filename
# printing the name
print("File Name : " + name)
print("---------------------------------------")
# showing final clip
clip1.ipython_display()
输出 :
File Name : geeks.mp4
---------------------------------------
Moviepy - Building video __temp__.mp4.
MoviePy - Writing audio in __temp__TEMP_MPY_wvf_snd.mp3
MoviePy - Done.
Moviepy - Writing video __temp__.mp4
Moviepy - Done !
Moviepy - video ready __temp__.mp4