> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encord.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Objects.spaces.multiframe space.video space

## VideoSpace Objects

```python theme={"dark"}
class VideoSpace(MultiFrameSpace)
```

Space implementation for frame-based video and image-sequence annotations.

#### \_\_init\_\_

```python theme={"dark"}
def __init__(space_id: str, label_row: LabelRowV2, space_info: SpaceInfo,
             number_of_frames: int, width: int, height: int,
             is_image_sequence: bool)
```

Initialize a video or image-sequence space.

**Arguments**:

* `space_id` - The unique identifier of the space.
* `label_row` - The label row that owns the space.
* `space_info` - The raw space information used to populate the space.
* `number_of_frames` - The total number of frames in the space.
* `width` - The width of each frame in pixels.
* `height` - The height of each frame in pixels.
* `is_image_sequence` - Whether the space represents an image sequence
  rather than a video.
