UNPKG

node-record-lpcm16

Version:
30 lines (24 loc) 785 B
module.exports = (options) => { const cmd = 'sox' let args = [ '--default-device', '--no-show-progress', // show no progress '--rate', options.sampleRate, // sample rate '--channels', options.channels, // channels '--encoding', 'signed-integer', // sample encoding '--bits', '16', // precision (bits) '--type', options.audioType, // audio type '-' // pipe ] if (options.endOnSilence) { args = args.concat([ 'silence', '1', '0.1', options.thresholdStart || options.threshold + '%', '1', options.silence, options.thresholdEnd || options.threshold + '%' ]) } const spawnOptions = { } if (options.device) { spawnOptions.env = { ...process.env, AUDIODEV: options.device } } return { cmd, args, spawnOptions } }