> ## 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.

# Photoshop Files

> Using layered Photoshop files 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>;
};

export const YouTube = ({id, timestamp}) => {
  const videoSrc = timestamp ? `https://www.youtube.com/embed/${id}?start=${timestamp}` : `https://www.youtube.com/embed/${id}`;
  return <iframe width="100%" height="400" src={videoSrc} title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerPolicy="strict-origin-when-cross-origin" allowFullScreen />;
};

<YouTube id="Mlo9mQBUaTE" />

## Importing PSD Files

Drag a PSD file into Rive or import it from the Assets panel. When you import a PSD file, Rive adds its visible image layers to the Assets panel so you can place individual layers or the full composition on an artboard.

<Note>
  Hidden layers in the PSD are not imported into Rive.
</Note>

## Using PSD Layers

You can use PSD layers individually or as a full composition.

* Drag a layer onto an artboard to place that layer.
* Drag the entire PSD onto an artboard to create a group containing all imported layers.

<VideoEmbed src="https://static.rive.app/video/adding-psd-to-stage.mp4" />

## Asset Settings

PSD layers use the same asset settings as raster images. You can configure settings for individual layers or apply settings to all layers in the PSD.

## Export Behavior

Only PSD layers used in the Rive file are included in the exported `.riv` file by default.

You can adjust export options for individual layers or for all layers in the PSD. See [Assets](/editor/fundamentals/assets-overview#asset-settings) for more about export behavior.

## Reimporting PSD Files

You can replace or reimport a PSD to update its layers in Rive.

<Warning>
  Keep PSD layer names consistent when reimporting. If you rename a layer in Photoshop and reimport the PSD, Rive treats it as a new layer. Any objects using the old layer may lose their asset reference.
</Warning>
