RemotionUI
Signals

Waveform Line

Audio waveform line visualization.

PrimitivesignalsAdvanced

Install
npx remotion-ui@latest add waveform-line

Smooth waveform path powered by @remotion/media-utils.

Live preview
Advanced — installs @remotion/media-utils.

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add waveform-line

Import after install

@/remotion/primitives/waveform-line
  • Use when: audio-first videos, podcast clips, and waveform visuals.
  • Customize: src, height, mirror, 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

import { WaveformLine } from "@/remotion/primitives/waveform-line";

<WaveformLine src={staticFile("voice.wav")} mirror />

API Reference

PropTypeDescription
src*stringAudio source.
heightnumberSVG waveform height.
mirrorbooleanDraw a reflected waveform.

Related