Search code examples
audiostreamingflash-media-server

Streaming audio from client to server


For a while, I have been looking for a way to stream/ transfer/ upload (Not too sure about what is considered as correct, but the source is a client and the destination is a server). I am a bit familiar with protocols used for streaming as we know it (From Server to Client) but not the other way. I could code it but I was wondering whether there is a better wa, such as using server-side software. I would appreciate thoughts, guides and keen on working on that until a solution is found and happy to share any code. Many thanks


Solution

  • You can stream binary data from client to server using websockets, and this nifty js library.

    http://binaryjs.com/

    Hope this helps.