Skip to content
FrameworkStyle

LiveAudioSkin

The live audio preset's default skin, which swaps time controls for a Live button

The default skin of the live audio preset: the audio layout with the time slider and time displays swapped for a Live button. MinimalLiveAudioSkin is the same preset’s other variant. See Skins for how packaged skins work and Presets for what the live audio preset ships.

Import

import { LiveAudioSkin } from '@videojs/react/live-audio';
import '@videojs/react/live-audio/skin.css';

Usage

The skin goes between the player and the media element. It renders its controls around the media.

<LiveAudioPlayer>
  <LiveAudioSkin>
    <MuxAudio src="live.m3u8" />
  </LiveAudioSkin>
</LiveAudioPlayer>

The examples use the Mux audio element: a plain <audio> can’t play HLS in most browsers, and this element reports the live playback state the skin’s Live button needs. See Play live streams.

Styling

Packaged skins style themselves and expose a small set of public CSS custom properties. Everything else inside the skin is private and may change between releases. Customize skins documents the properties. When you need deeper changes, eject the skin.

Eject the skin

The @videojs/live-audio skin installs under components/videojs/skins/live-audio. The player and media remain package imports. Follow Customize skins to set up the CLI, install the skin, and use the copied files.