This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Creates easy frame comparisons between multiple VapourSynth clips.""" | |
| __all__ = ['prep', 'comp', 'save'] | |
| __author__ = 'Dave <orangechannel@pm.me>' | |
| __date__ = '30 November 2019' | |
| import os | |
| from contextlib import contextmanager | |
| from functools import partial | |
| from math import floor, sqrt | |
| from random import randint, sample |