mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
const fs = require('fs');
|
|
const OggOpusTransform = require('../src/opus/OggOpus');
|
|
const opus = require('node-opus');
|
|
|
|
const decoder = new opus.Decoder(48000, 2, 1920);
|
|
|
|
const transformer = new OggOpusTransform();
|
|
|
|
fs.createReadStream('./test/ts.ogg')
|
|
.pipe(transformer)
|
|
.pipe(decoder)
|
|
.pipe(fs.createWriteStream('./output.opus'));
|