vapoursynth-plugin icon indicating copy to clipboard operation
vapoursynth-plugin copied to clipboard

DLISR: Function does not take argument(s) named device_id

Open Ichunjo opened this issue 2 years ago • 2 comments

upscale = core.akarin.DLISR(clip.resize.Bicubic(format=vs.RGBS), 2, device_id=0)
vapoursynth.Error: DLISR: Function does not take argument(s) named device_id

It's also not recognised by vsrepo stubgen so I guess it's a different version of what the README says.

if relevant:

print(
    core.akarin.list_functions(), '\n',
    core.akarin.get_functions(), '\n',
)
DLISR(clip:clip; scale:int:opt)
Expr(clips:clip[]; expr:data[]; format:int:opt; opt:int:opt; boundary:int:opt)
Version()

 {'DLISR': 'clip:clip;scale:int:opt', 'Expr': 'clips:clip[];expr:data[];format:int:opt;opt:int:opt;boundary:int:opt;', 'Version': ''}

DLVFX doesn't seem to be compiled with this version Version() {'expr_backend': b'llvm', 'expr_features': [b'x.property', b'sin', b'cos', b'%', b'N', b'X', b'Y', b'pi', b'width', b'height', b'trunc', b'round', b'floor', b'@', b'!', b'x[x,y]', b'x[x,y]:m'], 'version': b'v0.70-0-g85a4077'}

Ichunjo avatar Aug 15 '21 12:08 Ichunjo