Commit f8e5f631 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

update audiotools CLI to accept dB gain values as well for LFE

parent 57e6fea8
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -195,8 +195,8 @@ def get_argparser():
    output_parser.add_argument(
        "-bl",
        "--bin_lfe_gain",
        type=float,
        help="Render LFE to binaural output with the specified gain (only valid for channel-based input, default = %(default)s)",
        type=parse_gain,
        help="Render LFE to binaural output with the specified gain (suffix with dB to use nonlinear, e.g. '10 dB', only valid for channel-based input, default = %(default)s)",
        default=BINAURAL_LFE_GAIN,
    )
    output_parser.add_argument(