user674961
user674961

Reputation: 51

Video Chatting or Conferencing in Web Appllication

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

Answers (2)

Pergin Sheni
Pergin Sheni

Reputation: 401

This is best suitable API for Video/Audio Chatting/Call or Conferencing in Web Appllication

https://tokbox.com/developer/tutorials/

Upvotes: 0

Mikael Holmgren
Mikael Holmgren

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

Related Questions