Bohumír Zámečník
Bohumír Zámečník
In `setup.py`. Operations: - spectrogram from audio to NPZ file - spectrogram from audio to PNG image
At least turn a pile of functions with tons of parameters to objects.
Make the tests runnable via nosetests.
https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.spectrogram.html
The input shape can be then either: - (samples,) - mono - (samples, channels) - any number of channels Output shape (probably even for mono): - (blocks, bins, channels)
- run tests - [deploy to PyPI](https://docs.travis-ci.com/user/deployment/pypi/) Similar to: https://github.com/bzamecnik/sms-tools/blob/master/.travis.yml
- scikit-learn transformer - plots https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies ``` extras_require={ 'PDF': ["ReportLab>=1.2", "RXP"], 'reST': ["docutils>=0.3"], } ```
- how to use the library - how TFR works?