You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							430 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							430 B
						
					
					
				| #!/bin/sh
 | |
| 
 | |
| set -uo pipefail
 | |
| 
 | |
| if (( $EUID != 0 )); then
 | |
|     echo "Should be run as root"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| cat >> /etc/pulse/default.pa <<EOF
 | |
| 
 | |
| ### Enable Echo/Noise-Cancellation
 | |
| load-module module-echo-cancel use_master_format=1 aec_method=webrtc aec_args="analog_gain_control=0\ digital_gain_control=1" source_name=echoCancel_source sink_name=echoCancel_sink
 | |
| set-default-source echoCancel_source
 | |
| set-default-sink echoCancel_sink
 | |
| EOF
 |