Let's get this effin party started

This commit is contained in:
2024-11-03 14:01:28 +01:00
parent 6019b92d15
commit 253a82e694
+11
View File
@@ -0,0 +1,11 @@
tmic = buffer(input.pulseaudio()) # Microphone
interactive.harbor(port = 9999)
mic_gain = interactive.float("mic_volume", min=0., max=20., 6.)
mic = amplify(mic_gain, tmic)
#mic = gate(threshold=-80., range=-120., mic)
#mic = compress(threshold=0., ratio=2.,mic)
#mic = blank.strip(max_blank=10., min_noise=.1, threshold=-20., mic)
output.pulseaudio(mic)