From e769870919b43f5be06cdd0b86b9ba099a308116 Mon Sep 17 00:00:00 2001 From: Naomi Date: Wed, 30 Mar 2011 12:12:14 -0400 Subject: [PATCH] removing gate operator for now, sounds bad and can lead to automatic rebroadcasting problems. --- python_apps/show-recorder/testrecordscript.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python_apps/show-recorder/testrecordscript.py b/python_apps/show-recorder/testrecordscript.py index 6e1e324b0..f76211a1c 100644 --- a/python_apps/show-recorder/testrecordscript.py +++ b/python_apps/show-recorder/testrecordscript.py @@ -61,7 +61,8 @@ class ShowRecorder(Thread): filename = self.filename.replace(" ", "-") filepath = "%s%s.%s" % (config["base_recorded_files"], filename, self.filetype) - command = "ecasound -i alsa -o %s -t:%s -ge:0.1,0.1,0,-1" % (filepath, length) + command = "ecasound -i alsa -o %s -t:%s" % (filepath, length) + #-ge:0.1,0.1,0,-1 args = command.split(" ") print "starting record"