Skip to content

Commit f09d290

Browse files
committed
Release 26.1.0
1 parent 2fa6148 commit f09d290

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
## Fixes
77
- Remove `--ffmpeg-location` arg.
88
- Remove help text for recently removed args.
9+
- Fix unicode error on Windows for the info command.
910

1011
**Full Changelog**: https://github.com/WyattBlue/auto-editor/compare/26.0.1...26.1.0
1112

auto_editor/render/audio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def apply_audio_normalization(
9696
log.debug(f"audio norm first pass: {first_pass}")
9797
with av.open(f"{pre_master}") as container:
9898
stats_ = stats(first_pass, container.streams.audio[0])
99-
av.logging.set_level(None)
99+
100100
name, filter_args = parse_ebu_bytes(norm, stats_, log)
101101
else:
102102
assert "t" in norm

0 commit comments

Comments
 (0)