Commit e46eb41
committed
release: Bump version to 1.0.1 with performance, CLI, and packaging improvements
Performance:
- Parallelize MusicAnalyzer feature precomputation with std::async
- Optimize HPSS median filter using sorted insertion arrays and multi-threading
- Add automatic downsampling from 44100 Hz to 22050 Hz in audio_io
- Unify quick API (detect_bpm, etc.) with MusicAnalyzer for consistent results
CLI:
- Add progress bar to analysis output
- Add system-info subcommand
- Add bpm-detector style formatted output
Python (bindings/python/):
- Publish pip package to PyPI via trusted publisher
- Add sonare CLI entry point wrapping the C++ binary
- Expand test suite from 42 to 64 tests (test_analyzer.py)
- Add requirements.lock and requirements-dev.lock for reproducible builds
- Update analyzer.py, audio.py, cli.py with expanded API surface
npm (package.json, README.npm.md):
- Publish @libraz/libsonare with OIDC provenance
- Fix postinstall script to work correctly for package consumers
CI:
- Add multi-platform wheel builds: Linux x86_64/aarch64, macOS arm64
- Configure PyPI trusted publisher workflow
Tests:
- Expand C++ test coverage across analysis, core, effects, feature, and util
- Relax version format check to accept semver strings
Docs:
- Update README.md, README_ja.md, README.npm.md, and bindings/python/README.md1 parent 318c523 commit e46eb41
77 files changed
Lines changed: 2289 additions & 1232 deletions
File tree
- bindings/python
- src/libsonare
- tests
- src
- analysis
- core
- effects
- feature
- filters
- streaming
- util
- wasm
- tests
- analysis
- api
- cli
- core
- effects
- feature
- librosa
- streaming
- util
- wasm
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
| 5 | + | |
4 | 6 | | |
5 | 7 | | |
6 | 8 | | |
7 | 9 | | |
8 | 10 | | |
9 | | - | |
| 11 | + | |
10 | 12 | | |
11 | | - | |
| 13 | + | |
12 | 14 | | |
13 | | - | |
14 | | - | |
15 | | - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
16 | 21 | | |
17 | 22 | | |
18 | 23 | | |
19 | 24 | | |
20 | 25 | | |
21 | | - | |
22 | | - | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
23 | 34 | | |
24 | 35 | | |
25 | | - | |
26 | | - | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
27 | 58 | | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
| 59 | + | |
| 60 | + | |
32 | 61 | | |
33 | 62 | | |
34 | 63 | | |
| |||
37 | 66 | | |
38 | 67 | | |
39 | 68 | | |
40 | | - | |
41 | | - | |
| 69 | + | |
| 70 | + | |
42 | 71 | | |
43 | 72 | | |
44 | 73 | | |
| |||
48 | 77 | | |
49 | 78 | | |
50 | 79 | | |
51 | | - | |
| 80 | + | |
52 | 81 | | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
53 | 85 | | |
54 | | - | |
| 86 | + | |
55 | 87 | | |
56 | | - | |
| 88 | + | |
57 | 89 | | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
| 90 | + | |
62 | 91 | | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
| 92 | + | |
68 | 93 | | |
69 | | - | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
70 | 98 | | |
71 | | - | |
| 99 | + | |
72 | 100 | | |
73 | 101 | | |
74 | | - | |
| 102 | + | |
75 | 103 | | |
76 | 104 | | |
77 | | - | |
| 105 | + | |
78 | 106 | | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
79 | 110 | | |
80 | 111 | | |
81 | 112 | | |
82 | 113 | | |
83 | 114 | | |
84 | 115 | | |
| 116 | + | |
85 | 117 | | |
86 | | - | |
87 | 118 | | |
88 | 119 | | |
89 | 120 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | | - | |
8 | 7 | | |
9 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
10 | 15 | | |
11 | 16 | | |
12 | 17 | | |
13 | 18 | | |
14 | | - | |
| 19 | + | |
15 | 20 | | |
16 | 21 | | |
17 | 22 | | |
18 | | - | |
19 | | - | |
20 | | - | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
21 | 28 | | |
22 | | - | |
23 | | - | |
24 | | - | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
25 | 33 | | |
26 | 34 | | |
27 | 35 | | |
| |||
35 | 43 | | |
36 | 44 | | |
37 | 45 | | |
38 | | - | |
| 46 | + | |
39 | 47 | | |
40 | 48 | | |
41 | 49 | | |
| |||
46 | 54 | | |
47 | 55 | | |
48 | 56 | | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
49 | 73 | | |
50 | 74 | | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
62 | 87 | | |
63 | 88 | | |
64 | 89 | | |
| |||
0 commit comments