Code Monkey home page Code Monkey logo

simplecodec's People

Contributors

jonboley avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

simplecodec's Issues

Tweaks

Suggestions from Alberto:

First of all you can simplify your code using only half of the FFT (you use the double spectrum for a long part of your code)
for example:
peak_count=2:length(centers(1:length(centers)/2))
instead of
peak_count=2:length(centers)
Also you have this line:
big_mask = max(big_mask, Schroeder(centers(peak_count)*(Fs/2)/N, fft_spl((peak_count)) , 14.5+bark(centers(peak_count)*(Fs/2)/N), N) );
which should have
fft_spl(centers(peak_count))
I think, funny enough it still works fine...
Also for some reason you divide by 2 at the end, which lowers the amplitude. It's not needed and you get normal amplitude
wavwrite(x3/2, Fs, decoded_filename);
becomes
wavwrite(x3, Fs, decoded_filename); %compensate for the lack of volume somewhere

Poor audio quality at low bit rates

Hmm, the masking threshold doesn't seem right.
I think it should be calculated as:

big_mask = max(A,Schroeder(Fs,N,centers(1)*Fs/N,fft_spl(centers(1)), 14.5+bark(centers(1)*Fs/N)));
for peak_count=2:sum(centers*Fs/N<=Fs/2)
    big_mask = max(big_mask,Schroeder(Fs,N,centers(peak_count)*Fs/N,fft_spl(centers(peak_count)), 14.5+bark(centers(peak_count)*Fs/N)));
end

but this seems to result in horrible audio quality...

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.