Decoder.js:371 Uncaught (in promise) RangeError: offset is out of bounds
at Uint8Array.set (<anonymous>)
at Broadway.decode (Decoder.js:371)
at index.js:8
Is that a bug from Broadway or my implementation is wrong ?
you have to feed single nal units to the decoder.
use the mp4 parser but dont instanciate a player, instead feed the nal units to the decode function of your decoder instance
Hello :)
I wants to get all frames from the fox.mp4 as pixels array for each frames, I don't want to display it in any canvas.
When looking in the code of Decode.js I may have figured out that decode() accept Uint8Array as parameters so I've made this code :
But I've got an error :
Is that a bug from Broadway or my implementation is wrong ?
Thanks a lot !