Type alias MediaSlotInfo

MediaSlotInfo: {
    color: MediaColor;
    createdDate: Date;
    deviceId: DeviceID;
    freeBytes: BigInt;
    hasSettings: boolean;
    name: string;
    playlistCount: number;
    slot: MediaSlot;
    totalBytes: BigInt;
    trackCount: number;
    tracksType: TrackType;
}

Details of a particular media slot on the CDJ

Type declaration

  • color: MediaColor

    The rekordbox configured color of the media connected

  • createdDate: Date

    Creation date

  • deviceId: DeviceID

    The device the slot physically exists on

  • freeBytes: BigInt

    Number of free bytes available on the media

  • hasSettings: boolean

    True when a rekordbox 'my settings' file has been exported to the media

  • name: string

    The name of the media connected

  • playlistCount: number

    Same as track count, except for playlists

  • slot: MediaSlot

    The slot type

  • totalBytes: BigInt

    Number of bytes used on the media

  • trackCount: number

    Total number of rekordbox tracks on the media. Will be zero if there is no rekordbox database on the media

  • tracksType: TrackType

    Specifies the available tracks type on the media

Generated using TypeDoc