audio
audio copied to clipboard
Create a blob from modified audio
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 a Blob (e.x new Blob([modified]) or smth like this)
});