The current MediaEngine implementation is not optimised for speed (not even close π). It was rather done to just work and prove that what we are aiming to do is possible.
We can further improve the performance by avoiding the usage of ArrayBuffer.concat high level functions.
e.g.: we can use low-level DataView or consider using DataStream as in mp4box.js
The current MediaEngine implementation is not optimised for speed (not even close π). It was rather done to just work and prove that what we are aiming to do is possible.
We can further improve the performance by avoiding the usage of ArrayBuffer.concat high level functions.
e.g.: we can use low-level DataView or consider using DataStream as in mp4box.js