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
In practice the ext data is probably garbage anyway in my case (I'm still trying to understand the file format) but figured I would mention it here if you think it should be fixed.
The text was updated successfully, but these errors were encountered:
If you run the following code:
I would expect
this.ext
to be[0, 0, 0, 16, 115, 116, 116, 115]
. Butthis.ext
isn't there.I've tracked the issue there:
The
avcC
box is created here:https://github.com/gpac/mp4box.js/blob/master/src/isofile-advanced-creation.js#L86
which calls the parse function but
this.size
andthis.hdr_size
are undefined.https://github.com/gpac/mp4box.js/blob/master/src/parsing/avcC.js#L10
So
toparse
here is NaN and it doesn't add the ext.https://github.com/gpac/mp4box.js/blob/master/src/parsing/avcC.js#L27
In practice the ext data is probably garbage anyway in my case (I'm still trying to understand the file format) but figured I would mention it here if you think it should be fixed.
The text was updated successfully, but these errors were encountered: