plucked / html5-audio-editor

A small audio editor written in html5 and javascript without usage of external plugins
260 stars 90 forks source link

Fix for larger files and Float32Array compatibility #10

Closed qnstie closed 8 years ago

qnstie commented 8 years ago

Hi,

The proposed updates fix:

  1. A problem with loading larger audio files (the loop+array.push you used cause browser crash - replacing with array.slice does the trick).
  2. A problem with all the editing functions (crashing in audiosequence trim/merge/clone - these functions used methods of array, not TypedArray (and AudioContext returns Float32Array now)).

Thanks for your good work!

Pawel