mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 03:54:21 +01:00
ffmpeg replaygain backend: Only calculate replaygain for audio stream. Fixed documentation for backend option.
This commit is contained in:
parent
ddede4e39e
commit
60c174101f
2 changed files with 3 additions and 1 deletions
|
|
@ -456,6 +456,7 @@ class FfmpegBackend(Backend):
|
|||
"-hide_banner",
|
||||
"-i",
|
||||
item.path,
|
||||
"-map a:0",
|
||||
"-filter",
|
||||
"ebur128=peak={0}".format(peak_method),
|
||||
"-f",
|
||||
|
|
|
|||
|
|
@ -92,7 +92,8 @@ configuration file. The available options are:
|
|||
|
||||
- **auto**: Enable ReplayGain analysis during import.
|
||||
Default: ``yes``.
|
||||
- **backend**: The analysis backend; either ``gstreamer``, ``command``, or ``audiotools``.
|
||||
- **backend**: The analysis backend; either ``gstreamer``, ``command``, ``audiotools``
|
||||
or ``ffmpeg``.
|
||||
Default: ``command``.
|
||||
- **overwrite**: Re-analyze files that already have ReplayGain tags.
|
||||
Default: ``no``.
|
||||
|
|
|
|||
Loading…
Reference in a new issue