removing gate operator for now, sounds bad and can lead to automatic rebroadcasting problems.

This commit is contained in:
Naomi 2011-03-30 12:12:14 -04:00
parent 2aae93dd04
commit e769870919
1 changed files with 2 additions and 1 deletions

View File

@ -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"