diff --git a/example_simple_exportwav.html b/example_simple_exportwav.html
index 23885113..276a53b9 100644
--- a/example_simple_exportwav.html
+++ b/example_simple_exportwav.html
@@ -95,7 +95,17 @@
Log
alert('No web audio support in this browser!');
}
- navigator.getUserMedia({audio: true}, startUserMedia, function(e) {
+ var audioOpts = {
+ mandatory: {
+ googEchoCancellation: false,
+ googAutoGainControl: false,
+ googNoiseSuppression: false,
+ googHighpassFilter: false
+ },
+ optional: []
+ };
+
+ navigator.getUserMedia({audio: audioOpts}, startUserMedia, function(e) {
__log('No live audio input: ' + e);
});
};