Is there a way to transform two videos live on the client side using JavaScript?
I have two videos and I want to create a simple picture in picture like overlay of one video on the other. For this, I'd need to scale one video down and place it on top of the other. I know that something like this is possible with ffmpeg but are there any options using JavaScript.
From my naive understanding, I simply could add two video players on the page and render one on top of the other using CSS. Is there a better way? Any librar recommendations?