<media-controller>

The <media-controller> manages communication of state and state change requests between a media element and control elements. It also provides some built in sizing and layout to make styling your player as easy as possible.

audio (boolean)

Use this to enable audio chrome UI, which will not have any of the slots described in the Position controls guide, but instead have a single default slot for adding markup.

<media-controller audio>
  ...
</media-controller>

autohide (seconds, default: 2) (video only)

Use this to autohide all controls/chrome (except for the media) after n seconds of inactivity, unless the media is paused. To disable autohide, set the value to -1.

Example:

<media-controller autohide="2">
  ...
</media-controller>
Example autohide behavior

Example (autohide disabled):

<media-controller autohide="-1">
  ...
</media-controller>

breakpoints (string of multiple values, default: sm:384 md:576 lg:768 xl:960)

Change the default breakpoints that will get activated once the player width equals or is greater than the breakpoint value. The breakpoints are propagated as breakpointx attributes on media-controller and as breakpointx theme variables.

<media-controller breakpoints="sm:300 md:700">
  ...
</media-controller>

defaultsubtitles (boolean)

When enabled, this will cause captions or subtitles to be turned on by default, if available.

defaultduration (number, in seconds)

When enabled, this will use the value of defaultduration as the mediaduration before the media has been loaded. This is useful when you want to avoid preloading the media (e.g. for cost or network usage reasons) but still want the UI to show what the (already known) duration will be.

Example:

<media-controller defaultduration="134"> <!-- aka 2:14 -->
  <video slot="media" src="..." preload="none"></video> <!-- don't automatically load the media -->
  <media-time-display showduration></media-time-display> <!-- This will show 0:00 / 2:14 before the media is loaded and the actual duration after -->
</media-controller>

defaultstreamtype (values: live, on-demand)

Media controller can’t know the stream is live or on-demand until the media is loaded. Setting defaultstreamtype can prevent UI changes happening between when the player is loaded and when the media is loaded. This may happen when a player is built to support both stream types, and then is used to play a stream type that is different from the player’s default.

See also mediastreamtype.

<media-controller defaultstreamtype="live">
  ...
</media-controller>

fullscreenelement (id string)

By default, the media-controller will be the target element when entering fullscreen. However, you may specify a different element by setting fullscreenelement to that element’s id attribute.

<div id="wrapper">
  <media-controller fullscreenelement="wrapper">
    ...
  </media-controller>
  <div>This will show up when in fullscreen.</div>
  ...
</div>

NOTE: For more advanced use cases, there is also the fullscreenElement property, which allows you to set the target fullscreen element by reference instead.

mediaControllerEl.fullscreenElement = myWrapperEl;

gesturesdisabled (boolean, video only)

Use this to turn off any built in or custom gestures, such as “click to toggle play/pause”.

Example (disabling gestures via gesturesdisabled):

<media-controller gesturesdisabled>
  ...
</media-controller>

nohotkeys (boolean)

Use this to turn off all keyboard shortcuts.

Example (hotkeys disabled):

<media-controller nohotkeys>
  ...
</media-controller>

hotkeys (string of multiple values)

Use this to turn off certain hotkeys. If both hotkeys and nohotkeys are added to the MediaController, all hotkeys will be disabled.

Example (disallow seeking shortcuts):

<media-controller hotkeys="noarrowleft noarrowright">
  ...
</media-controller>

keyboardforwardseekoffset (positive number, seconds)

Use this to override the default seek forward offset (10s) when using hotkeys (right arrow).

Example (right arrow key press seeks forward 15 seconds):

<media-controller keyboardforwardseekoffset="15">
  ...
</media-controller>

keyboardbackwardseekoffset (positive number, seconds)

Use this to override the default seek backward offset (10s) when using hotkeys (left arrow).

Example (left arrow key press seeks backward 5 seconds):

<media-controller keyboardbackwardseekoffset="5">
  ...
</media-controller>

liveedgeoffset (positive number, seconds)

For live media streams, you may want to know a range of times that, when playing, count as playing “the live edge”. The liveedgeoffset defines the delta, in seconds, from the latest playable/seekable time that should count as the live edge. By default this value is 10 (seconds). The <media-live-button> element uses this to indicate when playback is or is not live.

See also:

<media-controller liveedgeoffset="5">
  ...
</media-controller>

noautoseektolive (boolean)

By default, when a user unpauses a live stream, media-controller will also automatically seek to the most current time (or live edge) in the live stream. If you don’t want media-controller to do this you can include the noautoseektolive attribute.

<media-controller noautoseektolive>
  ...
</media-controller>
Name Type Description
defaultsubtitles boolean
defaultstreamtype string
defaultduration string
fullscreenelement string
nohotkeys boolean
hotkeys string
keysused string
liveedgeoffset string
noautoseektolive boolean
novolumepref boolean
nosubtitleslangpref boolean
nodefaultstore boolean
audio boolean
autohide string
breakpoints string
gesturesdisabled boolean
keyboardcontrol boolean
noautohide boolean
userinactive boolean
Name Default Description
--media-background-color #000 background-color of container.
--media-slot-display none display of the media slot (default none for [audio] usage).