Jens Lindahl
Jens Lindahl
Duplicate of #100
When using `librosa.load` or `soundfile.read` or anything similar, the best result is obtained by using the optional argument `dtype` to ensure `int16`. _Example:_ ``` librosa.load('path', dtype='int16') ``` and ``` sf.read('path',...
> @pjnr1 i used the way you told,but also have mistake :librosa.util.exceptions.ParameterError: Audio data must be floating-point @hidehowever777 what format is your sound file?
oh, I see. Doesn't work for librosa. Which is a bid counter-intuitive. The wav-format is implemented so that each sample is save on disk as integer-values. You could convert the...
@hidehowever777 I guess you can conclude that the file format isn't the problem then. Sorry.
Hi Wang, Did you try it out or in any way make it work?