Video SDK Android v1.1.0
1623712822457
Added
Support for virtual microphone. Interfaces in
ZoomVideoSDKVirtualAudioMic.java
:
- void onMicInitialize(ZoomVideoSDKAudioSender sender);
- void onMicStartSend
- void onMicStopSend
- void onMicUninitialized
The ability to send raw audio data. Interfaces in
ZoomVideoSDKAudioSender.java
:
- send(ByteBuffer data, int dataLength, int sampleRate)
Support for virtual speaker. Interfaces in
ZoomVideoSDKVirtualAudioSpeaker
:
- void onVirtualSpeakerMixedAudioReceived(ZoomVideoSDKAudioRawData rawData)
- void onVirtualSpeakerOneWayAudioReceived(ZoomVideoSDKAudioRawData rawData, ZoomVideoSDKUser user)
- void onVirtualSpeakerSharedAudioReceived(ZoomVideoSDKAudioRawData rawData)
Note: When using the virtual speaker, the audio share will be disabled while screen sharing and only the video will be shared. After receiving the audio raw data in SDK, doing heavy/complex/time-consuming work in the callback thread is not recommended.
A new interface to get a list of all other users in the session:
getRemoteUsers` in`ZoomVideoSDKSession.java
A new status,
DirectShare_Prepared
, inDirectShareStatus
.Protection and an exception,
ZoomVideoSDKWrongThreadException
, when SDK interfaces are being called in the wrong thread.A new error type,
Errors_Session_Audio_No_Microphone
, inZoomVideoSDKErrors.java
.New callbacks when the user's display name and session manager has changed. Callbacks in
ZoomInstantSDKDelegate.java
:
- onUserManagerChanged(ZoomInstantSDKUser user)
- onUserNameChanged(ZoomInstantSDKUser user)
Changed & Fixed
Renamed the SDK from
ZoomInstantSDK
toZoomVideoSDK
.Upgraded OpenSSL to 1.1.1k.
Fixed an issue where the video is mirrored when using the back camera.
Fixed an issue where sharing picture was not working on Android 11.
Deprecated
getAllUsers()
interface inZoomVideoSDKSession.java
.getUser(String guid)
interface inZoomVideoSDKSession.java
.
Did you like this update?