# VideoSpatialQuality

> Controls the imported clip's internal resize to save space at the cost of blurrier images.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.0/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public enum VideoSpatialQuality
```

## Remarks

The resulting clip will still store its original size but the encoded images will use smaller images. This provides an alternative way of reducing the bitrate without introducing codec artifacts.

## Fields

| Value                                                                                                           | Description                     |
| --------------------------------------------------------------------------------------------------------------- | ------------------------------- |
| [HighSpatialQuality](/engine/6000.0/script-reference/unityeditor/videospatialquality/highspatialquality.md)     | No resize performed.            |
| [LowSpatialQuality](/engine/6000.0/script-reference/unityeditor/videospatialquality/lowspatialquality.md)       | Scales width and height by 1/2. |
| [MediumSpatialQuality](/engine/6000.0/script-reference/unityeditor/videospatialquality/mediumspatialquality.md) | Scales width and height by 3/4. |
