Hints:
AudioInputClient(AudioInputDelegate delegate, String url);
Constructs AudioInputClient instance.
Bool isRunning;
Returns true if recording and streaming are running.
start();
Starts recording audio and starts streaming the audio frames captured to the url provided.
stop();
Stops recording of audio and stops streaming.
@optional onStarted();
Will get called when the recording started.
@optional onStopped();
Will get called when recording ended.
@optional onError(MobileSDKError error);
Will be called if there is an error in the streaming process.