ffmpeg-normalize 1.29.0__tar.gz → 1.29.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.29.0 → ffmpeg-normalize-1.29.1}/CHANGELOG.md +5 -0
- {ffmpeg-normalize-1.29.0/ffmpeg_normalize.egg-info → ffmpeg-normalize-1.29.1}/PKG-INFO +6 -1
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/__main__.py +3 -1
- ffmpeg-normalize-1.29.1/ffmpeg_normalize/_version.py +1 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1/ffmpeg_normalize.egg-info}/PKG-INFO +6 -1
- ffmpeg-normalize-1.29.0/ffmpeg_normalize/_version.py +0 -1
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/LICENSE +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/README.md +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/__init__.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/_cmd_utils.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/_errors.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/_ffmpeg_normalize.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/_logger.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/_media_file.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/_streams.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize/py.typed +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/SOURCES.txt +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/dependency_links.txt +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/entry_points.txt +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/not-zip-safe +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/requires.txt +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/top_level.txt +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/setup.cfg +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/setup.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/test/out.mp4 +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/test/test.mp4 +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/test/test.py +0 -0
- {ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.1}/test/test.wav +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ffmpeg-normalize
|
|
3
|
-
Version: 1.29.
|
|
3
|
+
Version: 1.29.1
|
|
4
4
|
Summary: Normalize audio via ffmpeg
|
|
5
5
|
Home-page: https://github.com/slhck/ffmpeg-normalize
|
|
6
6
|
Author: Werner Robitza
|
|
@@ -594,6 +594,11 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
594
594
|
# Changelog
|
|
595
595
|
|
|
596
596
|
|
|
597
|
+
## v1.29.1 (2024-10-22)
|
|
598
|
+
|
|
599
|
+
* Fix: override argparse usage.
|
|
600
|
+
|
|
601
|
+
|
|
597
602
|
## v1.29.0 (2024-10-14)
|
|
598
603
|
|
|
599
604
|
* Add option to set audio channels directly.
|
|
@@ -26,7 +26,9 @@ def create_parser() -> argparse.ArgumentParser:
|
|
|
26
26
|
ffmpeg-normalize v{} -- command line tool for normalizing audio files
|
|
27
27
|
""".format(__version__)
|
|
28
28
|
),
|
|
29
|
-
#
|
|
29
|
+
# manually overridden because argparse generates the wrong order of arguments, see:
|
|
30
|
+
# https://github.com/slhck/ffmpeg-normalize/issues/132#issuecomment-662516535
|
|
31
|
+
usage="%(prog)s INPUT [INPUT ...] [-o OUTPUT [OUTPUT ...]] [options]",
|
|
30
32
|
formatter_class=argparse.RawTextHelpFormatter,
|
|
31
33
|
epilog=textwrap.dedent(
|
|
32
34
|
"""\
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.29.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ffmpeg-normalize
|
|
3
|
-
Version: 1.29.
|
|
3
|
+
Version: 1.29.1
|
|
4
4
|
Summary: Normalize audio via ffmpeg
|
|
5
5
|
Home-page: https://github.com/slhck/ffmpeg-normalize
|
|
6
6
|
Author: Werner Robitza
|
|
@@ -594,6 +594,11 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
594
594
|
# Changelog
|
|
595
595
|
|
|
596
596
|
|
|
597
|
+
## v1.29.1 (2024-10-22)
|
|
598
|
+
|
|
599
|
+
* Fix: override argparse usage.
|
|
600
|
+
|
|
601
|
+
|
|
597
602
|
## v1.29.0 (2024-10-14)
|
|
598
603
|
|
|
599
604
|
* Add option to set audio channels directly.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.29.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.29.0 → ffmpeg-normalize-1.29.1}/ffmpeg_normalize.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ffmpeg-normalize-1.29.0 → ffmpeg-normalize-1.29.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
|