Unverified Commit 93950302 authored by SJ's avatar SJ Committed by GitHub
Browse files

Remove duplicate --bits command line parameter (#1287)

Remove duplicate --bits command line parameter. It's producing a warning with sox.
parent eb1b3f1f
...@@ -49,8 +49,6 @@ def gen_audio_file( ...@@ -49,8 +49,6 @@ def gen_audio_file(
] ]
if compression is not None: if compression is not None:
command += ['--compression', str(compression)] command += ['--compression', str(compression)]
if bit_depth is not None:
command += ['--bits', str(bit_depth)]
if encoding is not None: if encoding is not None:
command += ['--encoding', str(encoding)] command += ['--encoding', str(encoding)]
command += [ command += [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment