I need to get participants audio tracks for recording the video streams
I'm tried to get audio streams using this method
const audioTrack = this.meetingSession.audioVideoController.audioMixController.audioStream.getAudioTracks()[0]
this is my video recording function
localStream = localVideoElement.captureStream()
localStream.addTrack(audioTrack)
remoteStream = remoteVideoElement.captureStream()
remoteStream.addTrack(audioTrack)
but this only one audio track works other audio track is not audible