Changes in python/ext/py-source.c [a5c3f2a:58eb250]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-source.c
ra5c3f2a r58eb250 19 19 "source(path, samplerate=0, hop_size=512, channels=0)\n" 20 20 "\n" 21 " Read audio samples from a media file.\n"21 "Create a new source, opening the given pathname for reading.\n" 22 22 "\n" 23 23 "`source` open the file specified in `path` and creates a callable\n" … … 248 248 "Returns\n" 249 249 "-------\n" 250 "samples : numpy.ndarray \n"250 "samples : numpy.ndarray, shape `(hop_size,)`, dtype aubio.float_type\n" 251 251 " `fvec` of size `hop_size` containing the new samples.\n" 252 252 "read : int\n" … … 284 284 "Returns\n" 285 285 "-------\n" 286 "samples : n umpy.ndarray\n"286 "samples : np.ndarray([hop_size, channels], dtype=aubio.float_type)\n" 287 287 " NumPy array of shape `(hop_size, channels)` containing the new\n" 288 288 " audio samples.\n"
Note: See TracChangeset
for help on using the changeset viewer.