Manuel Astudillo
Manuel Astudillo
If we can create some kind of wrapper around dev/video0 to generate AVFrames objects, then I suppose it should be possible.
can you try using a different backend, such as memory, just to debug and see if the problem is mongo related or something else?
I am not really sure what is the problems you are having but If the callback at for example `allow` is not being called then there is a good chance...
sorry but I am not able to provide the kind of support that you are requesting...
All the backends work exactly the same, if it works with the memory backend you don't need to do anything special with the other backends.
I can provide you with the dockerfile commands that I use to build navcodec on Ubuntu 14.04, hope it helps: ``` RUN apt-get update # Install build tools RUN apt-get...
I would create a temporary buffer, maybe 8Kbs, and then grow a destination buffer (re-alloc & copy). For tiny objects it should be much faster than now. For larger ones...
I will not really have time in the short term. I saw that this project uses the buffer approach, and it is very fast according to their benchmarks: https://github.com/phretaddin/schemapack/blob/master/schemapack.js
@davalapar I am wondering, any insights on why decode did not get any improvement? Also, do you have benchmarks compared to JSON. stringify/parse? JSON is currently the fastest serializer for...
@davalapar I think these are really interesting results. In some cases even faster than JSON, very encouraging.