Page 1 of 1

[RESOLVED] Template generation for Vapoursynth

Posted: Fri Dec 29, 2017 5:56 pm
by Guest
Since NVEncC doesn't yet support full depth with AVS input, I put in request on GitHub, is it possible to have the templates created with a vpy extension as well as (or instead of ) avs
Thank you

Re: Template extension

Posted: Fri Dec 29, 2017 6:56 pm
by admin
Good idea. I'll get on it.

Re: Template extension

Posted: Fri Dec 29, 2017 7:13 pm
by Guest
Once again, thank you

Re: Template extension

Posted: Sat Dec 30, 2017 10:50 am
by admin
It's in slipstream 119. Let me know if there are any issues. Thanks for the idea.

I may try to add proper support to NVEncC if the author doesn't want to do it.

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sat Dec 30, 2017 11:34 am
by Guest
Tested it and it works fine.
Had an AVS template that mimicked VPY for uhd
I was changing extensions after the fact, but I do suffer from fat finger issues, wrong keys hit
Changed template extension from AVS to VPY
Created a DGI file and a VPY script was created automatically, looks perfect
Thank you
:bow: :bravo:

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sat Dec 30, 2017 1:04 pm
by admin
Sweet. Thanks for the testing.

I assume you must have used the settings to select the VPY template also. Just adding that for others who may be testing.

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sat Dec 30, 2017 3:38 pm
by Guest
That is correct.
Settings > Template Settings > Template

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sat Jan 06, 2018 3:11 am
by hydra3333
Thank you. :D

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sat Jan 06, 2018 4:50 am
by admin
You are welcome. ;)

Re: [RESOLVED] Template generation for Vapoursynth

Posted: Sun Jan 07, 2018 10:54 am
by Guest
NVEncC now has full depht support for AVS+
https://github.com/rigaya/NVEnc/issues/25

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. ;)