Releases: voxeet/comms-sdk-flutter
3.10.0
Features
- Introduced the ability to change the capture mode in non-Dolby Voice conferences and use either the Standard or Unprocessed mode.
- Introduced a new voiceFont property to AudioCaptureOptions that is supported in the Standard audio capture mode. Voice fonts allow participants to modify their voices in real time to improve social interaction in entertainment scenarios. For more information about this feature, see the Using Voice Fonts guide.
- Introduced a new preview service that allows the local participant to test different capture modes and voice fonts before a conference. The service sets a preview recorder that records the participant's audio and plays it back. Before playing the recorded audio, set the captureMode to a preferred setting that you wish to try.
- Introduced a new updateParticipantInfo method that lets participants modify their names and avatars while they are in a conference.
- The SDK now supports receiving two shared screens in one conference.
Changes
- Changed the default value of the audio capture mode in non-Dolby Voice conferences to Standard with high noise reduction. This setting optimizes captured audio for speech by aggressively removing non-speech content. If you want to transmit non-stationary background sounds to a conference and create a more natural audio experience, you can set noise reduction to low, which offers a similar experience as the default setting in previous releases. If you wish to transmit non-voice audio to a conference as well and use input device setting without any processing, use the Unprocessed mode.
- The current method now returns null when the user is not in a conference.
3.10.0-beta.1
Features
- Introduced the ability to change the capture mode in non-Dolby Voice conferences and use either the Standard or Unprocessed mode.
- Introduced a new voiceFont property to AudioCaptureOptions that is supported in the Standard audio capture mode. Voice fonts allow participants to modify their voices in real time to improve social interaction in entertainment scenarios. For more information about this feature, see the Using Voice Fonts guide.
- Introduced a new preview service that allows the local participant to test different capture modes and voice fonts before a conference. The service sets a preview recorder that records the participant's audio and plays it back. Before playing the recorded audio, set the captureMode to a preferred setting that you wish to try.
- Introduced a new updateParticipantInfo method that lets participants modify their names and avatars while they are in a conference.
- The SDK now supports receiving two shared screens in one conference.
Changes
Changed the default value of the audio capture mode in non-Dolby Voice conferences to Standard with high noise reduction. This setting optimizes captured audio for speech by aggressively removing non-speech content. If you want to transmit non-stationary background sounds to a conference and create a more natural audio experience, you can set noise reduction to low, which offers a similar experience as the default setting in previous releases. If you wish to transmit non-voice audio to a conference as well and use input device setting without any processing, use the Unprocessed mode.
3.8.3
Bug Fixes
- Fixed an issue where a wrong recording status was reported by recording events.
- Fixed an issue where a conference invitation could not be accepted on Android devices.
- Corrected documentation for events in the notification service.
3.8.2
Features
Added a new ScaleType argument to the VideoView creation methods. The argument lets you select how you want to display a video stream in the VideoView area. You can either use the fill
or fit
value.
Bug Fixes
Introduced improvements that prevent the VideoViewController from accessing unmounted VideoView widgets.
3.8.2-beta.2
3.8.2-beta.1
Bug Fixes
Introduced improvements that prevent the VideoViewController from accessing unmounted VideoView widgets.
3.8.1
Features
Introduced new methods and event handlers to the NotificationService that allow participants to subscribe to and unsubscribe from the preferred notifications.
3.8.1-beta.1
Features
Introduced new methods and event handlers to the NotificationService that allow participants to subscribe to and unsubscribe from the preferred notifications.
3.8.0
Features
Upgraded the WebRTC version to a recent version that contains improvements and bug fixes. The previously used version contains serious security vulnerabilities that can make your application susceptible to remote code execution, and can potentially give an attacker access to your application’s private data.
3.7.0
Features
- Introduced a low noise reduction level available via a new low noise reduction setting. The existing high setting causes aggressive removal of background sounds from the captured audio. The low setting removes only stationary sounds, such as the sound of a computer fan, air conditioning, or microphone hum, and allows sending more ambient audio into a conference. This mode gives participants full context of other participants' environments and creates a more realistic audio experience. Setting the preferred noise reduction level and audio capture mode is available via a new setCaptureMode method.
- Introduced DNN-based Noise Reduction (DNR) that improves voice clarity by reducing echo and background noises, such as keyboard typing noises and breathing sounds. This feature is based on a deep neural network and offers improved noise reduction to make virtual meetings more productive and pleasant.
- Introduced the AudioService, where the available APIs are divided into two models available via the AudioService: LocalAudio and RemoteAudio. The LocalAudio model offers APIs that allow the local participant to start and stop sending audio to a conference, set capture mode, and set comfort noise level. The RemoteAudio model allows the local participant to stop receiving audio from selected remote participants.
- Introduced the VideoService, where the available APIs are divided into two models available via the VideoService: LocalVideo and RemoteVideo. The LocalVideo model offers APIs that allow the local participant to start and stop sending video to a conference. The RemoteVideo model allows the local participant to stop receiving video streams from selected remote participants.
- Increased the maximum number of video streams that may be transmitted to the local participant to 25.
Deprecated APIs
Changes introduced in AudioService and VideoService impact the existing APIs that are no longer supported in SDK 3.7:
- The startAudio method is replaced with the start methods available in the LocalAudio and RemoteAudio models.
- The stopAudio method is replaced with the stop methods available in the LocalAudio and RemoteAudio models.
- The startVideo method is replaced with the start methods available in the LocalVideo and RemoteVideo models.
- The stopVideo method is replaced with the stop methods available in the LocalVideo and RemoteVideo models.
- The setAudioProcessing method is replaced with the setCaptureMode method.
- The setComfortNoiseLevel method is replaced with the setComfortNoiseLevel method available in the LocalAudio model.
- The getComfortNoiseLevel method is replaced with the getComfortNoiseLevel method available in the LocalAudio model.