Skip to content

Antelcat/mediasoup-sharp

Repository files navigation

mediasoup-sharp

Cutting Edge WebRTC Video Conferencing ported to .NET from mediasoup

Example

Example

Reference

mediasoup-banner

Dependency

Getting Start

Try Antelcat.MediasoupSharp.Demo, which is an ASP.NET server side, the client app is from mediasoup-demo

get into mediasoup demo, and install npm packages in app and server

cd mediasoup
cd server
npm install

after install packages in app, gulp build web app

cd mediasoup
cd app
npm install
npm run start

remember to config your announced address in mediasoup.config.json

for example :

{
    "protocol": "udp",
    "ip": "0.0.0.0",
    "announcedAddress": "your announced Address",
    "portRange": {
        "min": 40000,
        "max": 49999
    }
}

when all above were done, dotnet run Antelcat.MediasoupSharp.Demo