I'm trying to play two videos side by side in HTML, at the same time, preferrably by one control, as if they are a single video (one is a filtered version of the other, that's why).
How can I achieve that?
Here is the simple code I have so far that plays them separately, but side by side:
<center>
<video height="350" controls>
<source src="video1.mp4" type="video/mp4">
</video>
<video height="350" controls>
<source src="video2.mp4" type="video/mp4">
</video>
</center>