Giter Site home page Giter Site logo

audio-fingerprinting's People

Contributors

hsyecheng avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

audio-fingerprinting's Issues

findComplexPeaks函数里寻找局部最大值点的逻辑似乎写错了

在FindPeaks.java的findComplexPeaks方法里有这样一段逻辑:

for(int k = 0; k < len; k ++){
float pi = data_power[k];
boolean add = true;
for(int j = 0; j < neighborRange; j ++) {
float pl,pr;

            if(k - neighborRange >= 0) {
                pl = data_power[k - neighborRange];
            }else pl = pi - 1;

            if(k + neighborRange < len) {
                pr = data_power[k + neighborRange];
            }else pr = pi - 1;

            if (pi < pl && pi < pr) {
                add = false;
            }
        }
        if(add) add(pi, k);
    }

===========================================
内层的循环变量j似乎是搜索的半径,然而在循环语句里都是用的neighborRange定值,这里似乎写错了。

Accuracy is missing

I wrapped the code in an android app.

  • song files are mono channel 16 bit signed little endian encoded via ffmpeg.
  • then I used it to create index on 50 wav files ~ 30 second each and stored them in mysql db.
  • I used android's audio recorder to generate PCM audio chunked in 6 second segments.

findings

  • it recognises static audio [ fan noise, people talking ]
  • while playing audio it provides random match of data

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.