diff --git a/CHANGELOG.md b/CHANGELOG.md index c8a3fbbb6..0b3d92685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ## Fixes - Remove `--ffmpeg-location` arg. - Remove help text for recently removed args. + - Fix unicode error on Windows for the info command. **Full Changelog**: https://github.com/WyattBlue/auto-editor/compare/26.0.1...26.1.0 diff --git a/auto_editor/render/audio.py b/auto_editor/render/audio.py index 117e6ccf8..5643de91a 100644 --- a/auto_editor/render/audio.py +++ b/auto_editor/render/audio.py @@ -96,7 +96,7 @@ def apply_audio_normalization( log.debug(f"audio norm first pass: {first_pass}") with av.open(f"{pre_master}") as container: stats_ = stats(first_pass, container.streams.audio[0]) - av.logging.set_level(None) + name, filter_args = parse_ebu_bytes(norm, stats_, log) else: assert "t" in norm