ffmpeg-normalize 1.32.0__tar.gz → 1.32.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.32.0 → ffmpeg_normalize-1.32.1}/CHANGELOG.md +7 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/PKG-INFO +8 -1
- ffmpeg_normalize-1.32.1/ffmpeg_normalize/_version.py +1 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/PKG-INFO +8 -1
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/requires.txt +1 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/setup.py +1 -0
- ffmpeg_normalize-1.32.0/ffmpeg_normalize/_version.py +0 -1
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/LICENSE +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/README.md +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/__init__.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/__main__.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/_cmd_utils.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/_errors.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/_ffmpeg_normalize.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/_logger.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/_media_file.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/_streams.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize/py.typed +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/SOURCES.txt +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/dependency_links.txt +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/entry_points.txt +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/not-zip-safe +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/top_level.txt +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/setup.cfg +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/test/out.mp4 +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/test/test.mp4 +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/test/test.py +0 -0
- {ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/test/test.wav +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ffmpeg_normalize
|
|
3
|
-
Version: 1.32.
|
|
3
|
+
Version: 1.32.1
|
|
4
4
|
Summary: Normalize audio via ffmpeg
|
|
5
5
|
Home-page: https://github.com/slhck/ffmpeg-normalize
|
|
6
6
|
Author: Werner Robitza
|
|
@@ -114,6 +114,13 @@ The only reason this project exists in its current form is because [@benjaoming]
|
|
|
114
114
|
# Changelog
|
|
115
115
|
|
|
116
116
|
|
|
117
|
+
## v1.32.1 (2025-05-08)
|
|
118
|
+
|
|
119
|
+
* Fix missing mutagen requirement, fixes #283.
|
|
120
|
+
|
|
121
|
+
* Docs: docs.
|
|
122
|
+
|
|
123
|
+
|
|
117
124
|
## v1.32.0 (2025-05-07)
|
|
118
125
|
|
|
119
126
|
* Docs: update contributing guide.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.32.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ffmpeg-normalize
|
|
3
|
-
Version: 1.32.
|
|
3
|
+
Version: 1.32.1
|
|
4
4
|
Summary: Normalize audio via ffmpeg
|
|
5
5
|
Home-page: https://github.com/slhck/ffmpeg-normalize
|
|
6
6
|
Author: Werner Robitza
|
|
@@ -114,6 +114,13 @@ The only reason this project exists in its current form is because [@benjaoming]
|
|
|
114
114
|
# Changelog
|
|
115
115
|
|
|
116
116
|
|
|
117
|
+
## v1.32.1 (2025-05-08)
|
|
118
|
+
|
|
119
|
+
* Fix missing mutagen requirement, fixes #283.
|
|
120
|
+
|
|
121
|
+
* Docs: docs.
|
|
122
|
+
|
|
123
|
+
|
|
117
124
|
## v1.32.0 (2025-05-07)
|
|
118
125
|
|
|
119
126
|
* Docs: update contributing guide.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.32.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
|
|
File without changes
|
{ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.1}/ffmpeg_normalize.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ffmpeg_normalize-1.32.0 → ffmpeg_normalize-1.32.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
|