-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
localTracks.audioTrack.setEnabled(false) not working #64
Comments
not muted how? you can still hear audio from remote? |
@plutoless |
@ChurikiTenna please have you found a solution for this? cc @plutoless |
@laviedegeorge are you also having this issue? do you have a minimal reproducible project? i can't reproduce from my end. |
@plutoless I don't have a minimal reproducible project. I am integrating it into an existing product. Please if you have any minimal reproducible project with the mute buttons for audio and video working, can I have a look? Or if possible, I don't mind a call at your own time frame. |
@laviedegeorge you can find our demo here |
@plutoless the demo codes are not in react. Also, I have tried using
|
ok we have an internal react demo, let's see if i can find that |
@plutoless ok thank you. I think I have come across it. (Not sure if it is the correct one) but most of the demos I have seen, do not have the mute functionality. `
}; |
hello, when you call setEnabled api there will be sdk log in the console, you can check whether it is correct. |
@QinZhen001 thank you for your suggestion. I forget to mention that I got headway yesterday with the React demo in the examples. Most likely I am doing something wrong but the only difference I can see for now is that the example is using a custom hook. I am currently refactoring my code, let's see if it works. Also, I noticed that https://github.com/AgoraIO-Community/Agora-RTC-React uses the react wrapper |
Describe the bug
I have tried the example and everything worked fine but Mute function.
const onMute = async () => {
if (localTracks.audioTrack && localTracks.audioTrack._enabled) {
console.log("onMute true")
await localTracks.audioTrack.setEnabled(false)
} else {
console.log("onMute false")
await localTracks.audioTrack.setEnabled(true)
}
}
When I call onMute, I can see "onMute true" on the console, but it is not muted.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Mute audio
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: