![]() |
VOOZH | about |
dotnet add package SharpRTSPtoWebRTC --version 0.1.5
NuGet\Install-Package SharpRTSPtoWebRTC -Version 0.1.5
<PackageReference Include="SharpRTSPtoWebRTC" Version="0.1.5" />
<PackageVersion Include="SharpRTSPtoWebRTC" Version="0.1.5" />Directory.Packages.props
<PackageReference Include="SharpRTSPtoWebRTC" />Project file
paket add SharpRTSPtoWebRTC --version 0.1.5
#r "nuget: SharpRTSPtoWebRTC, 0.1.5"
#:package SharpRTSPtoWebRTC@0.1.5
#addin nuget:?package=SharpRTSPtoWebRTC&version=0.1.5Install as a Cake Addin
#tool nuget:?package=SharpRTSPtoWebRTC&version=0.1.5Install as a Cake Tool
This is a bridge in between RTSP and WebRTC implemented in C#. It can take any H264/H265/AV1 RTSP stream and feed it through WebRTC to the web browser. It does not perform any video transcoding which makes it lightweight and portable. It does support audio transcoding from AAC to Opus, all implemented in netstandard and NET10 without any native dependencies.
Because no video transcoding is being performed, the web browsers must support decoding of the source video codecs in WebRTC.
This should be supported by the majority of web browsers as it is among the codecs required by WebRTC. There might be an exception for Firefox on Android according to this: https://developer.mozilla.org/en-US/docs/Web/Media/Formats/WebRTC_codecs.
Although most of the web browsers today support H265 video decoding, it does not mean H265 will also work in WebRTC. As of April 2025, H265 in WebRTC is supported in the latest releases of Safari. It is also supported in Chrome Canary 136+.
Most modern web browsers support AV1 in WebRTC.
There is a sample ASP.NET Core app that demonstrates the functionality on multiple live streams. To change the default configuration, just modify the appsettings.json:
"Cameras": [
{
"Name": "name1",
"Url": "rtsp://url1",
"UserName": "MyUserName",
"Password": "MyPassword"
},
{
"Name": "name2",
"Url": "rtsp://url2",
"UserName": null,
"Password": null
}
]
Start with the standard "React and ASP.NET Core" project template. In Program.cs, add the following piece of code to register the RTSPtoWebRTCProxyService:
builder.Services.AddSingleton<RTSPtoWebRTCProxyService>();
Then (optionally) add the configuration of streams from appsettings.json:
builder.Services.Configure<List<CameraConfiguration>>(builder.Configuration.GetSection("Cameras"));
Implement a minimal WebRTC signalling controller, for instance:
[ApiController]
[Route("api/[controller]")]
public class WebRTCController : ControllerBase
{
private readonly IList<CameraConfiguration> _cameras;
private readonly RTSPtoWebRTCProxyService _webRTCServer;
public WebRTCController(IOptions<List<CameraConfiguration>> cameras, RTSPtoWebRTCProxyService webRTCServer)
{
_cameras = cameras.Value;
_webRTCServer = webRTCServer;
}
[HttpGet]
[Route("getcameras")]
public IActionResult GetCameras()
{
return Ok(_cameras.Select(x => x.Name).ToList());
}
[HttpGet]
[Route("getoffer")]
public async Task<IActionResult> GetOffer(string id, string name)
{
return Ok(await _webRTCServer.GetOfferAsync(id, camera.Url, camera.UserName, camera.Password, camera.StartPort, camera.EndPort));
}
[HttpPost]
[Route("setanswer")]
public IActionResult SetAnswer(string id, [FromBody] RTCSessionDescriptionInit answer)
{
_webRTCServer.SetAnswer(id, answer);
return Ok();
}
[HttpPost]
[Route("addicecandidate")]
public IActionResult AddIceCandidate(string id, [FromBody] RTCIceCandidateInit iceCandidate)
{
_webRTCServer.AddIceCandidate(id, iceCandidate);
return Ok();
}
}
Finally, for the WebRTC viewer you can refer to src/rtsptowebrtc.client/src/CameraViewer.jsx.
It is recommended to use a TURN server such as https://github.com/coturn/coturn when hosting this project on the Internet.
To host this project on a public IP address without using a TURN server, you will have to configure port ranges (StartPort, EndPort) for each camera in appsettings.json. Then you have to configure port forwarding of all the ports in the configured port ranges to this server + port forwarding for the web application.
In some cases, you might also want to configure your server public IP address to be included in the ICE candidates. You can use PublicIPv4 and PublicIPv6 in appsettings.json for this purpose.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 is compatible. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.5 | 117 | 6/10/2026 |
| 0.1.4 | 125 | 5/21/2026 |
| 0.1.3 | 112 | 5/20/2026 |
| 0.1.2 | 139 | 4/12/2026 |
| 0.1.1 | 223 | 2/12/2026 |
| 0.1.0 | 251 | 11/15/2025 |
| 0.0.17 | 511 | 8/30/2025 |
| 0.0.16 | 324 | 5/31/2025 |
| 0.0.15 | 252 | 5/29/2025 |
| 0.0.14 | 213 | 5/28/2025 |
| 0.0.13 | 551 | 4/6/2025 |
| 0.0.12 | 209 | 4/5/2025 |
| 0.0.11 | 176 | 4/5/2025 |
| 0.0.10 | 241 | 4/1/2025 |
| 0.0.8 | 166 | 3/29/2025 |
| 0.0.6 | 601 | 11/9/2024 |
| 0.0.5 | 477 | 6/17/2024 |
| 0.0.3-alpha | 287 | 1/24/2024 |
| 0.0.2-alpha | 321 | 12/14/2023 |
| 0.0.1-alpha | 314 | 6/4/2023 |