2021-01-05 17:05:55 +00:00
|
|
|
diff --git i/beetsplug/replaygain.py w/beetsplug/replaygain.py
|
2021-12-21 02:18:32 +00:00
|
|
|
index b6297d93..5c1cbbc0 100644
|
2021-01-05 17:05:55 +00:00
|
|
|
--- i/beetsplug/replaygain.py
|
|
|
|
+++ w/beetsplug/replaygain.py
|
2021-12-21 02:18:32 +00:00
|
|
|
@@ -139,7 +139,7 @@ class FfmpegBackend(Backend):
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
def __init__(self, config, log):
|
2021-12-21 02:18:32 +00:00
|
|
|
super().__init__(config, log)
|
2021-01-05 17:05:55 +00:00
|
|
|
- self._ffmpeg_path = "ffmpeg"
|
|
|
|
+ self._ffmpeg_path = "@ffmpeg@/bin/ffmpeg"
|
|
|
|
|
|
|
|
# check that ffmpeg is installed
|
|
|
|
try:
|
2021-12-21 02:18:32 +00:00
|
|
|
@@ -975,11 +975,10 @@ class ReplayGainPlugin(BeetsPlugin):
|
2021-01-05 17:05:55 +00:00
|
|
|
def __init__(self):
|
2021-12-21 02:18:32 +00:00
|
|
|
super().__init__()
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
- # default backend is 'command' for backward-compatibility.
|
|
|
|
self.config.add({
|
|
|
|
'overwrite': False,
|
|
|
|
'auto': True,
|
2021-12-21 02:18:32 +00:00
|
|
|
- 'backend': 'command',
|
|
|
|
+ 'backend': 'ffmpeg',
|
2021-01-05 17:05:55 +00:00
|
|
|
'threads': cpu_count(),
|
|
|
|
'parallel_on_import': False,
|
|
|
|
'per_disc': False,
|