如何使用 AVISynth 屏蔽视频的前几帧?

发布于 2024-11-27 05:27:50 字数 166 浏览 1 评论 0原文

我尝试了这个:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望喜 2024-12-04 05:27:50

叠加不会自动结束,请记住,例如,您还可以叠加图像而不是视频。

为叠加层的末尾指定一个帧,然后从那里继续原始视频,如下所示:

overlay(video, black).trim(0, 10) + video.trim(11, framecount(video))   

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:

overlay(video, black).trim(0, 10) + video.trim(11, framecount(video))   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文