vsutil icon indicating copy to clipboard operation
vsutil copied to clipboard

A collection of general purpose Vapoursynth functions to be reused in modules and scripts

Results 4 vsutil issues
Sort by recently updated
recently updated
newest added

Not sure who is responsible for the vsrepo update, but posting here anyways. vsrepo offers version 0.5 of vsutil which is very outdated. Even the release version 0.6 is outdated...

#62 would be useful for audio output as well.

Not really needed as we also have a more detailed changelog but this can be seen all over the Python library docs and looks nice anyways. Since this repo almost...

```python """ https://github.com/HomeOfVapourSynthEvolution/havsfunc/blob/master/havsfunc.py#L5907 """ import math def cround(x): return math.floor(x + 0.5) if x > 0 else math.ceil(x - 0.5) def m4(x): return 16 if x < 16 else cround(x...