Changeset 665b711
- Timestamp:
- Jul 10, 2015, 2:25:47 AM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 31a09d2
- Parents:
- 4615886a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-musicutils.h
r4615886a r665b711 16 16 PyObject * Py_aubio_window(PyObject *self, PyObject *args); 17 17 18 static char Py_aubio_level_lin_doc[] = "" 19 "level_lin(fvec) -> fvec\n" 20 "\n" 21 "Compute sound level on a linear scale.\n" 22 "\n" 23 "This gives the average of the square amplitudes.\n" 24 "\n" 25 "Example\n" 26 "-------\n" 27 "\n" 28 ">>> level_Lin(numpy.ones(1024))\n" 29 "1.0"; 30 31 PyObject * Py_aubio_level_lin(PyObject *self, PyObject *args); 32 33 static char Py_aubio_db_spl_doc[] = "" 34 "Compute sound pressure level (SPL) in dB\n" 35 "\n" 36 "This quantity is often wrongly called 'loudness'.\n" 37 "\n" 38 "This gives ten times the log10 of the average of the square amplitudes.\n" 39 "\n" 40 "Example\n" 41 "-------\n" 42 "\n" 43 ">>> db_spl(numpy.ones(1024))\n" 44 "1.0"; 45 46 PyObject * Py_aubio_db_spl(PyObject *self, PyObject *args); 47 18 48 #endif /* _PY_AUBIO_MUSICUTILS_H_ */
Note: See TracChangeset
for help on using the changeset viewer.