nkzawa / socket.io-stream

Stream for Socket.IO
MIT License
611 stars 111 forks source link

Example for sending a webrtc webcam stream? #58

Open joshterrill opened 9 years ago

joshterrill commented 9 years ago

Is this possible? I've looked everywhere to try to find an example of it and can't seem to find one.

nkzawa commented 9 years ago

I have no idea about that, but check socket.io-p2p too.

https://github.com/socketio/socket.io-p2p

darkyen commented 8 years ago

@joshterrill what are you trying to achieve?

BipinBhandari commented 8 years ago

I am trying to send stream of webcam videos (stream in following snippet):

navigator.getUserMedia({
              'audio': false,
              'video': true
          }, function (stream) {
})

to server. How to accomplish this?

joshterrill commented 8 years ago

@BipinBhandari check this out: https://github.com/xat/webcam-binaryjs-demo