From b58e8da9e131731aa81eb64d354ebc8108ad2dc0 Mon Sep 17 00:00:00 2001 From: Werner Robitza Date: Wed, 15 May 2024 09:56:14 +0200 Subject: [PATCH] Bump version to 1.28.1 --- CHANGELOG.md | 5 +++++ docs/ffmpeg_normalize.html | 4 ++-- ffmpeg_normalize/_version.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43cafaf..62f6c82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +## v1.28.1 (2024-05-15) + +* Fix assignment of audio statistics, fixes #257. + + ## v1.28.0 (2024-05-13) * Warn if dynamic mode is used but linear specified (#256) diff --git a/docs/ffmpeg_normalize.html b/docs/ffmpeg_normalize.html index a220f8a..a5538a4 100644 --- a/docs/ffmpeg_normalize.html +++ b/docs/ffmpeg_normalize.html @@ -1557,7 +1557,7 @@
Inherited Members
415 all_stats = AudioStream.prune_and_parse_loudnorm_output( 416 output, num_stats=len(self.streams["audio"]) 417 ) -418 for idx, audio_stream in self.streams["audio"].items(): +418 for idx, audio_stream in enumerate(self.streams["audio"].values()): 419 audio_stream.set_second_pass_stats(all_stats[idx]) 420 421 # collect all stats for the final report, again (overwrite the input) @@ -3277,7 +3277,7 @@
Arguments:
__version__ = -'1.28.0' +'1.28.1'
diff --git a/ffmpeg_normalize/_version.py b/ffmpeg_normalize/_version.py index b3f408d..6e63f10 100644 --- a/ffmpeg_normalize/_version.py +++ b/ffmpeg_normalize/_version.py @@ -1 +1 @@ -__version__ = "1.28.0" +__version__ = "1.28.1"