When a .mkv file with three video tracks is opened via libvlc functions it pop-ups three separated windows in a disordered manner. I want to open these three windows in a single window through libvlc. How can I do this?
My custom application is based on Qt and libvlc and it is capable of running single video track files and multi video track files without a issue. The only problem is when a multi video track file is opened the way the windows should appear need to be controlled as indicated above. At least they should be tiled if not possible to direct them into a single large window.
I need to know how to effectively use Qt QMdiArea approach or VLC Mosaic approach along with libvlc to do it.
Sample code would be much appreciated.