Using Sinch SDK
1) i have made a video call. i have a button in my GUI. i want to turn off video by clicking the button to make the call like a audio call.
i am starting video call as
Call call = getSinchServiceInterface().callUserVideo("user1");
String callId = call.getCallId();
Intent callScreen = new Intent(this, RunningVideoCallActivity.class);
callScreen.putExtra(SinchService.CALL_ID, callId);
startActivity(callScreen);
2) i have made an audio call. i have a button in my GUI. i want to start video by clicking the button to make the call like a video call.
i am starting audio call as
Call call = getSinchServiceInterface().callUser("user1");
String callId = call.getCallId();
Intent callScreen = new Intent(this, RunningAudioCallActivity.class);
callScreen.putExtra(SinchService.CALL_ID, callId);
startActivity(callScreen);
3) How to mute a call in Sinch.
4) how to hold a call in Sinch. Please help.
You cant start video in the audio call, what you could do is to always start an audio call and pause the video in the beginning to make it look like an audio call. WE dont have hold functionality.
To mute use mute and unmute on the audio controller