Skip to content
FrameworkStyle

AudioSkin

Accessible audio controls for playback, seeking, volume, speed, and feedback

Use it for an audio player with a familiar full control set.

0:00

Use the packaged preset

import { AudioPlayer, AudioSkin } from '@videojs/react/audio';
import { Audio } from '@videojs/react/audio';
import '@videojs/react/audio/skin.css';

export function Player() {
  return (
    <AudioPlayer>
      <AudioSkin>
        <Audio src="audio.mp3" />
      </AudioSkin>
    </AudioPlayer>
  );
}

Install editable source

Install this Skin and its exact dependencies with Shadcn, or copy the same generated files manually. The Player and media remain package imports.

Add the @videojs namespace for the reacttailwind catalog, then install the editable source.

{
  "registries": {
    "@videojs": "https://shadcn.videojs.org/r/react/{name}.json"
  }
}
pnpm dlx shadcn@latest add @videojs/audio

Requires `@videojs/react@10.0.0-beta.32`, which is installed with this item.

Customize the skin

Packaged skins support --media-accent-color, --media-accent-text-color,--media-border-radius, and --media-scale-unit. Add your own class name and style values to the skin root.

See Customize skins for the complete styling and ownership workflow.

Behavior and API

  • The packaged export is AudioSkin in React and<audio-skin> in HTML.
  • The on-demand preset includes duration and seeking behavior.
  • Default exposes the full primary and secondary control regions.

For player state and feature details, see Presets. For the UI building blocks, see UI components.