Integrating Video Conferencing in a Blazor Application

Cenk 1,021 Reputation points
2024-11-22T10:47:35.1433333+00:00

I want to use video conferencing in my Blazor application. Here is a requirement for my application.

Virtual Classroom: Integrate a video conferencing library to build a real-time classroom experience. Explore libraries offering screen-sharing capabilities.

Is it possible to use Zoom or Jitsi, and are there any tutorials available on how to do it?

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,645 questions
Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,605 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 67,406 Reputation points
    2024-11-22T17:16:40.5033333+00:00

    You would use jsinterop to call a javascript based video library. the library will make use of the browsers audio and video support (WebRTC):

    https://developer.mozilla.org/en-US/docs/Web/Media/Audio_and_video_delivery

    not familiar with Jitsi, but it has javascript WebRTC component that should be usable from Blazor.

    note: you will probably need a server application to allow clients to find each other and communicate. the Jitsi server components are java based.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.