API-Examples-Web icon indicating copy to clipboard operation
API-Examples-Web copied to clipboard

localTracks.audioTrack.setEnabled(false) not working

Open ChurikiTenna opened this issue 3 years ago • 11 comments
trafficstars

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:

  1. Call onMute during the live

Expected behavior Mute audio

Desktop (please complete the following information):

  • OS: Mac OS
  • Browser: Chrome
  • Version: 4.13.0

ChurikiTenna avatar Sep 05 '22 07:09 ChurikiTenna

not muted how? you can still hear audio from remote?

plutoless avatar Sep 06 '22 11:09 plutoless

@plutoless I am testing with two computer close to each other, then both of them get feedback even if both the computer is muted.

ChurikiTenna avatar Sep 07 '22 01:09 ChurikiTenna

@ChurikiTenna please have you found a solution for this? cc @plutoless

laviedegeorge avatar Jan 10 '23 11:01 laviedegeorge

@laviedegeorge are you also having this issue? do you have a minimal reproducible project? i can't reproduce from my end.

plutoless avatar Jan 12 '23 03:01 plutoless

@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 avatar Jan 12 '23 09:01 laviedegeorge

@laviedegeorge you can find our demo here https://webdemo.agora.io/

plutoless avatar Jan 16 '23 01:01 plutoless

@plutoless the demo codes are not in react. Also, I have tried using setMuted and setEnabled to mute audio and video but it only mutes on the clients' side but still streams on the remote users' end.

Please note that the remote user is using the Flutter SDK while the client (ME) is using the Web SDK.

laviedegeorge avatar Jan 16 '23 11:01 laviedegeorge

ok we have an internal react demo, let's see if i can find that

plutoless avatar Jan 16 '23 11:01 plutoless

@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. Also here is a snippet of what I have.

` const mute = async (type: "audio" | "video") => { console.log("tracksss", tracks); const [audio, video] = tracks;

try {
  if (type === "audio") {
    await audio.setMuted(!trackState.audio);
    setTrackState((ps) => {
      return { ...ps, audio: !ps.audio };
    });
  } else if (type === "video") {
    await video.setMuted(!trackState.video);
    console.log("is video muted:", video.muted);

    setTrackState((ps) => {
      return { ...ps, video: !ps.video };
    });
  }
} catch (error) {
  console.error("Error from mute function", error);
}

}; `

laviedegeorge avatar Jan 16 '23 11:01 laviedegeorge

hello, when you call setEnabled api there will be sdk log in the console, you can check whether it is correct. also ensure that the audioTrack is correctly created and usable.If you are interested, you can also refer to: https://github.com/AgoraIO-Community/Agora-RTC-React

QinZhen001 avatar Jan 17 '23 03:01 QinZhen001

@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 agora-rtc-react and the React Demo uses agora-rtc-sdk-ng. Please which of them is preferred for a React project? cc @plutoless

laviedegeorge avatar Jan 17 '23 09:01 laviedegeorge