linux - Avconv broadcasting video stream -


I'm doing some testing to broadcast a video stream.

I try with it:

  avconv -i video.mov -c: v libx264 -f mpegts udp: // [destinationIP]: 1234  

And from the "destinationIP" stream I can play.

But, how can I specify a limit of IPs and not a single IP?

I found a solution to search the web, especially reading it

transmit For Video:

  avconv -i video.mov -c: v libx264 -f mpegts udp: //224.0.0.100: 1234  

in LAN From any customer:

  mupeler udp: //224.0.0.100: 1234  

Multicast group with IP range to permit trick :

 . 224.0.0.0 to 239.255.255.255  

'1234' is the port used for the stream.


Comments