How is `switchMediaPresentation` used?

133 Views Asked by At

It's not clear to me how is switchMediaPresentation supposed to work after reading the docs: https://www.hbbtv.org/wp-content/uploads/2021/07/HbbTV-SPEC-00260-030-ts_103464v010301-without-ETSI-branding.pdf

I'm trying the following:

// ... previous code

<object type="application/hbbtvMediaSwitcher" class="MediaSwitcher" id="MediaSwitcher"></object>

// ... More code

<script>
  document
    .getElementById("MediaSwitcher")
    .switchMediaPresentation(
      originalMediaObject,
      newMediaObject,
    )
    .then(() => {})
    .catch(e => {})
</script>

I'm getting error document.getElementById(...).switchMediaPresentation is not a function

Any idea from my fellow HbbTV developers?

2

There are 2 best solutions below

1
On BEST ANSWER

Are you sure the device supports switchMediaPresentation and that it's enabled for you? That API is very new, there aren't many implementations and the most widespread one only enables the feature for specific apps.

0
On

switchMediaPresentation, like lots of other features is optional to support. Prior to use the switchMediaPresentation API you need to check if device implement it, for example by check of presence of "ta" element in the xmlCapabilities property of the application/oipfCapabilities embedded object.