From 8ebd70a61cb8f4f2d1849606a13eb8b7b085af24 Mon Sep 17 00:00:00 2001 From: naomiaro Date: Wed, 23 Mar 2011 00:36:34 -0400 Subject: [PATCH] CC-1630 : Automatic recording of shows don't need to give specific device, just using default. --- python_apps/show-recorder/testrecordscript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/show-recorder/testrecordscript.py b/python_apps/show-recorder/testrecordscript.py index 808918123..4c659cdcb 100644 --- a/python_apps/show-recorder/testrecordscript.py +++ b/python_apps/show-recorder/testrecordscript.py @@ -39,7 +39,7 @@ class Recorder(Thread): filename = self.filename.replace(" ", "-") filepath = "%s%s.%s" % (config["base_recorded_files"], filename, self.filetype) - command = "ecasound -i alsahw,0,0 -o %s -t:%s" % (filepath, length) + command = "ecasound -i alsa -o %s -t:%s" % (filepath, length) call(command, shell=True) return filepath