I created a videoTexture using THREEJS but when displaying it, it seems as there are streaks on the video.
const video = document.getElementById('video');
const videoTexture = new THREE.VideoTexture(video)
videoTexture.encoding = THREE.sRGBEncoding;
videoTexture.flipY = false;
I tried adding magFilter = THREE.LinearFilter;
but it didn’t change anything.
Here is the image of my video where we can see the streaks and here is my original image without the streaks showing