Grumpy
Grumpy

Reputation: 2243

recorder.js change bit depth, from 16 bits to 24 bits

The recordings done with recorder.js are done in 44,100 Hz, 16 bits. How can I change that to 44,100 Hz, 24 bits?

 var worker = new Worker(config.workerPath || WORKER_PATH);
        worker.postMessage({
            command: 'init',
            config: {
                sampleRate: this.context.sampleRate
            }
        });

Could I add it somehow to the configuration settings?

Upvotes: 1

Views: 81

Answers (0)

Related Questions