interface JournalEntryPageVideoData {
    loop: boolean;
    autoplay: boolean;
    volume: number;
    timestamp: number;
    width: number;
    height: number;
}

Properties

loop: boolean

Automatically loop the video?

autoplay: boolean

Should the video play automatically?

volume: number

The volume level of any audio that the video file contains.

timestamp: number

The starting point of the video, in seconds.

width: number

The width of the video, otherwise it will fill the available container width.

height: number

The height of the video, otherwise it will use the aspect ratio of the source video, or 16:9 if that aspect ratio is not available.