I am trying to pass the following options, the --glsl-shader option doesnt work while the other options work.
let mpv_options = [
"--vo=gpu",
"--profile=gpu-hq",
"--glsl-shader=pixels.glsl",
"--scale=ewa_lanczos",
"--fbo-format=rgba16hf",
];
the shader isnt visible here, looks like the shader did not load

But the shader works successfully when passed to mpv with mpv --glsl-shader=pixels.glsl video.mp4
So my question is has the glsl-shader been implemented in node-mpv?
and if so, how do i use it?
I am trying to pass the following options, the
--glsl-shaderoption doesnt work while the other options work.the shader isnt visible here, looks like the shader did not load

But the shader works successfully when passed to
mpvwithmpv --glsl-shader=pixels.glsl video.mp4So my question is has the glsl-shader been implemented in node-mpv?
and if so, how do i use it?