audio
audio copied to clipboard
Class for high-level audio manipulations [NOT MAINTAINED]
Current API comprises various concepts and various contexts, mixing them all up does not work well. Let's try to analyze and clean them up, figure out the core value of...
Following https://github.com/audiojs/audio-buffer-list/issues/5. The current API approach is covered by a lot of similar components, it is destined to insignificant competition and questionable value. The main blocker and drawback is the...
Must implement async iterable interface to stream samples. `.slice` must return ref to initial buffer, not immutable clone. `.trim` and other modifiers must create diffs on the initial buffer, not...
My code is simply ``` const Audio = require('audio'); Audio.load('./test.mp3', (err, audio) => { //repeat slowed down fragment //audio.remove(3, 4.1) audio.save('edited-record.mp3') }) ``` and it causes the edited-record.mp3 to be...
Hi, Npm repo has v1.2.0 listed https://www.npmjs.com/package/audio Any plans to release v2.0 anytime soon? Thanks
Is this library support such things?
on npmjs I find https://www.npmjs.com/package/audio listing 1.2.0 without any documentation. on github, I find releases up to v2.0.0-1, but even those are from August 2016. so I wonder if this...
https://probe.audiotool.com/
Cover cases from https://andremichelle.github.io/neutrons/limiter.html
Hi! Is there any way to get a blob from modified audio? ``` Audio.decode(new Blob([someBlob]), (err, audio) => { const modified = audio.slice(0, 2.0); // here I want to get...