You need to transmit voice in real time via socket.io protocol or similar technology. There is an Apache server with php and a client on Angular. Need to do something that the client could communicate with another client. So I wondered if this is realistic and how to implement it?

  • 2
    You might be interested in WebRTC technology. True, not all browsers support it yet, commercial services for working with sound on the site combine Flash and WebRTC. - cheops
  • 2
    @cheops where a big problem with WebRTC is the impossibility of establishing direct connections (which, as I found out in practice, is often found) and the workarounds for this problem (TURN). Browser support is "relatively normal." - D-side
  • @ D-side Are there examples for test implementation of audio communication? - modelfak
  • @modelfak is complete, even more than chatik, but I just tried chat: for chatik, you need a DataChannel , which is not always there. - D-side

0