Jump to content
  • 0

Intercepting Raw Audio/Video data on server


Chander Chauhan
 Share

Question

  • Answers 1
  • Created
  • Last Reply

Top Posters For This Question

Top Posters For This Question

1 answer to this question

Recommended Posts

  • 0
Hi Chander,

You can get the video and audio tracks separately from the WebSocket connection to the stream. It sends the following message in JSON format.

jsCmd = {
command : "publish",
streamId : streamId,
token : token,
video: thiz.localStream.getVideoTracks().length > 0 ? true : false,
audio: thiz.localStream.getAudioTracks().length > 0 ? true : false,
};You can get the audiotrack or videotrack seperately from here to do calculations.Best,Asim
Link to comment
Share on other sites

 Share

×
×
  • Create New...