Need desired format of .wav In Recoder.js

眉间皱痕 提交于 2019-12-23 02:34:43

问题


I am using recorder.js to record audio. When I download .wav file it is 48KHz but I want in 16KHz, mono channel.

function init(config) {
            sampleRate = config.sampleRate; //to 16000
            numChannels = config.numChannels; //to 1
            initBuffers();
        }

It changes the recorded voice (like a voice of the robot).

Help me to get a voice in 16KHz, mono .wav file in a normal voice. (Thanx in Advance)

My Code Is Here

来源:https://stackoverflow.com/questions/49043887/need-desired-format-of-wav-in-recoder-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!