Hi mederi, OK, thanks for the feedback. I realized that, but is there a way to activated the script / code without going through the View > etc. Menu in VLC?
Anyway. I actually wanted to use the script to get rid of the microphone pop noise when I started the voice recording.
The real solution for my problem with the microphone recording was this (on Ubuntu 16.04, taken from
https://askubuntu.com/questions/18958/r ... pulseaudio):
cd /etc/pulse
cp default.pa default.pa.original
sudo pluma /etc/pulse/default.pa
Add the following line anywhere on the file, but I recommend almost at the end where you will find a comment about Echo Cancellation stuff (~line 140):
#---------------------------------------------------------
#load-module module-echo-cancel
#load-module module-echo-cancel source_name=echocancel
#load-module module-echo-cancel source_name=echocancel source_properties=device.description=echocancel
#load-module module-echo-cancel aec_method=webrtc aec_args="analog_gain_control=0 digital_gain_control=1" source_name=echocancel source_properties=device.description=echocancel
load-module module-echo-cancel aec_method=webrtc aec_args="analog_gain_control=0 digital_gain_control=1" source_name=echocancel_source source_properties=device.description=echocancel_source sink_name=echocancel_sink sink_properties=device.description=echocancel_sink
set-default-source echocancel_source
set-default-sink echocancel_sink
##mate-volume-control or start menu 'sound', tab 'Input', set slider to ca. 40%, input level 4 (I I I I).
#---------------------------------------------------------
Have a nice day.
Urs