Optional
audienceThe latency level of an audience member in interactive live streaming. See AudienceLatencyLevelType.
Optional
audioDelay (in milliseconds) for sending audio frames. You can use this parameter to set the delay of the audio frames that need to be sent, to ensure audio and video synchronization. To switch off the delay, set the value to 0.
Optional
autoWhether to automatically subscribe to all remote audio streams when the user joins a channel: true : Subscribe to all remote audio streams. false : Do not automatically subscribe to any remote audio streams.
Optional
autoWhether to automatically subscribe to all remote video streams when the user joins the channel: true : Subscribe to all remote video streams. false : Do not automatically subscribe to any remote video streams.
Optional
channelThe channel profile. See ChannelProfileType.
Optional
clientThe user role. See ClientRoleType.
Optional
customThe video track ID returned by calling the createCustomVideoTrack method. The default value is 0.
Optional
defaultThe default video-stream type. See VideoStreamType.
Optional
enableWhether to enable audio capturing or playback: true : Enable audio capturing or playback. false : Do not enable audio capturing or playback. If you need to publish the audio streams captured by your microphone, ensure this parameter is set as true.
Optional
isWhether the audio stream being published is filtered according to the volume algorithm: true : The audio stream is filtered. If the audio stream filter is not enabled, this setting does not takes effect. false : The audio stream is not filtered. If you need to enable this function, contact.
Optional
isWhether to enable interactive mode: true : Enable interactive mode. Once this mode is enabled and the user role is set as audience, the user can receive remote video streams with low latency. false :Do not enable interactive mode. If this mode is disabled, the user receives the remote video streams in default settings. This parameter only applies to co-streaming scenarios. The cohosts need to call the joinChannelEx method to join the other host's channel as an audience member, and set isInteractiveAudience to true. This parameter takes effect only when the user role is ClientRoleAudience.
Optional
publishWhether to publish the video captured by the camera: true : Publish the video captured by the camera. false : Do not publish the video captured by the camera.
Optional
publishWhether to publish the audio captured from a custom source: true : Publish the audio captured from the custom source. false : Do not publish the captured audio from a custom source.
Optional
publishThe ID of the custom audio track to be published. The default value is 0. You can obtain the custom audio track ID through the createCustomAudioTrack method.
Optional
publishWhether to publish the video captured from a custom source: true : Publish the video captured from the custom source. false : Do not publish the captured video from a custom source.
Optional
publishWhether to publish the encoded video: true : Publish the encoded video. false : Do not publish the encoded video.
Optional
publishWhether to publish the video captured by the fourth camera: true : Publish the video captured by the fourth camera. false : Do not publish the video captured by the fourth camera. This parameter is for Android only.
Optional
publishWhether to publish the audio from the media player: true : Publish the audio from the media player. false : Do not publish the audio from the media player.
Optional
publishThe ID of the media player to be published. The default value is 0.
Optional
publishWhether to publish the video from the media player: true : Publish the video from the media player. false : Do not publish the video from the media player.
Optional
publishWhether to publish the audio captured by the microphone: true : Publish the audio captured by the microphone. false : Do not publish the audio captured by the microphone.
Optional
publishWhether to publish the sound of a metronome to remote users: true : Publish processed audio frames. Both the local user and remote users can hear the metronome. false : Do not publish the sound of the metronome. Only the local user can hear the metronome.
Optional
publishWhether to publish the audio captured from the screen: true : Publish the audio captured from the screen. false : Publish the audio captured from the screen.
Optional
publishWhether to publish the video captured from the screen: true : Publish the video captured from the screen. false : Do not publish the video captured from the screen.
Optional
publishWhether to publish the video captured by the second camera: true : Publish the video captured by the second camera. false : Do not publish the video captured by the second camera.
Optional
publishWhether to publish the video captured from the second screen: true : Publish the video captured from the second screen. false : Do not publish the video captured from the second screen.
Optional
publishWhether to publish the video captured by the third camera: true : Publish the video captured by the third camera. false : Do not publish the video captured by the third camera. This parameter is for Android only.
Optional
publishWhether to publish the local transcoded video: true : Publish the local transcoded video. false : Do not publish the local transcoded video.
Optional
token(Optional) The token generated on your server for authentication. This parameter takes effect only when calling updateChannelMediaOptions or updateChannelMediaOptionsEx. Ensure that the App ID, channel name, and user name used for creating the token are the same as those used by the initialize method for initializing the RTC engine, and those used by the joinChannel and joinChannelEx methods for joining the channel.
Generated using TypeDoc
The channel media options.
Agora supports publishing multiple audio streams and one video stream at the same time and in the same RtcConnection. For example, publishMicrophoneTrack, publishCustomAudioTrack, and publishMediaPlayerAudioTrack can be set as true at the same time, but only one of publishCameraTrack, publishScreenCaptureVideo, publishCustomVideoTrack, or publishEncodedVideoTrack can be set as true. Agora recommends that you set member parameter values yourself according to your business scenario, otherwise the SDK will automatically assign values to member parameters.