Hi all
How could i set multiple video output for a mediaPlayer ?
I m using my own java binding. I use : libvlc_media_player_set_hwnd (libvlc_media_player_t *p_mi, void *drawable, libvlc_exception_t *p_e) to set a video output renderer.
I've two screen (1 screen + TV) and i send it a unicast stream wich i would like to display on both (one frame with my own interface on each screen), so i can't use a new instance to "reread" the stream (cause it is unicast) ...
I know i could stream in multicast and use one mediaPlayerInstance for each frame (actualy "Canvas" in my frames), but i can't cause by this way multicast really sux with my wifi connection (i don't really know why, but all my tests point it of...) and it will be a real wast of CPU ressource ...
Thanks all for any idea .