surfboard icon indicating copy to clipboard operation
surfboard copied to clipboard

Novoic's audio feature extraction library

Results 11 surfboard issues
Sort by recently updated
recently updated
newest added

Hello, I have encounter an error when I was installing surfboard in Python 3.7.6 on Win 11. I am sure that I have the package 'wheel' installed and on the...

Hi there! Love the tech, this project has been incredibly useful in my work analysis conversational data however I recently came across an issue where I noticed that when I...

Librosa is doing away with positional arguments. Perhaps because of this, magnitude_spectrum and bark_spectrogram produced empty outputs. Log_melspec produced a FutureWarning about the issue. Fix: Change Librosa spectrogram calls to...

Hi, I have following error message on windows 10 during pip install surfboard. Any way to fixit? Updating cmake doesn't help. ERROR: Command errored out with exit status 1: command:...

bug

According to setup.py, this is surfboard requires numba==0.48.0 because of an issue with Librosa 0.7.2 Can this requirement be relaxed with librosa 0.8.0? I may be able to help test....

How i can solve this? Installing collected packages: llvmlite, numba, toml, py, pluggy, iniconfig, future, colorama, attrs, atomicwrites, pyyaml, pytest, pysptk, pyloudnorm, PeakUtils, Cython, surfboard Attempting uninstall: llvmlite Found existing...

Currently to obtain a components and a features file (pickle and csv files) you have to run the command line or the Python API twice, which recomputes the components. Would...

enhancement

Given that you compute formant frequencies, it would be neat to implement methods that automatically calculate the VSA and VAI parameters, eg [like in this paper](https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0032132). [This project](https://drammock.github.io/phonR/) also talks...

enhancement

Hi there, I tried calling Waveform from surfboard.sound and it told me that there was an error **AttributeError: module 'numpy' has no attribute 'long'** np.long was said to be depreceated...

In use ` formants = wave.formants_slidingwindow() f1, f2 = formants[0], formants[1]` Will report an error ` features = features_augmentation_selection(wave, wave_path, speaker) File "D:\程序\CGAN-main\units\data_utils.py", line 131, in features_augmentation_selection formants = wave.formants_slidingwindow()...