asarian
16th September 2024, 15:59
In R57, I try the following:
import vapoursynth as vs
core = vs.core
vid = core.std.CropRel (clip=vid, left=480, right=480, top=0, bottom=0)
All of a sudden I get:
AttributeError: No attribute with the name Std exists. Did you mistype a plugin namespace?
Why?? This has always worked!
import vapoursynth as vs
core = vs.core
vid = core.std.CropRel (clip=vid, left=480, right=480, top=0, bottom=0)
All of a sudden I get:
AttributeError: No attribute with the name Std exists. Did you mistype a plugin namespace?
Why?? This has always worked!