- Timestamp:
- Nov 21, 2018, 12:59:31 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
- Children:
- e893e6fe
- Parents:
- d06c9a4 (diff), 5eea3b2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- python
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-filterbank.c
rd06c9a4 rbf3f09b 123 123 124 124 PyObject *input; 125 uint_t samplerate;126 if (!PyArg_ParseTuple (args, "O I", &input, &samplerate)) {125 smpl_t samplerate; 126 if (!PyArg_ParseTuple (args, "O" AUBIO_NPY_SMPL_CHR, &input, &samplerate)) { 127 127 return NULL; 128 128 } … … 269 269 Py_filterbank_set_power(Py_filterbank *self, PyObject *args) 270 270 { 271 uint_t power;272 273 if (!PyArg_ParseTuple (args, "I", &power)) {271 smpl_t power; 272 273 if (!PyArg_ParseTuple (args, AUBIO_NPY_SMPL_CHR, &power)) { 274 274 return NULL; 275 275 } … … 292 292 Py_filterbank_set_norm(Py_filterbank *self, PyObject *args) 293 293 { 294 uint_t playing;295 296 if (!PyArg_ParseTuple (args, "I", &playing)) {297 return NULL; 298 } 299 if(aubio_filterbank_set_norm (self->o, playing)) {294 smpl_t norm; 295 296 if (!PyArg_ParseTuple (args, AUBIO_NPY_SMPL_CHR, &norm)) { 297 return NULL; 298 } 299 if(aubio_filterbank_set_norm (self->o, norm)) { 300 300 if (PyErr_Occurred() == NULL) { 301 301 PyErr_SetString (PyExc_ValueError, -
python/ext/py-source.c
rd06c9a4 rbf3f09b 156 156 "... n_frames += len(samples)\n" 157 157 "... print('read', n_frames, 'samples in', samples.shape[0], 'channels',\n" 158 "... 'from file \" \%s\"' \% source.uri)\n"158 "... 'from file \"%%s\"' %% source.uri)\n" 159 159 "...\n" 160 160 "read 239334 samples in 2 channels from file \"audiotrack.wav\"\n" -
python/lib/gen_external.py
rd06c9a4 rbf3f09b 75 75 cpp_cmd += ['-E'] 76 76 77 # On win-amd64 (py3.x), the default compiler is cross-compiling, from x86 78 # to amd64 with %WIN_SDK_ROOT%\x86_amd64\cl.exe, but using this binary as a 79 # pre-processor generates no output, so we use %WIN_SDK_ROOT%\cl.exe 80 # instead. 81 if len(cpp_cmd) > 1 and 'cl.exe' in cpp_cmd[-2]: 82 plat = os.path.basename(os.path.dirname(cpp_cmd[-2])) 83 if plat == 'x86_amd64': 84 print('workaround on win64 to avoid empty pre-processor output') 85 cpp_cmd[-2] = cpp_cmd[-2].replace('x86_amd64', '') 86 elif True in ['amd64' in f for f in cpp_cmd]: 87 print('warning: not using workaround for', cpp_cmd[0], plat) 88 77 89 if not cpp_cmd: 78 90 print("Warning: could not guess preprocessor, using env's CC") -
python/tests/test_mfcc.py
rd06c9a4 rbf3f09b 136 136 buf_size, n_filters, n_coeffs, samplerate = 512, 40, 10, 16000 137 137 m = mfcc(buf_size, n_filters, n_coeffs, samplerate) 138 m.set_mel_coeffs_slaney( samplerate)138 m.set_mel_coeffs_slaney() 139 139 m(cvec(buf_size)) 140 140 assert m.get_power() == 1
Note: See TracChangeset
for help on using the changeset viewer.