Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Represents the audio element in epub media overlays. For explanation of fields see: See https://www.w3.org/publishing/epub3/epub-mediaoverlays.html#sec-smil-audio-elem

    interface IMediaOverlayAudioNodeData {
        attributes: IAttributeData[];
        childNodes: INodeData[];
        clipBeginMs: number;
        clipEndMs: number;
        namespaceURI: string;
        nodeName: string;
        nodeType: XML_ELEMENT;
        prefix: string;
        src: string;
    }

    Hierarchy (View Summary)

    Properties

    attributes: IAttributeData[]

    The list of attributes defined on this element.

    childNodes: INodeData[]

    The child nodes of this element.

    clipBeginMs: number

    A clock value that specifies the offset into the physical media corresponding to the start point of an audio clip.

    clipEndMs: number

    A clock value that specifies the offset into the physical media corresponding to the end point of an audio clip.

    namespaceURI: string
    nodeName: string

    The element name without any XML namespace prefix.

    nodeType: XML_ELEMENT
    prefix: string

    The namespace prefix used for this element.

    src: string

    The relative or absolute IRI reference [RFC3987] of an audio file.