This commit is contained in:
2024-11-06 18:03:38 +01:00
parent 253a82e694
commit f45dc906ac
2 changed files with 16 additions and 1 deletions
+12
View File
@@ -1,4 +1,16 @@
tmic = buffer(input.pulseaudio()) # Microphone
if tmic.is_active() then
log.info("Buffer active")
end
if tmic.is_ready() then
log.info("Buffer ready")
end
if tmic.is_up() then
log.info("Buffer up")
end
interactive.harbor(port = 9999)
mic_gain = interactive.float("mic_volume", min=0., max=20., 6.)