gpt4 book ai didi

react-native - react native : How to mute volume?

转载 作者:行者123 更新时间:2023-12-04 17:54:27 26 4
gpt4 key购买 nike

你如何在 React Native 中静音(特别是对于 Android)?

我正在使用 https://github.com/oney/react-native-webrtc但是为此禁用音轨似乎没有任何作用,因此我只想将手机完全静音。

最佳答案

我用过 offerToReceiveAudio : falsecreateOffer 中告诉我的 PeerConnection 不捕获音轨的选项方法 。
对于远程 PeerConnection 静音使用这个:

const pc = new RTCPeerConnection();
pc.createOffer({offerToReceiveVideo: true , offerToReceiveAudio: false}).then(sdpOffer=>{
///
});
并将这些参数用于本地媒体流:
const mediaParams = {
video : true ,
audio : false ,
options:{ muted : true }
};
getUserMedia(mediaParams, (error, stream) => {});
但我想没有某种方法可以直接将 RTCView 静音。

关于react-native - react native : How to mute volume?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41556357/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com