Forum Discussion
ADefWebserver
Apr 21, 2021Brass Contributor
I want to make a Blazor application that can make video calls
I want to make a Blazor application that can make video calls. However, according to this page: https://docs.microsoft.com/en-us/azure/communication-services/concepts/sdk-options Azure.Communicat...
- Apr 21, 2021
ADefWebserver The Hero sample might be overkill to follow, it might be easier to look at the quickstart here: https://docs.microsoft.com/en-us/azure/communication-services/quickstarts/voice-video-calling/get-started-with-video-calling
You'll need to interop to:
- Create the CallClient and CallAgent
- Init the DeviceManager
- Call callAgent.startCall()
- Respond to any event on the all (participant, or stream added)
shawnhenry
Microsoft
Apr 21, 2021ADefWebserver The Hero sample might be overkill to follow, it might be easier to look at the quickstart here: https://docs.microsoft.com/en-us/azure/communication-services/quickstarts/voice-video-calling/get-started-with-video-calling
You'll need to interop to:
- Create the CallClient and CallAgent
- Init the DeviceManager
- Call callAgent.startCall()
- Respond to any event on the all (participant, or stream added)
ADefWebserver
Apr 21, 2021Brass Contributor
Yes, that provides me what I need to get started. Thank You
- shawnhenryApr 21, 2021
Microsoft
I'd love to see a blog post when you get it working 😉- ADefWebserverJun 16, 2021Brass Contributor
shawnhenry I posted an article here: https://blazorhelpwebsite.com/ViewBlogPost/52
- WaltDogSep 14, 2021Copper ContributorADefWebserver awesome! Thanks for your hard work.