talks-reducer 0.3.5__tar.gz → 0.4.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.
- {talks_reducer-0.3.5/talks_reducer.egg-info → talks_reducer-0.4.1}/PKG-INFO +3 -3
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/README.md +1 -1
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/pyproject.toml +1 -1
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/__about__.py +1 -1
- {talks_reducer-0.3.5 → talks_reducer-0.4.1/talks_reducer.egg-info}/PKG-INFO +3 -3
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer.egg-info/requires.txt +1 -1
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/LICENSE +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/setup.cfg +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/__init__.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/__main__.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/audio.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/chunks.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/cli.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/ffmpeg.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/gui.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/models.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/pipeline.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer/progress.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer.egg-info/SOURCES.txt +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer.egg-info/dependency_links.txt +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer.egg-info/entry_points.txt +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/talks_reducer.egg-info/top_level.txt +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/tests/test_audio.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/tests/test_cli.py +0 -0
- {talks_reducer-0.3.5 → talks_reducer-0.4.1}/tests/test_pipeline_service.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: talks-reducer
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.1
|
4
4
|
Summary: CLI for speeding up long-form talks by removing silence
|
5
5
|
Author: Talks Reducer Maintainers
|
6
6
|
License-Expression: MIT
|
@@ -21,7 +21,7 @@ Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
21
21
|
Requires-Dist: black>=23.0.0; extra == "dev"
|
22
22
|
Requires-Dist: isort>=5.12.0; extra == "dev"
|
23
23
|
Requires-Dist: bump-my-version>=0.5.0; extra == "dev"
|
24
|
-
Requires-Dist: pyinstaller>=6.
|
24
|
+
Requires-Dist: pyinstaller>=6.4.0; extra == "dev"
|
25
25
|
Dynamic: license-file
|
26
26
|
|
27
27
|
# Talks Reducer
|
@@ -42,7 +42,7 @@ See [CHANGELOG.md](CHANGELOG.md).
|
|
42
42
|
## Install GUI (Windows, macOS)
|
43
43
|
Go to the [releases page](https://github.com/popstas/talks-reducer/releases) and download the appropriate artifact:
|
44
44
|
|
45
|
-
- **Windows** — `talks-reducer-windows.zip`
|
45
|
+
- **Windows** — `talks-reducer-windows-0.4.0.zip`
|
46
46
|
- **macOS** — `talks-reducer.app.zip` (but it doesn't work for me)
|
47
47
|
|
48
48
|
## Install CLI (Linux, Windows, macOS)
|
@@ -16,7 +16,7 @@ See [CHANGELOG.md](CHANGELOG.md).
|
|
16
16
|
## Install GUI (Windows, macOS)
|
17
17
|
Go to the [releases page](https://github.com/popstas/talks-reducer/releases) and download the appropriate artifact:
|
18
18
|
|
19
|
-
- **Windows** — `talks-reducer-windows.zip`
|
19
|
+
- **Windows** — `talks-reducer-windows-0.4.0.zip`
|
20
20
|
- **macOS** — `talks-reducer.app.zip` (but it doesn't work for me)
|
21
21
|
|
22
22
|
## Install CLI (Linux, Windows, macOS)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: talks-reducer
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.1
|
4
4
|
Summary: CLI for speeding up long-form talks by removing silence
|
5
5
|
Author: Talks Reducer Maintainers
|
6
6
|
License-Expression: MIT
|
@@ -21,7 +21,7 @@ Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
21
21
|
Requires-Dist: black>=23.0.0; extra == "dev"
|
22
22
|
Requires-Dist: isort>=5.12.0; extra == "dev"
|
23
23
|
Requires-Dist: bump-my-version>=0.5.0; extra == "dev"
|
24
|
-
Requires-Dist: pyinstaller>=6.
|
24
|
+
Requires-Dist: pyinstaller>=6.4.0; extra == "dev"
|
25
25
|
Dynamic: license-file
|
26
26
|
|
27
27
|
# Talks Reducer
|
@@ -42,7 +42,7 @@ See [CHANGELOG.md](CHANGELOG.md).
|
|
42
42
|
## Install GUI (Windows, macOS)
|
43
43
|
Go to the [releases page](https://github.com/popstas/talks-reducer/releases) and download the appropriate artifact:
|
44
44
|
|
45
|
-
- **Windows** — `talks-reducer-windows.zip`
|
45
|
+
- **Windows** — `talks-reducer-windows-0.4.0.zip`
|
46
46
|
- **macOS** — `talks-reducer.app.zip` (but it doesn't work for me)
|
47
47
|
|
48
48
|
## Install CLI (Linux, Windows, macOS)
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|