RemotionUI

Audiogram Bars

Audio-reactive spectrum bar visualization.

PrimitiveData & mediaAdvanced

audiogram-bars30fps · 960×540
Install
$ npx remotion-ui@latest add audiogram-bars

Spectrum bars driven by visualizeAudio() from @remotion/media-utils.

Advanced. Installs @remotion/media-utils.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/primitives/audiogram-bars
  • Use when: audio-first videos, podcast clips, and waveform visuals.
  • Customize: src, height, barColor, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

Example
import { AudiogramBars } from "@/remotion/primitives/audiogram-bars"; <AudiogramBars src={staticFile("podcast.wav")} height={120} />

API Reference

PropTypeDescription
src*stringAudio file URL or staticFile path.
heightnumberBar container height.
barColorstringBar fill color.

Related