Git Product home page Git Product logo

Comments (3)

kahst avatar kahst commented on June 2, 2024

I'm actually not sure what might cause this error. It seems like python_speech_features can't extract the spectrogram of certain files. Maybe there was a problem with opening the files and the 'sig' variable is empty. You could try to 'print sig.shape' before it's passed to 'getSpecFromSignal' to see if it's empty or None. If thats the case, we have to dig a bit deeper and figure out why psf can't open the files.

from acousticeventdetection.

Jackaryyy avatar Jackaryyy commented on June 2, 2024

Thanks for replying!
I've tried to print sig.shape, it turns out to be (176400, 2). I think it should be (176400,) after reading the code of "python_speech_features\sigproc.py", it seems that all the signal process functions assume the signal is one dimension, for example, there are two statements in sigproc.py:
slen = len(sig)
zeros = numpy.zeros((padlen - slen,)
padsignal = numpy.concatenate((sig,zeros))
the input of numpy.concatenate function must have the same dimension.
Thanks!

from acousticeventdetection.

kahst avatar kahst commented on June 2, 2024

So it's probably a stereo recording and you need to condense it to mono. This might be possible with PSF - if not, you can simply check if there is a second dimension and just remove it.

from acousticeventdetection.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.