mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-12-19 19:06:16 +01:00
Auto-unmute inbound audio when enabling two way audio (#14871)
* Automatically enable audio when initiating two way talk with mic * remove check
This commit is contained in:
parent
7bae9463b2
commit
3249ffb273
@ -434,7 +434,13 @@ export default function LiveCameraView({
|
|||||||
Icon={mic ? FaMicrophone : FaMicrophoneSlash}
|
Icon={mic ? FaMicrophone : FaMicrophoneSlash}
|
||||||
isActive={mic}
|
isActive={mic}
|
||||||
title={`${mic ? "Disable" : "Enable"} Two Way Talk`}
|
title={`${mic ? "Disable" : "Enable"} Two Way Talk`}
|
||||||
onClick={() => setMic(!mic)}
|
onClick={() => {
|
||||||
|
setMic(!mic);
|
||||||
|
// Turn on audio when enabling the mic if audio is currently off
|
||||||
|
if (!mic && !audio) {
|
||||||
|
setAudio(true);
|
||||||
|
}
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{supportsAudioOutput && preferredLiveMode != "jsmpeg" && (
|
{supportsAudioOutput && preferredLiveMode != "jsmpeg" && (
|
||||||
|
Loading…
Reference in New Issue
Block a user