Reputation: 2451
I'm working on an app that allow users to make video calls. I'm doing this by using OpenTok2.5 iOS SDK. I want to record calls and want to store them somewhere. My problem is, there is no way to start a call archiving using Open Tok iOS SDK. I'm using parse for app backend support(database). Could someone please provide some example code or any tutorial to do this from app side or by using parse cloud code.
Thanks, Ravi.
Upvotes: 0
Views: 454
Reputation: 91
The actual call to start archiving is made by your server. This is most likely going to be triggered by your client, but the distinction between starting the archive vs triggering it is important. I've listed the steps to explain this in more detail below:
opentok.startArchive()
that does this for you, but under the hood, it's just a POST request to OpenTok servers.Upvotes: 1