Hi, I have multiple video screens in my project. Some screens play one type of video wheras others play a different type of video.
I want tohe ability to pause/unpause individual videos while the other videos playback are unaffected.
I’ve been through the video tutorial and I have videos playing but I cant seem to manage to separate their interaction behaviour. Currently when I pause a video, all videos with the same video pause. Also, many times when I click on a object(video screen) to pause/unpause it only works on one of the objects and not all of them. Whats more this seems to change each time I run it.
As you can see, I’m having a lot of trouble controlling video. Is there an example somewhere of being able to pause/unpause multiple videos without affect other videos of the same type or otherwise. The current video example on demonstrates a single video and doesnt really show me how to work with multiple.
Consider how the video textures in your project work. There’s a video div created for the video and its being applied to a texture.
If there are multiple places in the scene are using that texture, then if you pause the video div, the texture data won’t change. So wherever the texture is being used, they will all look the same.
Have multiple video divs using the same video source (one per video texture)
Have multiple textures referencing the same video div but the upload/update of video → texture is independently controlled
Have the same texture used in the scene in multiple places but when ‘pausing’ replace with a still frame (which can be anything you want or a clone of the video texture on that particular frame)
Ok in the end its because I needed to assign a different material (basically just duplicate my video material x times) to each of the separate video screens.