Interface UpdateIngressOptions

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

Properties

audio?: IngressAudioOptions

custom audio encoding parameters. optional

bypassTranscoding?: boolean

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

name: string

ingress name. optional

participantIdentity?: string

unique identity of the participant. optional

participantName?: string

participant display name

roomName?: string

name of the room to send media to. optional

video?: IngressVideoOptions

custom video encoding parameters. optional

Generated using TypeDoc