头像
gryphonheart
帖子: 15
注册时间: 2012-08-02 15:56

Re: 【置顶】現代版的Avisynth --> Vapoursynth

考究语文没有意义?你连最基本的人话(语文)都没学好,你拿什么来和我讨论理论和研究?又如何把你的技术传播给他人?对别人提出的问题都没理解,你如何回答?画图吗?文科和理科有时候是不能分开的,虽然我是文科出身,但是我和压制也打了10年+交道了。

被墙这里下载

Python 3.3(X86):
http://pan.baidu.com/share/link?shareid ... 4213898822

Vapoursynth R16:
http://pan.baidu.com/share/link?shareid ... 4213898822


Vapoursynth DOOM9,已经出了Vapoursynth版用的D2V
http://forum.doom9.org/forumdisplay.php?f=69


十分看好VS,希望它能够替代AVS
xuhaoyangx
帖子: 11
注册时间: 2012-12-15 22:28

Re: 現代版的Avisynth --> Vapoursynth

到现在还是没搞懂d2v肿么加载进去- -,哎
xuhaoyangx
帖子: 11
注册时间: 2012-12-15 22:28

Re: 現代版的Avisynth --> Vapoursynth

nnedi3能不能上去额-
xuhaoyangx
帖子: 11
注册时间: 2012-12-15 22:28

Re: 現代版的Avisynth --> Vapoursynth

如图 跑不起来- -哎
附件
QQ截图20130207180449.jpg
萧瑟朗
帖子: 16
注册时间: 2011-11-15 11:00

Re: 現代版的Avisynth --> Vapoursynth

xuhaoyangx 写了:如图 跑不起来- -哎
import vapoursynth as vs
import sys

core = vs.Core()

core.std.LoadPlugin(r'F:\x264\vapoursynth\d2vsource_beta4_v2.dll')
core.std.LoadPlugin(r'F:\x264\vapoursynth\nnedi3.dll')

video=core.d2v.Source(r'E:\Video\xxx.d2v')
video=core.nnedi3.nnedi3(video, field=1, dh=True, Y=True, U=True, V=True, nsize=1, nns=2, qual=1, etype=0, pscrn=2, fapprox=15)
video=core.resize.Lanczos(video,1280,720)

video.output(sys.stdout,y4m=True)
就这么加载吧,另外nnedi3也有vs版的,doom9有下载。
xuhaoyangx
帖子: 11
注册时间: 2012-12-15 22:28

Re: 現代版的Avisynth --> Vapoursynth

萧瑟朗 写了:
xuhaoyangx 写了:如图 跑不起来- -哎
import vapoursynth as vs
import sys

core = vs.Core()

core.std.LoadPlugin(r'F:\x264\vapoursynth\d2vsource_beta4_v2.dll')
core.std.LoadPlugin(r'F:\x264\vapoursynth\nnedi3.dll')

video=core.d2v.Source(r'E:\Video\xxx.d2v')
video=core.nnedi3.nnedi3(video, field=1, dh=True, Y=True, U=True, V=True, nsize=1, nns=2, qual=1, etype=0, pscrn=2, fapprox=15)
video=core.resize.Lanczos(video,1280,720)

video.output(sys.stdout,y4m=True)
就这么加载吧,另外nnedi3也有vs版的,doom9有下载。
D2V还是显示can't open
julseven9920
帖子: 42
注册时间: 2011-04-18 11:37

Re: 現代版的Avisynth --> Vapoursynth

xuhaoyangx 写了:
萧瑟朗 写了:
xuhaoyangx 写了:如图 跑不起来- -哎
import vapoursynth as vs
import sys

core = vs.Core()

core.std.LoadPlugin(r'F:\x264\vapoursynth\d2vsource_beta4_v2.dll')
core.std.LoadPlugin(r'F:\x264\vapoursynth\nnedi3.dll')

video=core.d2v.Source(r'E:\Video\xxx.d2v')
video=core.nnedi3.nnedi3(video, field=1, dh=True, Y=True, U=True, V=True, nsize=1, nns=2, qual=1, etype=0, pscrn=2, fapprox=15)
video=core.resize.Lanczos(video,1280,720)

video.output(sys.stdout,y4m=True)
就这么加载吧,另外nnedi3也有vs版的,doom9有下载。
D2V还是显示can't open

avs版插件 要這樣寫...
core.avs.LoadPlugin(r'x:\DGDecode.dll')
video=core.avs.MPEG2Source(d2v=r'x:\xx.d2v')

建議要用vs 需明白一些基本用法
萧瑟朗
帖子: 16
注册时间: 2011-11-15 11:00

Re: 現代版的Avisynth --> Vapoursynth

julseven9920 写了:
xuhaoyangx 写了:
萧瑟朗 写了: import vapoursynth as vs
import sys

core = vs.Core()

core.std.LoadPlugin(r'F:\x264\vapoursynth\d2vsource_beta4_v2.dll')
core.std.LoadPlugin(r'F:\x264\vapoursynth\nnedi3.dll')

video=core.d2v.Source(r'E:\Video\xxx.d2v')
video=core.nnedi3.nnedi3(video, field=1, dh=True, Y=True, U=True, V=True, nsize=1, nns=2, qual=1, etype=0, pscrn=2, fapprox=15)
video=core.resize.Lanczos(video,1280,720)

video.output(sys.stdout,y4m=True)
就这么加载吧,另外nnedi3也有vs版的,doom9有下载。
D2V还是显示can't open

avs版插件 要這樣寫...
core.avs.LoadPlugin(r'x:\DGDecode.dll')
video=core.avs.MPEG2Source(d2v=r'x:\xx.d2v')

建議要用vs 需明白一些基本用法
d2vsource_beta4_v2.dll是VS版的D2V插件...
julseven9920
帖子: 42
注册时间: 2011-04-18 11:37

Re: 現代版的Avisynth --> Vapoursynth

我當然知道... 看"他"打不開 一定不是用VS版 {:cat_15}
我可沒指你寫錯...
mickoo
帖子: 30
注册时间: 2010-11-23 19:18

Re: 現代版的Avisynth --> Vapoursynth

感觉这东西,潜力很大,希望随后滤镜越来越多后,详细的使用教程会出来

回到 “VapourSynth”