You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
397 B
JavaScript

/* eslint no-console: 0 */
const Prism = require('../');
const fs = require('fs');
const prism = new Prism();
const transcoder = prism.transcode({
type: 'ffmpeg',
media: './test/test.mp3',
ffmpegArguments: [
'-analyzeduration', '0',
'-loglevel', '0',
'-f', 's16le',
'-ar', '48000',
'-ac', '2',
],
});
transcoder.output.pipe(fs.createWriteStream('./test/test.pcm'));