Let me explain myself the best I can...
I have a project where each speaker has his own video background, covering the whole screen. My approach was to make a hierarchy container with the videos, apply each one to an overlay rectangle, and animate their alpha with a keyframe animation, so in each state there was only one video with 100% alpha and the rest of them 0%.
But I've noticed that this is not the best practice, my performance is heavily affected with this approach, maybe because the videos are still calling for resources even when they are blocked, I don't know...
Could you tell me what's the best way to blend background videos, summing it up?

Thank you in advance!