Ramon Caldeira
Ramon Caldeira
@huiyiqun I stumbled upon the same problem and managed to solve it by changing the encoder. I replaced `libx264` with `libopenh264`. You can list the encoders available on your system...
@akermen I also faced this exception in my test stream. It seems that this error happens in the Mp4Muxer component, in the line `moof.copy (data, 0)`. You can debug the...
I am no streaming expert, but what about introducing an exponential average in the expression below? https://github.com/AxisCommunications/media-stream-library-js/blob/d3ec6caec9a057e7cfca499869e14f308c955634/lib/components/mp4muxer/helpers/boxbuilder.ts#L220-L223 I think this way we could smooth out unexpected values. E.g. `beta *...