How to display HTML5 video control on a plane having video texture?

I have a plane with video texture. Right now, the video keeps playing continuously on the plane without any way to pause it or skip its scenes. Is there any way for me to display the HTML5 video control and make it fully functional on that plane?

No, that’s not possible. Your plane is rendered via WebGL which means the HTML5 video element just acts as a data source for your texture. This is something totally different than embedding the HTML5 video element within a normal website.

3 Likes

@Mugen87 If I use script to control the HTML5 video element such as pausing it, will the same effect appear on the video texture?

Yes, I think so.

1 Like