Oliver Jones

Results 30 comments of Oliver Jones

Here's a pr to handle canvas sizing. https://github.com/mbebenita/Broadway/pull/184

Have you tried disabling webGL and getting the decoder to generate RGBA and the player to draw it on canvases?

Your encoder must use the Baseline profile of AVC/H.264, and must use CAVLC (Huffman-style) coding rather than CABAC (arithmetic) coding.

Both mp4 and webm carry the actual video source dimensions in their preambles.

As a (very happy) user of ws, I respectfully suggest that it makes sense to keep it in userland for a while longer. Why? 1. It's still undergoing active, and...

MediaRecorder generates streaming Matroška. It's [not considered seekable](https://www.matroska.org/technical/streaming.html). It's hard to imagine how a stream of indeterminate length, like the ones generated by MediaRecorder, could usefully be made seekable. Some...

Every Cluster, in the webm generated by the Chromium MediaRecorder class, starts with a key frame aka IDR (Instantaneous Decoder Refresh) frame.

There's a whole mess of header data at the beginning of the Matroška (EBML) file that's necessary to make sense of the data in Clusters. I've never had success trying...

I needed ebml decoding in a browser. Browserify unfortunately didn't work; it didn't do the right thing on some streams stuff. So, I tweaked the resulting .js file. It's in...

I'll take a looksee at the updated docs for the updated ebml decoder. Might be over the coming weekend.