small refactoring of to os.path.join instead of manual path concatenation.

This commit is contained in:
Rudi Grinberg 2012-08-21 10:46:48 -04:00
parent 6d0d0eada9
commit bb1e67a83c
1 changed files with 5 additions and 3 deletions

View File

@ -73,16 +73,18 @@ class ShowRecorder(Thread):
else: else:
filetype = "ogg"; filetype = "ogg";
filepath = "%s%s.%s" % (config["base_recorded_files"], filename, filetype) joined_path = os.path.join(config["base_recorded_files"], filename)
filepath = "%s.%s" % (joined_path, filetype)
br = config["record_bitrate"] br = config["record_bitrate"]
sr = config["record_samplerate"] sr = config["record_samplerate"]
c = config["record_channels"] c = config["record_channels"]
ss = config["record_sample_size"] ss = config["record_sample_size"]
#-f:16,2,44100 #-f:16,2,44100
#-b:256 #-b:256
command = "ecasound -f:%s,%s,%s -i alsa -o %s,%s000 -t:%s" % (ss, c, sr, filepath, br, length) command = "ecasound -f:%s,%s,%s -i alsa -o %s,%s000 -t:%s" % \
(ss, c, sr, filepath, br, length)
args = command.split(" ") args = command.split(" ")
self.logger.info("starting record") self.logger.info("starting record")