# Timelapse specs (.pxtl file)

If you're not familiar with the basic models or how .px\* file encoding works, please revisit [Binary specs](/pixquare-file/binary-specs.md).

### TimelapseFrame

```
UInt32      Signature, always 0xffffffff, if it's not, this is a legacy frame.
            We do not discuss legacy frame here, I guess we'll just ignore this timelapse file.
Size        The canvas (or frame in this context) size
UInt32      Color data size in bytes
[Byte]      Compressed color data using zlib compression. 
            The size of this data chunk is the previous value.
            After decompressing, it will be in the form of [ARGBColor]
```

The .pxtl is just a series of `TimelapseFrame` ones after another. We simply decode them until we reach the end of the file.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pixquare.art/pixquare-file/binary-specs/timelapse-specs-.pxtl-file.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
