I'm currently doing an iOS project that uses IJKPlayer
which is based on FFmpeg
and SDL
to display RTSP feed from a certain source.
I have no problem in displaying a single video feed but my project requires me to display multiple stream on the screen simultaneously, the problem I'm facing right now is to separate each of the streams and display it on n
number of instances of player.
RTSP -> stream 0, stream 1, stream 2, stream 4 -> display
Here is a sample output I want to achieve. Each color represents a single stream. Thanks!
Edit: If this is not possible on IJKPlayer, can someone recommend a different approach on how to implement this?