CC-2268 : Make MP3 optional for show recorder to remove dependency on lame
This commit is contained in:
parent
d8df3bb2d8
commit
6d9e9f3459
|
@ -72,7 +72,7 @@ class ShowRecorder(Thread):
|
||||||
|
|
||||||
if config["record_file_type"] in ["mp3", "ogg"]:
|
if config["record_file_type"] in ["mp3", "ogg"]:
|
||||||
filetype = config["record_file_type"]
|
filetype = config["record_file_type"]
|
||||||
else
|
else:
|
||||||
filetype = "ogg";
|
filetype = "ogg";
|
||||||
|
|
||||||
filepath = "%s%s.%s" % (config["base_recorded_files"], filename, filetype)
|
filepath = "%s%s.%s" % (config["base_recorded_files"], filename, filetype)
|
||||||
|
|
Loading…
Reference in New Issue