Reputation: 51
Can any one tell me what would be best suitable API or mediator for enabling video chatting/conferencing (live) in my web application (using .net technology)
Thanks in advance
Upvotes: 0
Views: 548
Reputation: 401
This is best suitable API for Video/Audio Chatting/Call or Conferencing in Web Appllication
https://tokbox.com/developer/tutorials/
Upvotes: 0
Reputation: 2506
WebRTC is supported in Chrome and Firefox (Opera?) and perfect for video conferencing. It is not a .net technology but I do not see any problem in using it in a .net environment since the browsers have native support for it.
Use getUserMedia
to get the stream from camera.
Set up an RTCPeerConnection
and send the stream through that connection.
Upvotes: 1