hi all,... iam newbie here. i want to make video conference using ASP.NET & C#. my application is web based. its possible....???
please, if you have know article or anything its help to me...
thanx friends..... :mrgreen:
hi all,... iam newbie here. i want to make video conference using ASP.NET & C#. my application is web based. its possible....???
please, if you have know article or anything its help to me...
thanx friends..... :mrgreen:
Short answer: yes — a web-based video conference can be built with ASP.NET and C#. Modern implementations put the media path in the browser (WebRTC) and use an ASP.NET app as the web server and signaling channel. This post updates the old thread for and ; correctly pointed out the thread age, so the following gives a current, practical approach.
Minimal architecture and steps:
getUserMedia and create a RTCPeerConnection for audio/video.Example (simple SignalR hub to forward offers/answers/ICE):
using Microsoft.AspNetCore.SignalR;
public class SignalingHub : Hub
{
public async Task SendOffer(string toConnectionId, string sdp) =>
await Clients.Client(toConnectionId).SendAsync("ReceiveOffer", Context.ConnectionId, sdp);
public async Task SendAnswer(string toConnectionId, string sdp) =>
await Clients.Client(toConnectionId).SendAsync("ReceiveAnswer", Context.ConnectionId, sdp);
public async Task SendIceCandidate(string toConnectionId, string candidate) =>
await Clients.Client(toConnectionId).SendAsync("ReceiveIceCandidate", Context.ConnectionId, candidate);
} Notes and common pitfalls: browsers require secure origins for getUserMedia; permissions must be granted; ICE candidates may be blocked by corporate firewalls (TURN required); bandwidth/CPU limits become apparent with many participants (use SFU or cloud services for scale). For a learning path, build a one-to-one WebRTC demo with SignalR signaling, verify STUN/TURN, then add an SFU or third‑party SDK for multi-party and recording. This keeps the original question answered while respecting the thread closure by .
Jump to Post— kvprajapati 1,826Welcome sachin kumar46.
Have you ever noticed that the current thread is four years old? Please do not resurrect old/solved threads.
If you want to ask question, start your own thread.…
Please read the rules before posting again - http://www.daniweb.com/forums/thread78223.html and rules.
if you have any idea so plz send me ..............bye
Welcome sachin kumar46.
Have you ever noticed that the current thread is four years old? Please do not resurrect old/solved threads.
If you want to ask question, start your own thread.
Please read the rules before posting again - http://www.daniweb.com/forums/thread78223.html and rules.
Thread Closed.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.