Giter VIP home page Giter VIP logo

Comments (2)

chrisuehlinger avatar chrisuehlinger commented on July 1, 2024 7

Hey! I know it's been a couple years, but I just solved a similar problem and want to share my answer for future answer-googlers:

The arguments of new lamejs.Mp3Encoder() are: number of channels, sample rate, bit rate.

If you're using the default arguments in the docs (1 channel, 44100Hz sample rate, 128kbps bitrate) then your app will work fine on computers where the microphone is recording with a sample rate of 44100. However on some platforms (perhaps mobile, but I also ran into this when using a USB mic on Windows in Chrome) the sample rate is 48000Hz. In those cases, the encoder will output ~48 seconds of slowed down audio for every ~44 seconds of normal input audio, with the pitch being slightly lower as well.

You'll need to take the AudioContext you used for recording and check audioContext.sampleRate to find out what sample rate was used for recording. Set that as the sample rate for lamejs.

Note: You can't guess the sample rate from looking at the browser, OS, or anything else. It can change from one AudioContext to another even within the same browser, depending on how the user's microphone and sound drivers are configured for each microphone they have.

from lamejs.

patrickmonteiro avatar patrickmonteiro commented on July 1, 2024

@chrisuehlinger The best explanation I found on the internet. I tested your solution and it worked perfectly.
Thanks!

const audioCtx = new AudioContext();

const recorder = new Recorder({
  format: 'mp3',
  bitRate: 128,
  sampleRate: audioCtx.sampleRate || 44100,
})

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.