Class VideoMessage

Represents a VideoMessage.

Hierarchy

  • VideoMessage

Implements

Constructors

Properties

annotations: IInteractiveAnnotation[]

VideoMessage annotations.

caption: string

VideoMessage caption.

contextInfo?: null | IContextInfo

VideoMessage contextInfo.

directPath: string

VideoMessage directPath.

fileEncSha256: Uint8Array

VideoMessage fileEncSha256.

fileLength: number | Long

VideoMessage fileLength.

fileSha256: Uint8Array

VideoMessage fileSha256.

gifAttribution: Attribution

VideoMessage gifAttribution.

gifPlayback: boolean

VideoMessage gifPlayback.

height: number

VideoMessage height.

interactiveAnnotations: IInteractiveAnnotation[]

VideoMessage interactiveAnnotations.

jpegThumbnail: Uint8Array

VideoMessage jpegThumbnail.

mediaKey: Uint8Array

VideoMessage mediaKey.

mediaKeyTimestamp: number | Long

VideoMessage mediaKeyTimestamp.

mimetype: string

VideoMessage mimetype.

seconds: number

VideoMessage seconds.

staticUrl: string

VideoMessage staticUrl.

streamingSidecar: Uint8Array

VideoMessage streamingSidecar.

thumbnailDirectPath: string

VideoMessage thumbnailDirectPath.

thumbnailEncSha256: Uint8Array

VideoMessage thumbnailEncSha256.

thumbnailSha256: Uint8Array

VideoMessage thumbnailSha256.

url: string

VideoMessage url.

viewOnce: boolean

VideoMessage viewOnce.

width: number

VideoMessage width.

Methods

  • Converts this VideoMessage to JSON.

    Returns {
        [k: string]: any;
    }

    JSON object

    • [k: string]: any
  • Decodes a VideoMessage message from the specified reader or buffer.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    • Optional length: number

      Message length if known beforehand

    Returns VideoMessage

    VideoMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Decodes a VideoMessage message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    Returns VideoMessage

    VideoMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Encodes the specified VideoMessage message. Does not implicitly verify messages.

    Parameters

    • message: IVideoMessage

      VideoMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Encodes the specified VideoMessage message, length delimited. Does not implicitly verify messages.

    Parameters

    • message: IVideoMessage

      VideoMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Creates a VideoMessage message from a plain object. Also converts values to their respective internal types.

    Parameters

    • object: {
          [k: string]: any;
      }

      Plain object

      • [k: string]: any

    Returns VideoMessage

    VideoMessage

  • Creates a plain object from a VideoMessage message. Also converts values to other types if specified.

    Parameters

    • message: VideoMessage

      VideoMessage

    • Optional options: IConversionOptions

      Conversion options

    Returns {
        [k: string]: any;
    }

    Plain object

    • [k: string]: any
  • Verifies a VideoMessage message.

    Parameters

    • message: {
          [k: string]: any;
      }

      Plain object to verify

      • [k: string]: any

    Returns null | string

    null if valid, otherwise the reason why it is not

Generated using TypeDoc