|
| 1 | +Metadata-Version: 2.4 |
| 2 | +Name: sms-tools |
| 3 | +Version: 1.0.1 |
| 4 | +Summary: Sound analysis/synthesis tools for music applications |
| 5 | +Author-email: "Music Technology Group, Universitat Pompeu Fabra" <mtg-info@upf.edu> |
| 6 | +Project-URL: Homepage, https://github.com/mtg/sms-tools |
| 7 | +Project-URL: Issues, https://github.com/mtg/sms-tools/issues |
| 8 | +Classifier: Development Status :: 5 - Production/Stable |
| 9 | +Classifier: Intended Audience :: Education |
| 10 | +Classifier: Intended Audience :: Science/Research |
| 11 | +Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis |
| 12 | +Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) |
| 13 | +Requires-Python: >=3.9 |
| 14 | +Description-Content-Type: text/markdown |
| 15 | +License-File: LICENSE |
| 16 | +License-File: AUTHORS |
| 17 | +Requires-Dist: matplotlib |
| 18 | +Requires-Dist: numpy<2.0.0 |
| 19 | +Requires-Dist: scipy |
| 20 | +Provides-Extra: test |
| 21 | +Requires-Dist: pytest>=8.0; extra == "test" |
| 22 | +Requires-Dist: pytest-cov>=5.0; extra == "test" |
| 23 | +Dynamic: license-file |
| 24 | + |
| 25 | +sms-tools |
| 26 | +========= |
| 27 | + |
| 28 | +Sound analysis/synthesis tools for music applications written in python. |
| 29 | + |
| 30 | +The package includes the following sound analysis/synthesis models: |
| 31 | + |
| 32 | +* dftModel.py: models based on the Discrete Fourier Transform |
| 33 | +* stft.py: models based on the Short-Time Fourier Transform |
| 34 | +* sineModel.py: models based on a Sinusoidal Model |
| 35 | +* harmonicModel.py: models based on a Harmonic Model |
| 36 | +* stochasticModel.py: models based on a Stochastic Model |
| 37 | +* sprModel.py: models based on a Sinusoidal plus Residual Model |
| 38 | +* spsModel.py: models based on a Sinusoidal plus Stochastic Model |
| 39 | +* hprModel.py: models based on a Harmonic plus Residual Model |
| 40 | +* hpsModel.py: models based on a Harmonic plus Stochastic Model |
| 41 | + |
| 42 | + |
| 43 | +Installation |
| 44 | +------------ |
| 45 | + |
| 46 | +Install using pip: |
| 47 | + |
| 48 | + pip install sms-tools |
| 49 | + |
| 50 | +Binary packages are available for Linux, macOS (Intel & Apple Silicon) and Windows (64 bit) on all recent python versions. |
| 51 | + |
| 52 | +To build and install the package locally you can use the python packaging tools: |
| 53 | + |
| 54 | + pip install build |
| 55 | + python -m build |
| 56 | + |
| 57 | + |
| 58 | +Jupyter Notebooks |
| 59 | +------- |
| 60 | +We provide a separate repository of examples and teaching materials in the form of Jupyter notebooks. |
| 61 | +You can find them at https://github.com/MTG/sms-tools-materials |
| 62 | + |
| 63 | +License |
| 64 | +------- |
| 65 | + |
| 66 | +sms-tools is made available under the terms of the Affero GPL license (http://www.gnu.org/licenses/agpl-3.0.en.html). |
0 commit comments