Reputation: 2393
I want to develop a video chat in my ASP Net Web Project and I would appreciate a piece of advice on how to implement it
A user clicks a button open video chat and he is redirected to a page, where the chat can happen.
So when he is redirected he is asked for permission to use mic and video and waits for someone to join. When he sends the same URL where he is located and someone joins the video chat starts.
I've seen WebRTC demo with SignalR and to be more specific this article: Click
The only problem with this article is that it seems that WebRTC is using STUN/TURN servers. I am not familiar with how to create one and if there are public ones to use, like a google one.
const configuration = {
iceServers: [
{
urls: [
'stun:stun1.l.google.com:19302',
'stun:stun2.l.google.com:19302',
],
},
],
iceCandidatePoolSize: 10,
};
I have seen those ones in a couple of GitHub projects, but recent posts claim that they are not working anymore.
Upvotes: 3
Views: 808