As in the question, I need to share a video in lan by broadcasting.
From server, I've tried with:
avconv -i video.mov -c:v libx264 -f mpegts udp://[destinationIP]:1234 From client I can play video with:
omxplayer udp://serverIP:1234 But this works only for one "connection".
What I need is to put the video stream in broadcast that all the clients can read.
Any ideas?