ffmpeg-normalize 1.26.3__tar.gz → 1.26.5__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.
Files changed (28) hide show
  1. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/CHANGELOG.md +17 -0
  2. {ffmpeg-normalize-1.26.3/ffmpeg_normalize.egg-info → ffmpeg-normalize-1.26.5}/PKG-INFO +47 -4
  3. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/README.md +29 -3
  4. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/_media_file.py +1 -1
  5. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/_streams.py +2 -2
  6. ffmpeg-normalize-1.26.5/ffmpeg_normalize/_version.py +1 -0
  7. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5/ffmpeg_normalize.egg-info}/PKG-INFO +47 -4
  8. ffmpeg-normalize-1.26.3/ffmpeg_normalize/_version.py +0 -1
  9. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/LICENSE +0 -0
  10. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/__init__.py +0 -0
  11. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/__main__.py +0 -0
  12. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/_cmd_utils.py +0 -0
  13. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/_errors.py +0 -0
  14. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/_ffmpeg_normalize.py +0 -0
  15. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/_logger.py +0 -0
  16. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize/py.typed +0 -0
  17. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize.egg-info/SOURCES.txt +0 -0
  18. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize.egg-info/dependency_links.txt +0 -0
  19. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize.egg-info/entry_points.txt +0 -0
  20. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize.egg-info/not-zip-safe +0 -0
  21. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize.egg-info/requires.txt +0 -0
  22. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/ffmpeg_normalize.egg-info/top_level.txt +0 -0
  23. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/setup.cfg +0 -0
  24. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/setup.py +0 -0
  25. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/test/out.mp4 +0 -0
  26. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/test/test.mp4 +0 -0
  27. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/test/test.py +0 -0
  28. {ffmpeg-normalize-1.26.3 → ffmpeg-normalize-1.26.5}/test/test.wav +0 -0
@@ -1,6 +1,23 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## v1.26.5 (2023-03-15)
5
+
6
+ * Add "-hide_banner" remove "-nostdin" (#222)
7
+
8
+ The `-nostdin` option is unnessary because of the `-y` option.
9
+ Adding `-hide_banner` makes DEBUG statements shorter.
10
+
11
+ * Homebrew works on linux too.
12
+
13
+ * Explain ffmpeg installation steps.
14
+
15
+
16
+ ## v1.26.4 (2023-02-08)
17
+
18
+ * Re-add requirements.txt to (maybe) fix conda-forge builds.
19
+
20
+
4
21
  ## v1.26.3 (2023-02-08)
5
22
 
6
23
  * Fix requirements (#218)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ffmpeg-normalize
3
- Version: 1.26.3
3
+ Version: 1.26.5
4
4
  Summary: Normalize audio via ffmpeg
5
5
  Home-page: https://github.com/slhck/ffmpeg-normalize
6
6
  Author: Werner Robitza
@@ -51,6 +51,7 @@ Read on for more info.
51
51
  **Contents:**
52
52
 
53
53
  - [Requirements](#requirements)
54
+ - [ffmpeg](#ffmpeg)
54
55
  - [Installation](#installation)
55
56
  - [Usage](#usage)
56
57
  - [Description](#description)
@@ -84,9 +85,34 @@ Read on for more info.
84
85
 
85
86
  ## Requirements
86
87
 
87
- - Python 3.8 or higher
88
- - ffmpeg v4.2 or higher from <https://ffmpeg.org/> – static builds using the latest Git master are recommended
89
- - `ffmpeg` must be in your \$PATH
88
+ You need Python 3.8 or higher.
89
+
90
+ ### ffmpeg
91
+
92
+ - ffmpeg 5.x is required
93
+ - Download a [static build](https://ffmpeg.org/download.html) for your system
94
+ - Place the `ffmpeg` executable in your `$PATH`, or specify the path to the binary with the `FFMPEG_PATH` environment variable in `ffmpeg-normalize`
95
+
96
+ For instance, under Linux:
97
+
98
+ ```bash
99
+ wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
100
+ mkdir -p ffmpeg
101
+ tar -xf ffmpeg-release-amd64-static.tar.xz -C ffmpeg --strip-components=1
102
+ sudo cp ffmpeg/ffmpeg /usr/local/bin
103
+ sudo cp ffmpeg/ffprobe /usr/local/bin
104
+ sudo chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
105
+ ```
106
+
107
+ For Windows, follow [this guide](https://www.wikihow.com/Install-FFmpeg-on-Windows).
108
+
109
+ For macOS and Linux, you can also use [Homebrew](https://brew.sh):
110
+
111
+ ```bash
112
+ brew install ffmpeg
113
+ ```
114
+
115
+ Note that using distribution packages (e.g., `apt install ffmpeg`) is not recommended, as these are often outdated.
90
116
 
91
117
  ## Installation
92
118
 
@@ -495,6 +521,23 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
495
521
  # Changelog
496
522
 
497
523
 
524
+ ## v1.26.5 (2023-03-15)
525
+
526
+ * Add "-hide_banner" remove "-nostdin" (#222)
527
+
528
+ The `-nostdin` option is unnessary because of the `-y` option.
529
+ Adding `-hide_banner` makes DEBUG statements shorter.
530
+
531
+ * Homebrew works on linux too.
532
+
533
+ * Explain ffmpeg installation steps.
534
+
535
+
536
+ ## v1.26.4 (2023-02-08)
537
+
538
+ * Re-add requirements.txt to (maybe) fix conda-forge builds.
539
+
540
+
498
541
  ## v1.26.3 (2023-02-08)
499
542
 
500
543
  * Fix requirements (#218)
@@ -26,6 +26,7 @@ Read on for more info.
26
26
  **Contents:**
27
27
 
28
28
  - [Requirements](#requirements)
29
+ - [ffmpeg](#ffmpeg)
29
30
  - [Installation](#installation)
30
31
  - [Usage](#usage)
31
32
  - [Description](#description)
@@ -59,9 +60,34 @@ Read on for more info.
59
60
 
60
61
  ## Requirements
61
62
 
62
- - Python 3.8 or higher
63
- - ffmpeg v4.2 or higher from <https://ffmpeg.org/> – static builds using the latest Git master are recommended
64
- - `ffmpeg` must be in your \$PATH
63
+ You need Python 3.8 or higher.
64
+
65
+ ### ffmpeg
66
+
67
+ - ffmpeg 5.x is required
68
+ - Download a [static build](https://ffmpeg.org/download.html) for your system
69
+ - Place the `ffmpeg` executable in your `$PATH`, or specify the path to the binary with the `FFMPEG_PATH` environment variable in `ffmpeg-normalize`
70
+
71
+ For instance, under Linux:
72
+
73
+ ```bash
74
+ wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
75
+ mkdir -p ffmpeg
76
+ tar -xf ffmpeg-release-amd64-static.tar.xz -C ffmpeg --strip-components=1
77
+ sudo cp ffmpeg/ffmpeg /usr/local/bin
78
+ sudo cp ffmpeg/ffprobe /usr/local/bin
79
+ sudo chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
80
+ ```
81
+
82
+ For Windows, follow [this guide](https://www.wikihow.com/Install-FFmpeg-on-Windows).
83
+
84
+ For macOS and Linux, you can also use [Homebrew](https://brew.sh):
85
+
86
+ ```bash
87
+ brew install ffmpeg
88
+ ```
89
+
90
+ Note that using distribution packages (e.g., `apt install ffmpeg`) is not recommended, as these are often outdated.
65
91
 
66
92
  ## Installation
67
93
 
@@ -289,7 +289,7 @@ class MediaFile:
289
289
  output_stream_types.append("subtitle")
290
290
 
291
291
  # base command, here we will add all other options
292
- cmd = [self.ffmpeg_normalize.ffmpeg_exe, "-y", "-nostdin"]
292
+ cmd = [self.ffmpeg_normalize.ffmpeg_exe, "-hide_banner", "-y"]
293
293
 
294
294
  # extra options (if any)
295
295
  if self.ffmpeg_normalize.extra_input_options:
@@ -226,7 +226,7 @@ class AudioStream(MediaStream):
226
226
 
227
227
  cmd = [
228
228
  self.media_file.ffmpeg_normalize.ffmpeg_exe,
229
- "-nostdin",
229
+ "-hide_banner",
230
230
  "-y",
231
231
  "-i",
232
232
  self.media_file.input_file,
@@ -295,7 +295,7 @@ class AudioStream(MediaStream):
295
295
 
296
296
  cmd = [
297
297
  self.media_file.ffmpeg_normalize.ffmpeg_exe,
298
- "-nostdin",
298
+ "-hide_banner",
299
299
  "-y",
300
300
  "-i",
301
301
  self.media_file.input_file,
@@ -0,0 +1 @@
1
+ __version__ = "1.26.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ffmpeg-normalize
3
- Version: 1.26.3
3
+ Version: 1.26.5
4
4
  Summary: Normalize audio via ffmpeg
5
5
  Home-page: https://github.com/slhck/ffmpeg-normalize
6
6
  Author: Werner Robitza
@@ -51,6 +51,7 @@ Read on for more info.
51
51
  **Contents:**
52
52
 
53
53
  - [Requirements](#requirements)
54
+ - [ffmpeg](#ffmpeg)
54
55
  - [Installation](#installation)
55
56
  - [Usage](#usage)
56
57
  - [Description](#description)
@@ -84,9 +85,34 @@ Read on for more info.
84
85
 
85
86
  ## Requirements
86
87
 
87
- - Python 3.8 or higher
88
- - ffmpeg v4.2 or higher from <https://ffmpeg.org/> – static builds using the latest Git master are recommended
89
- - `ffmpeg` must be in your \$PATH
88
+ You need Python 3.8 or higher.
89
+
90
+ ### ffmpeg
91
+
92
+ - ffmpeg 5.x is required
93
+ - Download a [static build](https://ffmpeg.org/download.html) for your system
94
+ - Place the `ffmpeg` executable in your `$PATH`, or specify the path to the binary with the `FFMPEG_PATH` environment variable in `ffmpeg-normalize`
95
+
96
+ For instance, under Linux:
97
+
98
+ ```bash
99
+ wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
100
+ mkdir -p ffmpeg
101
+ tar -xf ffmpeg-release-amd64-static.tar.xz -C ffmpeg --strip-components=1
102
+ sudo cp ffmpeg/ffmpeg /usr/local/bin
103
+ sudo cp ffmpeg/ffprobe /usr/local/bin
104
+ sudo chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
105
+ ```
106
+
107
+ For Windows, follow [this guide](https://www.wikihow.com/Install-FFmpeg-on-Windows).
108
+
109
+ For macOS and Linux, you can also use [Homebrew](https://brew.sh):
110
+
111
+ ```bash
112
+ brew install ffmpeg
113
+ ```
114
+
115
+ Note that using distribution packages (e.g., `apt install ffmpeg`) is not recommended, as these are often outdated.
90
116
 
91
117
  ## Installation
92
118
 
@@ -495,6 +521,23 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
495
521
  # Changelog
496
522
 
497
523
 
524
+ ## v1.26.5 (2023-03-15)
525
+
526
+ * Add "-hide_banner" remove "-nostdin" (#222)
527
+
528
+ The `-nostdin` option is unnessary because of the `-y` option.
529
+ Adding `-hide_banner` makes DEBUG statements shorter.
530
+
531
+ * Homebrew works on linux too.
532
+
533
+ * Explain ffmpeg installation steps.
534
+
535
+
536
+ ## v1.26.4 (2023-02-08)
537
+
538
+ * Re-add requirements.txt to (maybe) fix conda-forge builds.
539
+
540
+
498
541
  ## v1.26.3 (2023-02-08)
499
542
 
500
543
  * Fix requirements (#218)
@@ -1 +0,0 @@
1
- __version__ = "1.26.3"