RemotionUI
Signals

Audiogram Scene

Podcast audiogram layout with spectrum bars.

ScenesignalsAdvanced

Install
npx remotion-ui@latest add audiogram-scene

Podcast-style layout combining title and live audio visualization.

Live preview

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add audiogram-scene

Import after install

@/remotion/scenes/audiogram-scene
  • Use when: audio-first videos, podcast clips, and waveform visuals.
  • Customize: src, title, subtitle, 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 { AudiogramScene } from "@/remotion/scenes/audiogram-scene";

<AudiogramScene src={staticFile("podcast.wav")} title="Episode 1" />

API Reference

PropTypeDescription
src*stringAudio file URL or staticFile path.
titlestringEpisode title.
subtitlestringOptional subtitle.

Related