diff --git a/analyzer/libretime_analyzer/pipeline/_ffmpeg.py b/analyzer/libretime_analyzer/pipeline/_ffmpeg.py index c8d9f7df0..b9f5471c6 100644 --- a/analyzer/libretime_analyzer/pipeline/_ffmpeg.py +++ b/analyzer/libretime_analyzer/pipeline/_ffmpeg.py @@ -36,7 +36,7 @@ def probe_replaygain(filepath: Path) -> Optional[float]: """ Probe replaygain will probe the given audio file and return the replaygain if available. """ - cmd = _ffprobe("-i", filepath) + cmd = _ffprobe("-i", filepath, errors="backslashreplace") track_gain_match = _PROBE_REPLAYGAIN_RE.search(cmd.stderr)