OSD: add audio input osd

IPC: add audio input
This commit is contained in:
lysec
2025-10-10 15:08:25 +02:00
parent 338624b4a8
commit acd776a187
2 changed files with 45 additions and 5 deletions
+7 -3
View File
@@ -112,10 +112,14 @@ Item {
function muteOutput() {
AudioService.setOutputMuted(!AudioService.muted)
}
function increaseInput() {
AudioService.increaseInputVolume()
}
function decreaseInput() {
AudioService.decreaseInputVolume()
}
function muteInput() {
if (AudioService.source?.ready && AudioService.source?.audio) {
AudioService.source.audio.muted = !AudioService.source.audio.muted
}
AudioService.setInputMuted(!AudioService.inputMuted)
}
}