Avisynth 处理奇偶对帧
我需要用 avisynth 读取成对的帧并处理它们。
eg
frame1 + frame2 => result1
frame2 + frame3 => result2
frame3 + frame4 => result3
我知道 selecteven() 和 selectodd() 命令,但它们给我frame1和2,然后是frame3和4。
无法执行“if()”来确定我正在进行哪一步或推回抓取的框架。
知道如何实现吗?
I need to read pairs of frames with avisynth and process them.
eg
frame1 + frame2 => result1
frame2 + frame3 => result2
frame3 + frame4 => result3
I know the selecteven() and selectodd() commands but they give me frame1 and 2 then frame3 and 4.
There is no way of doing an "if()" to work out which step I'm on or pushing back a grabbed frame.
Any idea how to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将给出 0,1 1,2 2,3 3,4 4,5 5,6 等
avisynth 中的 ps 注释不是 // 但它破坏了 SO 格式。
pps 不知道为什么它的语法会突出显示某些位,也不知道它是如何猜测哪种语言的。
will give 0,1 1,2 2,3 3,4 4,5 5,6 etc
ps comments in avisynth are # not // but it breaks the SO formatting.
pps don't know why it is syntax highlighting some bits or how it has guessed which language.