我知道很多NLE (非线性编辑)视频编辑器,但它们的特征非常丰富,因此学习曲线非常陡峭。
我有一套自由和开放源码软件(免费/libre开源软件)用于我的其他需求,但一直未能找到一个标题和学分。
我在软件中寻找的是:
发布于 2015-10-03 09:33:01
有了一点学习曲线,但是到安装的几个步骤,就有了电影和瓦普里。
滚动的例子,部分隐藏的信用:
from moviepy.editor import *
from moviepy.video.tools.credits import credits1
# Load the mountains clip, cut it, slow it down, make it look darker
clip = (VideoFileClip('../../videos/badl-0001.mov', audio=False)
.subclip(37,46)
.speedx( 0.4)
.fx( vfx.colorx, 0.7))
# Save the first frame to later make a mask with GIMP (only once)
#~ clip.save_frame('../../credits/mountainMask2.png')
# Load the mountain mask made with GIMP
mountainmask = ImageClip('../../credits/mountainMask2.png',ismask=True)
# Generate the credits from a text file
credits = credits1('../../credits/credits.txt',3*clip.w/4)
scrolling_credits = credits.set_pos(lambda t:('center',-10*t))
# Make the credits scroll. Here, 10 pixels per second
final = CompositeVideoClip([clip,
scrolling_credits,
clip.set_mask(mountainmask)])
final.subclip(8,10).write_videofile("../../credits_mountains.avi")https://softwarerecs.stackexchange.com/questions/24829
复制相似问题