Unverified Commit 5c017957 authored by Vincent QB's avatar Vincent QB Committed by GitHub
Browse files

Revert "Remove duplicate --bits command line parameter (#1287)" (#1290)

This reverts commit 93950302.
parent 93950302
...@@ -49,6 +49,8 @@ def gen_audio_file( ...@@ -49,6 +49,8 @@ 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