VideoTexture - video is rotated 90 degrees

Well, you can try to rotate the plane mesh that presents your video like so:

mesh.rotation.z = - Math.PI * 0.5;

However, three.js can’t extract the video orientation automatically for you. I’m not sure if this is even possible with JavaScript :thinking:.