如何使用 AVISynth 屏蔽视频的前几帧?
我尝试了这个:
black = BlankClip(length=10)
video = AVISource("@source1")
overlay(video,black)
但现在整个视频都是黑色的,不仅仅是前 10 帧......我做错了什么?
I tried this:
black = BlankClip(length=10)
video = AVISource("@source1")
overlay(video,black)
But now the whole video is black, not only the first 10 frames... What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
叠加不会自动结束,请记住,例如,您还可以叠加图像而不是视频。
为叠加层的末尾指定一个帧,然后从那里继续原始视频,如下所示:
The overlay does not automatically end, remember you can also overlay an image instead of a video for instance.
Give a frame for the end of the overlay and then continue the original video from there, like so: