videoEncoders static method

Future<List<VideoCodecInfo>> videoEncoders()

Returns all VideoCodecInfos of the supported video encoders.

Implementation

static Future<List<VideoCodecInfo>> videoEncoders() async {
  if (isDesktop) {
    return await _PeerConnectionFFI.videoEncoders();
  } else {
    return await _PeerConnectionChannel.videoEncoders();
  }
}