You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
});