luigizaninoni
17th August 2016, 20:42
In a vs script i am loading an avisynth plugin (autoadjust.dll).
It works fine (encoding to x265), but I get this warning:
requested frame xx not prefetched, using slow method
What does this mean ? If it is using the "slow" method, is there a faster method I can use ?
My script:
import vapoursynth as vs
core = vs.get_core()
core.std.LoadPlugin(r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\fmtconv\fmtconv.dll")
core.std.LoadPlugin(r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\vslsmashsource\vslsmashsource.dll")
import importlib.machinery
adjust = importlib.machinery.SourceFileLoader('adjust', r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\adjust\adjust.py").load_module()
mvsfunc = importlib.machinery.SourceFileLoader('mvsfunc', r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\mvsfunc\mvsfunc.py").load_module()
core.max_cache_size=5000
core.avs.LoadPlugin(path=r'C:\Program Files\AviSynth+\plugins64\AutoAdjust.dll')
clip = core.lsmas.LWLibavSource(r"C:\Users\luigi\Desktop\ConvertitiInMkv\00000.mkv")
clip = core.resize.Spline36(clip, 960, 540)
clip = adjust.Tweak(clip,hue=0.0,sat=1.029,bright=0.0,cont=1.0)
clip = core.avs.AutoAdjust(clip,auto_gain=True,auto_balance=True,gamma_limit=1.1,dark_limit=1.2,bright_limit=1.2,chroma_limit=1.04,balance_str=0.6)
clip = mvsfunc.BM3D(clip, sigma=[7,7,7], radius1=2)
clip.set_output()
It works fine (encoding to x265), but I get this warning:
requested frame xx not prefetched, using slow method
What does this mean ? If it is using the "slow" method, is there a faster method I can use ?
My script:
import vapoursynth as vs
core = vs.get_core()
core.std.LoadPlugin(r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\fmtconv\fmtconv.dll")
core.std.LoadPlugin(r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\vslsmashsource\vslsmashsource.dll")
import importlib.machinery
adjust = importlib.machinery.SourceFileLoader('adjust', r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\adjust\adjust.py").load_module()
mvsfunc = importlib.machinery.SourceFileLoader('mvsfunc', r"C:\Users\luigi\Desktop\video grafica\Staxrip64\Apps\Plugins\vs\mvsfunc\mvsfunc.py").load_module()
core.max_cache_size=5000
core.avs.LoadPlugin(path=r'C:\Program Files\AviSynth+\plugins64\AutoAdjust.dll')
clip = core.lsmas.LWLibavSource(r"C:\Users\luigi\Desktop\ConvertitiInMkv\00000.mkv")
clip = core.resize.Spline36(clip, 960, 540)
clip = adjust.Tweak(clip,hue=0.0,sat=1.029,bright=0.0,cont=1.0)
clip = core.avs.AutoAdjust(clip,auto_gain=True,auto_balance=True,gamma_limit=1.1,dark_limit=1.2,bright_limit=1.2,chroma_limit=1.04,balance_str=0.6)
clip = mvsfunc.BM3D(clip, sigma=[7,7,7], radius1=2)
clip.set_output()