分页: 2 / 4

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

发表于 : 2012-11-15 9:57
gryphonheart
考究语文没有意义?你连最基本的人话(语文)都没学好,你拿什么来和我讨论理论和研究?又如何把你的技术传播给他人?对别人提出的问题都没理解,你如何回答?画图吗?文科和理科有时候是不能分开的,虽然我是文科出身,但是我和压制也打了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

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-07 17:11
xuhaoyangx
到现在还是没搞懂d2v肿么加载进去- -,哎

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-07 17:31
xuhaoyangx
nnedi3能不能上去额-

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-07 18:06
xuhaoyangx
如图 跑不起来- -哎

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-07 18:29
萧瑟朗
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有下载。

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-08 14:22
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

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-08 19:10
julseven9920
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 需明白一些基本用法

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-08 20:43
萧瑟朗
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插件...

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-02-09 12:29
julseven9920
我當然知道... 看"他"打不開 一定不是用VS版 {:cat_15}
我可沒指你寫錯...

Re: 現代版的Avisynth --> Vapoursynth

发表于 : 2013-04-18 9:59
mickoo
感觉这东西,潜力很大,希望随后滤镜越来越多后,详细的使用教程会出来