Back to Remotion

Controlling Pitch

packages/docs/docs/audio/pitch.mdx

4.0.457946 B
Original Source

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

:::warning Pitch correction is currently only applied during rendering. :::

You can use the toneFrequency prop to control the pitch of the audio during rendering.

Values between 0.01 and 2 are accepted, where 1 represents the original pitch. Values less than 1 will decrease the pitch, while values greater than 1 will increase it.

A toneFrequency of 0.5 would lower the pitch by half, and a toneFrequency of 1.5 would increase the pitch by 50%.

tsx
import {Html5Audio, staticFile, AbsoluteFill} from 'remotion';

export const MyComposition = () => {
  return (
    <AbsoluteFill>
      <div>Hello World!</div>
      <Html5Audio src={staticFile('audio.mp3')} toneFrequency={0.8} />
    </AbsoluteFill>
  );
};