SharpRTSPtoWebRTC
A C# implementation of the RTSP to WebRTC gateway that allows you to stream RTSP from various sources to the web browser. Suppports H264, H265 and AV1 re-streaming. Audio transcoding from AAC to Opus is also supported.
File Explorer
Download Latest Version (.zip)- vite.svg
- react.svg
- App.css
- App.jsx
- CameraViewer.jsx
- index.css
- main.jsx
- .gitignore
- Directory.Build.props
- eslint.config.js
- index.html
- package-lock.json
- package.json
- rtsptowebrtc.client.esproj
- vite.config.js
- WebRTCController.cs
- FolderProfile.pubxml
- launchSettings.json
- appsettings.Development.json
- appsettings.json
- CameraConfiguration.cs
- Program.cs
- RTSPtoWebRTC.Server.csproj
- RTSPtoWebRTC.Server.http
- OpusAudioEncoder.cs
- RTSPtoWebRTCProxy.cs
- RTSPtoWebRTCProxyService.cs
- SharpRTSPtoWebRTC.csproj
- Directory.Build.props
- SharpRTSPtoWebRTC.sln
- .gitignore
- demo.gif
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/jimm98y/SharpRTSPtoWebRTC
Downloads the entire project code from GitHub to your computer.
cd SharpRTSPtoWebRTC
Moves into the project folder you just downloaded.
2. .NET
Medium RecommendedPrerequisites
cd src/RTSPtoWebRTC.Server
This project's files live in a subfolder, so move into it first.
dotnet restore
Downloads the packages the project depends on.
dotnet run
Builds the project and runs it immediately.
After dotnet run, check the message or address shown in the terminal.
3. Node.js
EasyPrerequisites
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd src/rtsptowebrtc.client
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
