Giter VIP home page Giter VIP logo

Comments (3)

zhuker avatar zhuker commented on July 18, 2024

how do you convert from float32array to int16array?

from lamejs.

zhuker avatar zhuker commented on July 18, 2024

do you use output = mp3encoder.flush(); ?

from lamejs.

sb2702 avatar sb2702 commented on July 18, 2024

var in16array = new Int16Array(float32array.buffer);

Actually: http://stackoverflow.com/questions/25839216/convert-float32array-to-int16array Using solution #1 was giving me garbage, it works using solution number #2, which I just tried

 var data = ...; /*new Float32Array();*/
 var len = data.length, i = 0;
 var dataAsInt16Array = new Int16Array(len);

while(i < len)
     dataAsInt16Array[i] = convert(data[i++]);

 function convert(n) {
        var v = n < 0 ? n * 32768 : n * 32767;       // convert in range [-32768, 32767]
        return Math.max(-32768, Math.min(32768, v)); // clamp
   }

You're right, the issue was in converting the float32 to Int16.

As a side note, since PCM input comes in float32, would it be possible to add a feature which detects if input is float32, and then convert it to Int16Array?

Thanks again for this library - it works wicked fast!

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.