>>
|
No. 36645
[Edit]
I was curious enough to look up exactly what those encoders do, obviously one part is the tweaking the actual hyperparameters for the encoder (e.g. compression level, crf, etc.) but that part is boring and I'm skeptical that you really get that much extra compression beyond a certain point, especially when disk space is relatively cheap so an extra 50MB is nothing.
Then the other part is the pre-processing of the input source (probably either transport cap, webrip, BD source, or someone else's encode) before you encode it with filters. This part is theoretically easy to understand, basically just applying standard image-processing filters (or if you want to be fancy temporal filters as well), but wow is the actual software they use a mess. You'd think that there's be some nice standard library of image-processing filters, and then community packages or something, complete with documentation as to what exactly the filter is doing from a signal processing perspective. But no, instead it seems to be a mess of poorly documented transforms you just pipeline together.
Like say you want to do some antialiasing on an image. In a sane world you'd assume there's some central repository of filter people have contributed, and it would provide an overview of what exactly it does in terms of image processing, with some example before/after shots. This is what you'd expect in the programming world whenever you have 3rd party libraries, and even domain-specific languages like R and LaTeX have high-quality documentation for packages. But that's not the case at all here apparently, the standard for VaporSynth (or AviSynth) functions is to just chuck them onto a forum. If you're lucky, they might even explain in pseudo-code how they work, but almost none of them will bother to even include a visual before/after comparison. The only examples I could find are for outdated AviSynth [1, 2, 3].
[1] https://www.animemusicvideos.org/guides/avtech31/post-qual.html
[2] https://www.aquilinestudios.org/avsfilters/
[3] https://guideencodemoe-mkdocs.readthedocs.io/encoding/video-artifacts/
|