Hello
I want to get system's microphone volume level using easyrtc.
I found some description about getting volume level of system's microphone in webrtc apis
code :
var audioTracks = stream.getAudioTracks(); // returns MediaStream
var info = audioTracks[0].states(); // Returns mediaStreamTracks
var volume = info.volume.
But when I am running this code with easyrtc , it says MediaStreamTrack does not have states() method.
Does easyRtc not support this or anything else ?
Please help me to solve this problem