videoSettings property

VideoSettings get videoSettings

Implementation

VideoSettings get videoSettings => _videoSettings;
  1. @override
set videoSettings (VideoSettings videoSettings)
override

Specifies the video codec properties.

Implementation

@override
set videoSettings(VideoSettings videoSettings) {
  assert(_memory != null);
  _videoSettings = videoSettings;
  RtmpStreamPlatform.instance.setVideoSettings(
      {"memory": _memory, "settings": videoSettings.toMap()});
}