describealign 1.0.8__tar.gz → 1.1.0__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.
- {describealign-1.0.8 → describealign-1.1.0}/PKG-INFO +12 -10
- {describealign-1.0.8 → describealign-1.1.0}/describealign.egg-info/PKG-INFO +12 -10
- {describealign-1.0.8 → describealign-1.1.0}/describealign.egg-info/SOURCES.txt +2 -0
- describealign-1.1.0/describealign.egg-info/requires.txt +15 -0
- {describealign-1.0.8 → describealign-1.1.0}/describealign.py +1287 -1220
- describealign-1.1.0/pyproject.toml +27 -0
- describealign-1.1.0/requirements.txt +11 -0
- describealign-1.1.0/version +1 -0
- describealign-1.0.8/describealign.egg-info/requires.txt +0 -13
- describealign-1.0.8/pyproject.toml +0 -37
- {describealign-1.0.8 → describealign-1.1.0}/LICENSE +0 -0
- {describealign-1.0.8 → describealign-1.1.0}/README.md +0 -0
- {describealign-1.0.8 → describealign-1.1.0}/describealign.egg-info/dependency_links.txt +0 -0
- {describealign-1.0.8 → describealign-1.1.0}/describealign.egg-info/entry_points.txt +0 -0
- {describealign-1.0.8 → describealign-1.1.0}/describealign.egg-info/top_level.txt +0 -0
- {describealign-1.0.8 → describealign-1.1.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: describealign
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: Combines videos with matching audio files (e.g. audio descriptions)
|
|
5
5
|
Author-email: Julian Brown <julbean@proton.me>
|
|
6
6
|
Project-URL: Homepage, https://github.com/julbean/describealign
|
|
@@ -11,15 +11,17 @@ Classifier: Operating System :: OS Independent
|
|
|
11
11
|
Requires-Python: >=3.8
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: ffmpeg_python
|
|
15
|
-
Requires-Dist: static-ffmpeg
|
|
16
|
-
Requires-Dist: matplotlib
|
|
17
|
-
Requires-Dist: numpy
|
|
18
|
-
Requires-Dist: python_speech_features
|
|
19
|
-
Requires-Dist: scipy
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
14
|
+
Requires-Dist: ffmpeg_python~=0.2.0
|
|
15
|
+
Requires-Dist: static-ffmpeg~=2.5
|
|
16
|
+
Requires-Dist: matplotlib~=3.5
|
|
17
|
+
Requires-Dist: numpy~=1.21
|
|
18
|
+
Requires-Dist: python_speech_features~=0.6
|
|
19
|
+
Requires-Dist: scipy~=1.10
|
|
20
|
+
Requires-Dist: platformdirs~=4.2
|
|
21
|
+
Requires-Dist: pytsmod~=0.3.7
|
|
22
|
+
Requires-Dist: PySimpleGUIWx~=0.17.2; platform_system == "Windows"
|
|
23
|
+
Requires-Dist: PySimpleGUIQt~=0.35.0; platform_system != "Windows"
|
|
24
|
+
Requires-Dist: PySide2~=5.15; platform_system != "Windows"
|
|
23
25
|
|
|
24
26
|
For usage help, simply run the script directly.
|
|
25
27
|
If the Scripts folder has been added to PATH, can be run
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: describealign
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: Combines videos with matching audio files (e.g. audio descriptions)
|
|
5
5
|
Author-email: Julian Brown <julbean@proton.me>
|
|
6
6
|
Project-URL: Homepage, https://github.com/julbean/describealign
|
|
@@ -11,15 +11,17 @@ Classifier: Operating System :: OS Independent
|
|
|
11
11
|
Requires-Python: >=3.8
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: ffmpeg_python
|
|
15
|
-
Requires-Dist: static-ffmpeg
|
|
16
|
-
Requires-Dist: matplotlib
|
|
17
|
-
Requires-Dist: numpy
|
|
18
|
-
Requires-Dist: python_speech_features
|
|
19
|
-
Requires-Dist: scipy
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
14
|
+
Requires-Dist: ffmpeg_python~=0.2.0
|
|
15
|
+
Requires-Dist: static-ffmpeg~=2.5
|
|
16
|
+
Requires-Dist: matplotlib~=3.5
|
|
17
|
+
Requires-Dist: numpy~=1.21
|
|
18
|
+
Requires-Dist: python_speech_features~=0.6
|
|
19
|
+
Requires-Dist: scipy~=1.10
|
|
20
|
+
Requires-Dist: platformdirs~=4.2
|
|
21
|
+
Requires-Dist: pytsmod~=0.3.7
|
|
22
|
+
Requires-Dist: PySimpleGUIWx~=0.17.2; platform_system == "Windows"
|
|
23
|
+
Requires-Dist: PySimpleGUIQt~=0.35.0; platform_system != "Windows"
|
|
24
|
+
Requires-Dist: PySide2~=5.15; platform_system != "Windows"
|
|
23
25
|
|
|
24
26
|
For usage help, simply run the script directly.
|
|
25
27
|
If the Scripts folder has been added to PATH, can be run
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
ffmpeg_python~=0.2.0
|
|
2
|
+
static-ffmpeg~=2.5
|
|
3
|
+
matplotlib~=3.5
|
|
4
|
+
numpy~=1.21
|
|
5
|
+
python_speech_features~=0.6
|
|
6
|
+
scipy~=1.10
|
|
7
|
+
platformdirs~=4.2
|
|
8
|
+
pytsmod~=0.3.7
|
|
9
|
+
|
|
10
|
+
[:platform_system != "Windows"]
|
|
11
|
+
PySimpleGUIQt~=0.35.0
|
|
12
|
+
PySide2~=5.15
|
|
13
|
+
|
|
14
|
+
[:platform_system == "Windows"]
|
|
15
|
+
PySimpleGUIWx~=0.17.2
|