I am trying to get ICE Candidate Pair Stats in iOS SDK in Swift. I see this specific interface: statsForTrack
but I am unsure about how to use it. Has anybody done this before?
How to getStats() in WebRTC iOS SDK in Swift?
1.2k Views Asked by divku At
2
There are 2 best solutions below
0

you can use stats
function in PeerConnection like this:
peerConnection.stats(for: RTCMediaStreamTrack?, statsOutputLevel: .debug, completionHandler: { reports in
// reports here
}
you can set nil for parameter RTCMediaStreamTrack for get all reports or set special mediaStreamTack to get reports only this mediaStream.
peerConnection.stats(for: nil, statsOutputLevel: .debug, completionHandler: { reports in
// reports all mediaStreams
}
In your class where you creating peerConnection there you can start a timer like below:
And getStats be like this: