analyzeAudio 0.0.13__tar.gz → 0.0.14__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.
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/PKG-INFO +15 -2
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio.egg-info/PKG-INFO +15 -2
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio.egg-info/requires.txt +4 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/pyproject.toml +17 -4
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/LICENSE +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/README.md +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/__init__.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/analyzersUseFilename.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/analyzersUseSpectrogram.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/analyzersUseTensor.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/analyzersUseWaveform.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/audioAspectsRegistry.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio/pythonator.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio.egg-info/SOURCES.txt +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio.egg-info/dependency_links.txt +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio.egg-info/entry_points.txt +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/analyzeAudio.egg-info/top_level.txt +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/setup.cfg +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/tests/conftest.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/tests/test_audioAspectsRegistry.py +0 -0
- {analyzeaudio-0.0.13 → analyzeaudio-0.0.14}/tests/test_other.py +0 -0
|
@@ -1,23 +1,34 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: analyzeAudio
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.14
|
|
4
4
|
Summary: Measure one or more aspects of one or more audio files.
|
|
5
5
|
Author-email: Hunter Hogan <HunterHogan@pm.me>
|
|
6
6
|
License: CC-BY-NC-4.0
|
|
7
7
|
Project-URL: Donate, https://www.patreon.com/integrated
|
|
8
8
|
Project-URL: Homepage, https://github.com/hunterhogan/analyzeAudio
|
|
9
9
|
Project-URL: Repository, https://github.com/hunterhogan/analyzeAudio.git
|
|
10
|
-
Keywords: audio,analysis,measurement,metrics,torch
|
|
10
|
+
Keywords: audio,analysis,measurement,metrics,torch,spectrum,spectral,waveform,loudness,LUFS,RMS,FFmpeg,FFprobe,SRMR,audio-analysis,signal-processing
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Environment :: Console
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: Intended Audience :: End Users/Desktop
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
|
15
17
|
Classifier: Intended Audience :: Other Audience
|
|
18
|
+
Classifier: License :: Free for non-commercial use
|
|
16
19
|
Classifier: Natural Language :: English
|
|
17
20
|
Classifier: Operating System :: OS Independent
|
|
18
21
|
Classifier: Programming Language :: Python
|
|
19
22
|
Classifier: Programming Language :: Python :: 3
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
20
28
|
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
|
|
29
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
|
|
30
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
31
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
32
|
Classifier: Typing :: Typed
|
|
22
33
|
Requires-Python: >=3.10
|
|
23
34
|
Description-Content-Type: text/markdown
|
|
@@ -26,6 +37,8 @@ Requires-Dist: cachetools
|
|
|
26
37
|
Requires-Dist: librosa
|
|
27
38
|
Requires-Dist: numpy
|
|
28
39
|
Requires-Dist: optype[numpy]
|
|
40
|
+
Requires-Dist: standard-aifc; python_version >= "3.13"
|
|
41
|
+
Requires-Dist: standard-sunau; python_version >= "3.13"
|
|
29
42
|
Requires-Dist: torch
|
|
30
43
|
Requires-Dist: torchmetrics[audio]
|
|
31
44
|
Requires-Dist: tqdm
|
|
@@ -1,23 +1,34 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: analyzeAudio
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.14
|
|
4
4
|
Summary: Measure one or more aspects of one or more audio files.
|
|
5
5
|
Author-email: Hunter Hogan <HunterHogan@pm.me>
|
|
6
6
|
License: CC-BY-NC-4.0
|
|
7
7
|
Project-URL: Donate, https://www.patreon.com/integrated
|
|
8
8
|
Project-URL: Homepage, https://github.com/hunterhogan/analyzeAudio
|
|
9
9
|
Project-URL: Repository, https://github.com/hunterhogan/analyzeAudio.git
|
|
10
|
-
Keywords: audio,analysis,measurement,metrics,torch
|
|
10
|
+
Keywords: audio,analysis,measurement,metrics,torch,spectrum,spectral,waveform,loudness,LUFS,RMS,FFmpeg,FFprobe,SRMR,audio-analysis,signal-processing
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Environment :: Console
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: Intended Audience :: End Users/Desktop
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
|
15
17
|
Classifier: Intended Audience :: Other Audience
|
|
18
|
+
Classifier: License :: Free for non-commercial use
|
|
16
19
|
Classifier: Natural Language :: English
|
|
17
20
|
Classifier: Operating System :: OS Independent
|
|
18
21
|
Classifier: Programming Language :: Python
|
|
19
22
|
Classifier: Programming Language :: Python :: 3
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
20
28
|
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
|
|
29
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
|
|
30
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
31
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
32
|
Classifier: Typing :: Typed
|
|
22
33
|
Requires-Python: >=3.10
|
|
23
34
|
Description-Content-Type: text/markdown
|
|
@@ -26,6 +37,8 @@ Requires-Dist: cachetools
|
|
|
26
37
|
Requires-Dist: librosa
|
|
27
38
|
Requires-Dist: numpy
|
|
28
39
|
Requires-Dist: optype[numpy]
|
|
40
|
+
Requires-Dist: standard-aifc; python_version >= "3.13"
|
|
41
|
+
Requires-Dist: standard-sunau; python_version >= "3.13"
|
|
29
42
|
Requires-Dist: torch
|
|
30
43
|
Requires-Dist: torchmetrics[audio]
|
|
31
44
|
Requires-Dist: tqdm
|
|
@@ -9,35 +9,48 @@ classifiers = [
|
|
|
9
9
|
"Environment :: Console",
|
|
10
10
|
"Intended Audience :: Developers",
|
|
11
11
|
"Intended Audience :: End Users/Desktop",
|
|
12
|
+
"Intended Audience :: Science/Research",
|
|
13
|
+
"Intended Audience :: Information Technology",
|
|
12
14
|
"Intended Audience :: Other Audience",
|
|
15
|
+
"License :: Free for non-commercial use",
|
|
13
16
|
"Natural Language :: English",
|
|
14
17
|
"Operating System :: OS Independent",
|
|
15
18
|
"Programming Language :: Python",
|
|
16
|
-
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Programming Language :: Python :: 3.13",
|
|
24
|
+
"Topic :: Multimedia :: Sound/Audio",
|
|
17
25
|
"Topic :: Multimedia :: Sound/Audio :: Analysis",
|
|
26
|
+
"Topic :: Multimedia :: Sound/Audio :: Conversion",
|
|
27
|
+
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
18
29
|
"Typing :: Typed",]
|
|
19
30
|
dependencies = [
|
|
20
31
|
"cachetools",
|
|
21
32
|
"librosa",
|
|
22
33
|
"numpy",
|
|
23
34
|
"optype[numpy]",
|
|
35
|
+
"standard-aifc;python_version>='3.13'",
|
|
36
|
+
"standard-sunau;python_version>='3.13'",
|
|
24
37
|
"torch",
|
|
25
38
|
"torchmetrics[audio]",
|
|
26
39
|
"tqdm",
|
|
27
40
|
"Z0Z_tools",]
|
|
28
41
|
description = "Measure one or more aspects of one or more audio files."
|
|
29
|
-
keywords = ["audio", "analysis", "measurement", "metrics", "torch"]
|
|
42
|
+
keywords = ["audio", "analysis", "measurement", "metrics", "torch", "spectrum", "spectral", "waveform", "loudness", "LUFS", "RMS", "FFmpeg", "FFprobe", "SRMR", "audio-analysis", "signal-processing"]
|
|
30
43
|
license = { 'text' = "CC-BY-NC-4.0" }
|
|
31
44
|
name = "analyzeAudio"
|
|
32
45
|
optional-dependencies = { testing = [
|
|
33
46
|
"pytest-cov",
|
|
34
47
|
"pytest-xdist",
|
|
35
48
|
"pytest",
|
|
36
|
-
|
|
49
|
+
"pyupgrade",] }
|
|
37
50
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
38
51
|
requires-python = ">=3.10"
|
|
39
52
|
urls = { Donate = "https://www.patreon.com/integrated", Homepage = "https://github.com/hunterhogan/analyzeAudio", Repository = "https://github.com/hunterhogan/analyzeAudio.git" }
|
|
40
|
-
version = "0.0.
|
|
53
|
+
version = "0.0.14"
|
|
41
54
|
|
|
42
55
|
[project.scripts]
|
|
43
56
|
whatMeasurements = "analyzeAudio.audioAspectsRegistry:getListAvailableAudioAspects"
|
|
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
|