Skip to content
FrameworkStyle

mux-video

Video element for Mux-hosted HLS streams

Video element for playing Mux-hosted HLS streams. Built on hls.js with Mux-specific optimizations.

Load a source

MuxVideo takes Mux content two ways: a stream URL through src, or a structured source object.

<mux-video src="https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM.m3u8"></mux-video>

The source object builds the URL for you from a playback ID, an optional custom domain, and playback params. Playback params are just camelCased Mux playback query params; for example, max_resolution becomes maxResolution.

const video = document.querySelector('mux-video');
video.source = {
  playbackId: 'BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM',
  customDomain: 'media.example.com',
  playback: { maxResolution: '1080p' },
};

MuxVideo fires a sourcechange event when the source actually changes. Setting the same values again doesn’t fire it.

Thumbnails and storyboards

thumbnail and storyboard default to URLs derived from source: the poster image and the storyboard VTT that drives hover previews on the time slider. MuxVideo injects the storyboard <track> automatically, skipping it for live streams. Set either prop to a URL to override the derived one.

Signed playback

For signed playback, put the playback token on source.playback.token. The token replaces every other playback param, so bake modifiers like resolution and time bounds into the token when you sign it.

Thumbnail and storyboard URLs need their own audience-scoped tokens, source.thumbnail.token (aud: 't') and source.storyboard.token (aud: 's'). Without a matching image token, MuxVideo derives no thumbnail or storyboard URL, since an unsigned request would be rejected.

const video = document.querySelector('mux-video');
video.source = {
  playbackId: 'BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM',
  playback: { token: playbackToken },
  thumbnail: { token: thumbnailToken },
  storyboard: { token: storyboardToken },
};

Analytics and casting

MuxVideo plays Mux streams. It doesn’t monitor them or cast them — Mux Data and Google Cast are separate components you add to the player alongside it. Mux Data needs no environment key here, since Mux attributes the views to the environment that owns the playback ID:

<mux-video src="https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM.m3u8" playsinline></mux-video>
<mux-data player-software-name="mux-video"></mux-data>
<google-cast></google-cast>

Register the elements by importing @videojs/html/media/mux-data and @videojs/html/media/google-cast.

Examples

Basic Usage

<media-container class="media-container">
    <mux-video
        src="https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM.m3u8"
        autoplay
        muted
        playsinline
        loop
        crossorigin="anonymous"
    ></mux-video>
</media-container>