I've successfully setup a WebSocket server using Ratchet for PHP on Windows/IIS. I went with Ratchet's available WAMP(WebSocket Application Messaging Protocol) setup so that I have Pub/Sub and RPC capabilities. That's been great for minor things like chatting or simple updates. What I am curious about is how to stream raw binary data (like audio/video) to a target audience (1 or more people)...
Server(s) :
- Windows 7 (64-bit) / Windows 2008 Server Enterprise (64-bit)
- PHP 5.4.x
- Ratchet (WebSocket Server) http://socketo.me/docs/wamp
Client Setup:
- Autobahn|JS http://autobahn.ws/js/
- when.js https://github.com/cujojs/when
Is there a solution out there using my setup that allows me to stream binary data to a target audience? Thanks in advance!