Skip to content

Commit

Permalink
docs: update docs to include lower-only
Browse files Browse the repository at this point in the history
  • Loading branch information
slhck committed Dec 10, 2024
1 parent ed231bb commit cd00142
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,7 @@ For more information on the options (`[options]`) available, run `ffmpeg-normali
- `--keep-lra-above-loudness-range-target`: Keep input loudness range above loudness range target.
- `LOUDNESS_RANGE_TARGET` for input loudness range `<= LOUDNESS_RANGE_TARGET` or
- keep input loudness range target above `LOUDNESS_RANGE_TARGET`.
as alternative to `--keep-loudness-range-target` to allow for linear normalization.
Can be used as an alternative to `--keep-loudness-range-target` to allow for linear normalization.
- `-tp TRUE_PEAK, --true-peak TRUE_PEAK`: EBU Maximum True Peak in dBTP (default: -2.0).
Expand All @@ -270,6 +267,10 @@ For more information on the options (`[options]`) available, run `ffmpeg-normali
Range is -99.0 - +99.0.
- `--lower-only`: Whether the audio should not increase in loudness.
If the measured loudness from the first pass is lower than the target loudness then normalization pass will be skipped for the measured audio source.
- `--dual-mono`: Treat mono input files as "dual-mono".
If a mono file is intended for playback on a stereo system, its EBU R128 measurement will be perceptually incorrect. If set, this option will compensate for this effect. Multi-channel input files are not affected by this option.
Expand Down
4 changes: 1 addition & 3 deletions ffmpeg_normalize/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,7 @@ def create_parser() -> argparse.ArgumentParser:
help=textwrap.dedent(
"""\
Keep input loudness range above loudness range target.
- `LOUDNESS_RANGE_TARGET` for input loudness range `<= LOUDNESS_RANGE_TARGET` or
- keep input loudness range target above `LOUDNESS_RANGE_TARGET`.
as alternative to `--keep-loudness-range-target` to allow for linear normalization.
Can be used as an alternative to `--keep-loudness-range-target` to allow for linear normalization.
"""
),
)
Expand Down

0 comments on commit cd00142

Please sign in to comment.