Kagami
Kagami
For some reason Edge doesn't like the second run of main function in the same worker and cancels it with `Out of memory`. Interesting enough, IE11 works fine in that...
See [here](https://github.com/Kagami/webm.js/blob/80559298e0e3bd4fd6f027e02545fe1eac3b77c4/src/encode/index.js#L93). This doesn't account for possible `-ss`.
IE11 doesn't like the current memory defaults (128M for decoder, 256M for encoder) and fails when trying to encode more than 1 second of sample (0.1 second works fine). VM...
Example video: https://www.youtube.com/watch?v=pBuZEGYXA6E Need to allow av01.xxx vcodec, fix sorting, update bundled ffmpeg/mkvinfo/youtube-dl. Also allow vp9.2 vcodec (HDR).
YouTube limits download speed for simple `wget $(youtube-dl -g id)` HTTP agents. Need to use workaround: https://github.com/rg3/youtube-dl/issues/15271#issuecomment-362834889 request library doesn't support it, need to either implement by hand (similar to...
Frames info might be parsed with `ffprobe -show_packets -of json` or even with minimalistic EBML parser (see [webmify](https://github.com/Kagami/webmify)). `mkvinfo.exe`: 5.9M packed, 19M unpacked. Probably not that much, so this is...
Need to just spawn `youtube-dl --update`.
wybm may drop one frame and the end because milliseconds are not properly rounded. There might be issues for first frame too.