3

On a college project I need to stream videos from a server to a web client using UDP protocol. I've been searching everywhere but haven't found a solution.

Diego
  • 63
  • 1
  • 5
  • The only one I am aware of is QUIC. And thats only supported in chrome I believe. Otherwise you are looking at a custom plugin. – szatmary Mar 31 '15 at 20:15

1 Answers1

1

UDP video streaming isn't really supported directly in the browser. You could send your stream using RTP over UDP but you'll need a browser plugin to play it. Some examples include the VLC, RealPlayer, QuickTime web plugins.

aergistal
  • 29,947
  • 5
  • 70
  • 92
  • @Diego, and you could look to WebChimera plugin (http://WebChimera.org) - it's based on libvlc. – RSATom Apr 01 '15 at 07:49
  • @RSATom that URL seems to be broken, the project is still on: https://github.com/RSATom/WebChimera however it is deprecated. – Paul Feb 06 '20 at 10:34