You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a work around for this. When creating sources I have to add a second source that does not include the type attribute. This appears to work on Safari now.
const sources = [
// without type, this fails to load in Chrome in my http dev environment
{
file: fileUrl,
type: mimeType,
},
// Setting the type on Safari causes the .m3u8 file to fail to load properly
// This second source will be loaded if the first one fails
{
file: fileUrl,
},
]
I do not see this issue in Chrome or other browsers with the same .m3u8 files.
If I set the file to be an .mp4, it loads successfully.
The text was updated successfully, but these errors were encountered: