Problem with video texture

hey and good morning, i have trouble with the video texture as you can see in the image on the left the code and on click on the document the video playing but only audio without the video itself… what i’m doing wrong ?

Hi!
Try to use MeshBasicMaterial instead of MeshStandardMaterial.

1 Like

thanx, i found my problem was that i forgot to set needsUpdate to true each frame :slight_smile: if you have idea how can i flip the video texture it will be great

If you want to use a video as a data source for a texture, use the VideoTexture class. You don’t have to manage needsUpdate by yourself then and the texture upload is actually more optimized (since it is not required to upload the texture per frame).

2 Likes

Thank you, i will check it now :slight_smile: