Giter VIP home page Giter VIP logo

Comments (8)

zhuker avatar zhuker commented on July 18, 2024

Are you running the example unmodified?

Sent from my iPhone

On Dec 2, 2015, at 11:22, aaronkelly111 [email protected] wrote:

This is great work Alex, the speed is perfect. I've got a problem with the worker-example however, the resulting mp3 seems to have an intermittent rhythmic click presumably a side effect of the buffers getting joined together. It's not that noticeable but becomes more obvious when gain is applied afterwards.

Any ideas how to eliminate this, or somehow 'smooth/blend' the buffer edges into one another to achieve the same thing?


Reply to this email directly or view it on GitHub.

from lamejs.

aaronkelly6 avatar aaronkelly6 commented on July 18, 2024

Yeah, just running as is, nothing changed at all. It would probably be fine if I could use the resulting mp3 as is, but I need to normalize it up to a music standard 89dB. If you up the gain by running it though mp3gain (defaults to 89dB) or something similar then the clicking/cracking becomes much more obvious.

from lamejs.

kenbochr avatar kenbochr commented on July 18, 2024

I also want to say that this is a great job! But I am also experiencing small, repetitive clicking noises when recording with the mic.html example. It works fine though with the index.html converter example.

from lamejs.

kenbochr avatar kenbochr commented on July 18, 2024

I have recorded an oscillator and It looks like there are missing 5 ms every 650 ms. Here's an example on a cut out of the wave form. It should have been a smooth sine curve:
screenshot_2

from lamejs.

zhuker avatar zhuker commented on July 18, 2024

Now that's a great piece of research!
Thanks

Sent from my iPhone

On Dec 6, 2015, at 12:00, Kenneth Bo Chritsensen [email protected] wrote:

I have recorded an oscillator and It looks like there are missing 5 ms every 650 ms. Here's an example on a cut out of the wave form. It should have been a smooth sine curve:


Reply to this email directly or view it on GitHub.

from lamejs.

kenbochr avatar kenbochr commented on July 18, 2024

Ah - got it. In worker-realtime.js, the for statement didn't run through all samples.
So in the function encode:
Change: for (var i = 0; remaining >= maxSamples; i += maxSamples){
To: for (var i = 0; remaining >= 0; i += maxSamples) {

from lamejs.

aaronkelly6 avatar aaronkelly6 commented on July 18, 2024

Awesome Ken! Just gave that a test and worked perfectly, great investigation and resolution!
You can generate a pull request if you want credit for the fix. If not it's a tiny edit for Alex.

Either way I'm happy to close this issue off.

from lamejs.

zhuker avatar zhuker commented on July 18, 2024

thanks @kenbochr @aaronkelly111

from lamejs.

Related Issues (20)

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.