Interface ID3PositionSynchronisationFrame

Represents an position synchronisation ID3 frame.

interface ID3PositionSynchronisationFrame {
    format: number;
    id: "POSS";
    position: number;
}

Hierarchy (view full)

Properties

Properties

format: number

The format of the timestamp, represented by a value from the following list:
- 1: Absolute time, 32 bit sized, in MPEG frames.
- 2: Absolute time, 32 bit sized, in milliseconds.

id: "POSS"

The identifier of the frame.

position: number

The timestamp of the frame.

Generated using TypeDoc