Mark Schmale

Results 48 comments of Mark Schmale

I don't think we really can use bignum here because we are using the read ints as buffer sizes and I highly doubt that you can have buffers bigger than...

Maybe we should use things like BigNum here: https://github.com/themasch/node-ebml/blob/master/lib/ebml/tools.js#L197

One could try to map this to multiple buffers but that changes the API again for a use case that may never happen. Again, that would be a segment of...

Heyho. Thanks for the input. I'll see if I get this to run with browserify but the focus for this project is clearly server-side. We already discussed this in #2....

Currently: no. I didn't try to browserify it yet.

The current `example.js` from master gives me this: ``` [ 'tag', { tag: 35, tagStr: 'a3', type: 'b', name: 'SimpleBlock', start: 12105, end: 12112, dataSize: 5, data: , track: 2,...

I really should release 3.0 soon. Need to find some time for this.

Hi @publicocean0. I haven't found a webm/mkv that contains a Date block yet. Do you have any publicy available example files for that?

``` ANOBENCH version 2 | NANOBENCH version 2 > /usr/bin/node bench/tools.js | > /usr/bin/node bench/tools.js | # read varint(1b) >>> # read varint(1b) ok ~9.34 ms (0 s + 9339659...

Okay, the log2 solution seems to be horrible slow on node. the if/else one is actually faster in a microbenchmark, but delivers no measurable gain when decoding a 600mb video...