ffmpeg-normalize 1.31.0__tar.gz → 1.31.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/CHANGELOG.md +9 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/PKG-INFO +10 -1
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/_media_file.py +7 -3
- ffmpeg_normalize-1.31.1/ffmpeg_normalize/_version.py +1 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/PKG-INFO +10 -1
- ffmpeg_normalize-1.31.0/ffmpeg_normalize/_version.py +0 -1
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/LICENSE +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/README.md +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/__init__.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/__main__.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/_cmd_utils.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/_errors.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/_ffmpeg_normalize.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/_logger.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/_streams.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize/py.typed +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/SOURCES.txt +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/dependency_links.txt +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/entry_points.txt +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/not-zip-safe +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/requires.txt +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/top_level.txt +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/setup.cfg +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/setup.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/test/out.mp4 +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/test/test.mp4 +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/test/test.py +0 -0
- {ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/test/test.wav +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ffmpeg_normalize
|
|
3
|
-
Version: 1.31.
|
|
3
|
+
Version: 1.31.1
|
|
4
4
|
Summary: Normalize audio via ffmpeg
|
|
5
5
|
Home-page: https://github.com/slhck/ffmpeg-normalize
|
|
6
6
|
Author: Werner Robitza
|
|
@@ -667,6 +667,15 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
667
667
|
# Changelog
|
|
668
668
|
|
|
669
669
|
|
|
670
|
+
## v1.31.1 (2025-02-19)
|
|
671
|
+
|
|
672
|
+
* Fix bitrate setting for libvorbis, fixes #277.
|
|
673
|
+
|
|
674
|
+
* Update issue templates.
|
|
675
|
+
|
|
676
|
+
* Prevent blank issues.
|
|
677
|
+
|
|
678
|
+
|
|
670
679
|
## v1.31.0 (2024-12-15)
|
|
671
680
|
|
|
672
681
|
* Update docs and completions.
|
|
@@ -177,8 +177,7 @@ class MediaFile:
|
|
|
177
177
|
and len(self.streams["audio"].values()) > 1
|
|
178
178
|
):
|
|
179
179
|
_logger.warning(
|
|
180
|
-
"Output file only supports one stream. "
|
|
181
|
-
"Keeping only first audio stream."
|
|
180
|
+
"Output file only supports one stream. Keeping only first audio stream."
|
|
182
181
|
)
|
|
183
182
|
first_stream = list(self.streams["audio"].values())[0]
|
|
184
183
|
self.streams["audio"] = {first_stream.stream_id: first_stream}
|
|
@@ -390,7 +389,12 @@ class MediaFile:
|
|
|
390
389
|
|
|
391
390
|
# other audio options (if any)
|
|
392
391
|
if self.ffmpeg_normalize.audio_bitrate:
|
|
393
|
-
|
|
392
|
+
if self.ffmpeg_normalize.audio_codec == "libvorbis":
|
|
393
|
+
# libvorbis takes just a "-b" option, for some reason
|
|
394
|
+
# https://github.com/slhck/ffmpeg-normalize/issues/277
|
|
395
|
+
cmd.extend(["-b", str(self.ffmpeg_normalize.audio_bitrate)])
|
|
396
|
+
else:
|
|
397
|
+
cmd.extend(["-b:a", str(self.ffmpeg_normalize.audio_bitrate)])
|
|
394
398
|
if self.ffmpeg_normalize.sample_rate:
|
|
395
399
|
cmd.extend(["-ar", str(self.ffmpeg_normalize.sample_rate)])
|
|
396
400
|
if self.ffmpeg_normalize.audio_channels:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.31.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ffmpeg-normalize
|
|
3
|
-
Version: 1.31.
|
|
3
|
+
Version: 1.31.1
|
|
4
4
|
Summary: Normalize audio via ffmpeg
|
|
5
5
|
Home-page: https://github.com/slhck/ffmpeg-normalize
|
|
6
6
|
Author: Werner Robitza
|
|
@@ -667,6 +667,15 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
667
667
|
# Changelog
|
|
668
668
|
|
|
669
669
|
|
|
670
|
+
## v1.31.1 (2025-02-19)
|
|
671
|
+
|
|
672
|
+
* Fix bitrate setting for libvorbis, fixes #277.
|
|
673
|
+
|
|
674
|
+
* Update issue templates.
|
|
675
|
+
|
|
676
|
+
* Prevent blank issues.
|
|
677
|
+
|
|
678
|
+
|
|
670
679
|
## v1.31.0 (2024-12-15)
|
|
671
680
|
|
|
672
681
|
* Update docs and completions.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.31.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ffmpeg_normalize-1.31.0 → ffmpeg_normalize-1.31.1}/ffmpeg_normalize.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|