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
shaka.Player.isBrowserSupported is mean to tell the app if the browser will be able to create a shaka.Player instance.
Before, we relied on checking if MediaSource existed as a way to establish a general minimum requirement. However, now that we allow src= to be used, things are more complicated.
isBrowserSupported needs to be updated to handle the nuance of when shaka.Player can work without MediaSource.
The text was updated successfully, but these errors were encountered:
By dispatching the shaka-ui-loaded event when we give up because of
browser support, apps can still finish their own setup and show an
appropriate support error.
This bug was discovered while working on #1857
Change-Id: If584ba916f7ba2e807f4861638d66319e8c8638f
shaka.Player.isBrowserSupported
is mean to tell the app if the browser will be able to create ashaka.Player
instance.Before, we relied on checking if
MediaSource
existed as a way to establish a general minimum requirement. However, now that we allowsrc=
to be used, things are more complicated.isBrowserSupported
needs to be updated to handle the nuance of whenshaka.Player
can work withoutMediaSource
.The text was updated successfully, but these errors were encountered: