> ## Documentation Index
> Fetch the complete documentation index at: https://rive-transitions-2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Audio Assets

> Import, clip, and configure audio assets in Rive.

export const VideoEmbed = ({src}) => {
  return <div style={{
    width: "100%",
    height: "100%",
    overflow: "hidden"
  }}>

      <video src={src} autoPlay loop muted playsInline style={{
    width: "100%",
    height: "100%",
    borderRadius: 0,
    margin: 0,
    display: "block",
    objectFit: "cover",
    backgroundColor: "transparent"
  }} />
    </div>;
};

## Importing Audio

See [Importing Assets](/editor/fundamentals/assets-overview#importing-assets) for information about importing files, including MP3, WAV, and FLAC files.

### Browse Sounds

Browse Sounds gives you direct access to a free library of over 3,000 sounds from Soundly.

<Steps>
  <Step>
    In the Assets panel, click **+** and select **Browse Sounds**.
  </Step>

  <Step>
    In the Sounds panel, search or browse for a sound.
  </Step>

  <Step>
    Preview the sound, then click **+** to add it to the Assets panel.
  </Step>
</Steps>

<VideoEmbed src="https://static.rive.app/video/browse-sounds.mp4" />

After adding a sound to the Assets panel, you can use it in an [Audio Event](/editor/events/audio-events) or reference it from a [script](/scripting/getting-started).

## Export Options

Audio assets include a **Source** option that controls the audio format used for export.

* **Source**: Use the original imported audio format.
* **WAV**: Export the audio as WAV.
* **FLAC**: Export the audio as FLAC.
* **MP3**: Export the audio as MP3.

## Creating Clips

You can create a shorter clip from any audio asset.

<Steps>
  <Step>
    Open the **Audio** panel in the **Debug Panel**.
  </Step>

  <Step>
    Select an audio asset in the **Assets** panel.
  </Step>

  <Step>
    Drag along the waveform to select a portion of the audio and click the play button to preview.
  </Step>

  <Step>
    Click **+** to create a clip.
  </Step>
</Steps>

The new clip will now appear as its own audio asset under the parent audio in the sidebar.

<VideoEmbed src="https://static.rive.app/video/create-audio-clip.mp4" />

## Setting Asset Volume

Select an audio asset or clip to set its **Volume** in the Inspector.

Volume is set on the asset, not on each individual use of the asset. If the same audio asset is used in multiple places, changing its volume affects all of them.

<img src="https://mintcdn.com/rive-transitions-2/pUWAhxU9qubdBvIR/images/editor/assets/audio-asset-volume.png?fit=max&auto=format&n=pUWAhxU9qubdBvIR&q=85&s=755ed6d02520df9438aff5f37ba4e05f" alt="Audio asset volume" width="2390" height="1340" data-path="images/editor/assets/audio-asset-volume.png" />
