diff --git a/over-video.py b/over-video.py index e457764..673442e 100755 --- a/over-video.py +++ b/over-video.py @@ -268,6 +268,7 @@ if __name__ == "__main__": print(output.decode("utf-8")) raise RuntimeError + info.volume_correction = min(info.volume_correction, info.max_correction) main.print("detected volume %.1f dB, correction %.1f dB, max. correction %.1f dB" %(info.mean_volume, info.volume_correction, info.max_correction)) if info.volume_correction > info.max_correction: diff --git a/version.py b/version.py index 3f89d3b..63f5978 100644 --- a/version.py +++ b/version.py @@ -4,5 +4,5 @@ major = 1 # VERSION_MAJOR_IDENTIFIER minor = 101 # VERSION_MINOR_IDENTIFIER # VERSION_LAST_MM 1.101 -patch = 2 # VERSION_PATCH_IDENTIFIER +patch = 3 # VERSION_PATCH_IDENTIFIER str = ".".join(str(v) for v in (major, minor, patch))