WebRTC and Blazor #434
Replies: 2 comments 6 replies
-
I think Blazor server/Wasm you would want to use javascript wrappers. The problem with Blazor server is everything would be a roundtrip to the server and back, so for something like datachannels it makes zero sense. However I would think it would be fine to start a video call. |
Beta Was this translation helpful? Give feedback.
-
Apparently Blazor Apps are going to be supported within MAUI apps for .NET 6. Sounds kind of like the WebView control in a Windows Form/WPF app. It was mentioned in the .NET Rocks podcast. I didn't spot a link but I'm sure there's more info out there somewhere. I guess the main, or one of, uses for this would be to have the same UI logic for web, desktop and mobile apps. Something that's never quite worked out in the last 20 years but probably will one day. For WebRTC it'll be interesting to see if a Blazor/WebView control hosted by MAUI supports the full WebRTC pipeline. |
Beta Was this translation helpful? Give feedback.
-
I'm interested in any experiences anyone has had using WebRTC in a Blazor app. I know next to nothing about Blazor. It's always on my ToDo list but Unity3D or Xamarin always seems to get in ahead of it.
With my very limited knowledge the way I understand how WebRTC and Blazor can work are:
Doesn't use the Browser's WebRTC functionality so would require a .NET WebRTC library of some kind on the server.Use JS interop and the Browser's WebRTC functions.Is this correct?
Beta Was this translation helpful? Give feedback.
All reactions