audiojs / audio

Class for high-level audio manipulations [NOT MAINTAINED]
MIT License
240 stars 9 forks source link

Create a blob from modified audio #56

Open mykolavlasov opened 6 years ago

mykolavlasov commented 6 years ago

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)
});