View Single Post
Old 27th July 2020, 14:44   #28  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,377
Quote:
Originally Posted by gmail123 View Post
my english is poor...
sample:1080p ---->2160P,
can you give me a vs script ?
thx!

My English is poor too (and it's my first language )


You should probably post in the vapoursynth subforum

One difference is Alexral did some separate training (slightly different) . I'm not sure how to use those into vapoursynth directly; only .glsl shaders can be used with placebo.Shader . (You can use the AVISource workaround, but you need windows, avisynth installed)

There is documentation on the page


eg.

Code:
import vapoursynth as vs
core = vs.get_core()
clip = core.lsmas.LWLibavSource(r'PATH\input.mkv')
clip = core.resize.Bicubic(clip, format=vs.YUV444P16)
clip = core.placebo.Shader(clip, width=clip.width*2, height=clip.height*2, shader=r'PATH\FSRCNN-Medium\FSRCNN_x2_r2_16-0-2.glsl')
clip.set_output()

Last edited by poisondeathray; 28th July 2020 at 19:51. Reason: "LWLibavSource" for mkv example , oops
poisondeathray is offline   Reply With Quote