Interface UpdateIngressOptions

interface UpdateIngressOptions {
    audio?: IngressAudioOptions;
    bypassTranscoding?: boolean;
    enableTranscoding?: boolean;
    name: string;
    participantIdentity?: string;
    participantMetadata?: string;
    participantName?: string;
    roomName?: string;
    video?: IngressVideoOptions;
}

Properties

audio?: IngressAudioOptions

custom audio encoding parameters. optional

bypassTranscoding?: boolean

use enableTranscoding instead whether to skip transcoding and forward the input media directly. Only supported by WHIP

enableTranscoding?: boolean

whether to enable transcoding or forward the input media directly. Transcoding is required for all input types except WHIP. For WHIP, the default is to not transcode.

name: string

ingress name. optional

participantIdentity?: string

unique identity of the participant.

participantMetadata?: string

metadata to attach to the participant

participantName?: string

participant display name

roomName?: string

name of the room to send media to.

video?: IngressVideoOptions

custom video encoding parameters. optional