Replies: 1 comment 4 replies
-
This would be a really cool feature! I like it. Browsers don't support something like this out of the box, they're essentially video tracks and audio tracks that could be enabled and positioned / muted but stay in sync time wise. This would require multiple
This is pretty much the only thing that can be done front-end, the trick is indeed the syncing part. The server side way might be more flexible than you think by using the canvas API. Have a look at @mmcc's project The gist is that you can crop out any part of the original playing video and render it on a HTML |
Beta Was this translation helpful? Give feedback.
-
Checklist
Which Mux Elements/Packages would you like a new feature for?
🎥 Describe the feature you'd like to request
I would like to specify multiple Mux streams that would play back correctly synchronised.
💻 Describe the use cases the feature will solve
I have two separate Mux assets - one for the user's camera and one for the user's shared screen. I would like to be able to play them both back in the Mux player and have the timestamps line up correctly (even with buffering etc). My current solution involves processing the assets on the server with
ffmpeg
and reuploading, but I'd like to allow for e.g dynamic layouts.⭐ Describe the solution you'd like to see
I'm open to suggestions! I may be simply doing it wrong™ :)
🔄 Describe alternatives or workarounds you've considered
ffmpeg
(slow, not dynamic etc)Beta Was this translation helpful? Give feedback.
All reactions