Reputation: 1
I was trying to get the Azure Media Player running in Blazor - no success. Everything works fine in an Asp.net core project.
In Blazor its always the normal Html player. Tried it with diffrent browsers - always the same.
It must have something to do with the js not get loaded correctly.
Does anybody has an idea?
Here is an example where i put the script and style: https://blazorfiddle.com/s/bhos6ocq
Upvotes: 0
Views: 2030
Reputation: 1
try to use the HLS(v4) url with m3u8 format, then use this library to display it with the html video tag : https://github.com/video-dev/hls.js
Upvotes: 0