Page 1 of 1

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sun Jan 07, 2018 11:33 am
by admin
Cool. Thanks for pushing for that and updating the status for us. And thanks to rigaya for the implementation.

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sun Jan 07, 2018 11:50 am
by Guest
The GPU is becoming a more mainstream tool for tasks besides gaming every day

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sun Jan 07, 2018 12:34 pm
by admin
Yes, indeed. The next big leap IMHO will be when the CPU<-->GPU bandwidth gets a big jump, either with new technology or future PCIe generations.

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Mon Jan 08, 2018 3:48 pm
by Guest
admin wrote:
Sun Jan 07, 2018 12:34 pm
Yes, indeed. The next big leap IMHO will be when the CPU<-->GPU bandwidth gets a big jump, either with new technology or future PCIe generations.
Oh great,
That and the possible new features of the 20xx cards means another build, this time with 2 GPUs
Oh well, its only money

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Mon Jan 08, 2018 4:52 pm
by admin
New gun or new computer? :scratch:

Both! :lol:

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Mon Jan 08, 2018 5:43 pm
by Guest
Gun for the bank manager to stop me from spending my money :wow:
Computer for me because its my money, it is before I build it anyways :facepalm:

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Mon Jan 08, 2018 6:15 pm
by Guest
How would I use DGDenoise in a vpy script?
I have looked but have found no breadcrumb trail.
Not being a programmer sucks some times

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Mon Jan 08, 2018 7:25 pm
by admin
import vapoursynth as vs
core = vs.get_core()
core.avs.LoadPlugin(path="D:/Don/Programming/C++/DGDecNV/DGDecodeNV/x64/Release/DGDecodeNV.dll")
video = core.avs.DGSource('H:\Streams\AVC\Frame Structure\Alba.dgi',fulldepth=False)
video = core.avs.DGDenoise(video, strength=0.2, searchw=9)
video.set_output()

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Mon Jan 08, 2018 8:24 pm
by Guest
video = core.avs.DGDenoise(video, strength=0.2, searchw=9)
Missed the extra 'video'
One more time, thank you for your help and patience :bravo:

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Tue Jan 09, 2018 12:29 pm
by admin
You are welcome. ;)