Video SDK for iOS API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKAudioSender Class Reference

A class for users to send audio raw data. More...

#include <ZoomVideoSDKAudioSender.h>

Inherits NSObject.

Instance Methods

(ZoomVideoSDKError- send:dataLength:sampleRate:
 Sends audio raw data. Channel number must be mono, and sampling bits must be 16.
 

Detailed Description

A class for users to send audio raw data.

Definition at line 13 of file ZoomVideoSDKAudioSender.h.

Method Documentation

◆ send:dataLength:sampleRate:

- (ZoomVideoSDKError) send: (char *) data
dataLength: (NSUInteger) dataLength
sampleRate: (NSUInteger) sampleRate 

Sends audio raw data. Channel number must be mono, and sampling bits must be 16.

Parameters
dataThe address of audio data.
dataLengthThe length of audio data. It must be even numbers.
sampleRateThe sampling rate of audio data.
Returns
If the function succeeds, it returns Errors_Success. Otherwise, this function returns an error.
Warning
Supported audio data properties: Sample Rate: 8000, 11025, 32000, 44100, 48000, 50000, 50400, 96000, 192000, 2822400. Channels: mono. Resolution: little-endian, 16bit.