getAvailableVideoCodecs

Returns the list of video codec names supported by this device for outbound video.

The list is derived from the underlying WebRTC device's RTP capabilities after the meeting has joined. Use this to decide whether to request a specific VideoCodec when calling createCameraVideoTrack.

Code Example:


List<String> codecs = meeting.getAvailableVideoCodecs();
// e.g. ["VP8", "VP9", "H264", "AV1"]
if (codecs.contains("AV1")) {
    // safe to request AV1
}

Return

list of codec names (e.g. "VP8", "VP9", "H264", "AV1"). Returns an empty list if the meeting has not yet joined or no codecs are available.

See also