Interface MediaOverlayNode

A media overlay in the book.

interface MediaOverlayNode {
    audio: ContentSource<ArrayBuffer, ArrayBuffer>;
    duration: number;
    id: string;
    text: ContentSource<Text, string>;
    type: MediaOverlay;
}

Hierarchy (view full)

  • Node
    • MediaOverlayNode

Properties

audio: ContentSource<ArrayBuffer, ArrayBuffer>

The audio of the overlay.

duration: number

The duration of the overlay.

id: string

The unique identifier of the node.

text: ContentSource<Text, string>

The text of the overlay.

The type of the node.