Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
import vapoursynth as vs import math from vapoursynth import core from functools import partial def logic(clipa, clipb=None, mode='and', min=None, max=None, bits=None, flt=None, planes=None): """ mt_logic with some modifications Changing the output format crashes VS Editor whenever I try it so... buyer beware and all that. Works on single clips when clipb is an integer, float, or string ('pi', 'e', 'tau') New parameters 'min' and 'max' can be used to clip the final output 'max' default to the maximum allowed value when output is an integer format to avoid overflows with depths between 8 and 16 this isn't strictly necessary, just a safety check since it will crash if you try to preview it mode='andn' still has its arguments flipped (binary 'clipb and not clipa'), mostly for backward compatibility ~~~New modes for one or more clips~~~ dif - return abs(clipa - clipb) add/sub/mul/div/pow/root/log - for simple math operations ~~~New modes for a single clip only~~~ sqrt - equal to std.Expr('x 255 / sqrt 255 *') sin/cos/tan/asin/acos/atan - for trigonometric approximations This always uses std.Lut/std.Lut2 so everything is pre-calculated with very high precision The exact order things happen are as follows, simplified so you can understand it without understanding lookup tables: clipb = Depth(clipb, bits=clipa.bits_per_sample) # no actual processing on the clip lut = mode_function(clipa, clipb) # float processing in integer space clmp = clamp(lut, min, max) # limit values if specified return Depth(clmp, bits=bits, dither_type='none') # round to target bit depth & sample type """ def fill_lut(clipa, clipb, mode, bits, bitsa, bitsb, full, chroma, flt): scaleo = partial(scalef if full else scalebc if chroma else scaleb, i=bitsa, o=bits, f=flt) scaley = partial(scalef if full else scalebc if chroma else scaleb, i=bitsb, o=bitsa, f=False) setnumfmt = float if flt else round func = get_func(mode, bits, flt) lut = [] if isinstance(clipb, vs.VideoNode): for y in range(2 ** bitsb): for x in range(2 ** bitsa): lut.append(setnumfmt(clamp_value(scaleo(func(x, scaley(y))), mi, ma))) else: if isinstance(clipb, str): clipb = clipb.lower() clipb = math.pi if clipb in ('π', 'pi') else e if clipb=='e' else math.tau clipb = (1<<bitsa)-1 if mode == 'sqrt' else clipb for x in range(2 ** bitsa): lut.append(setnumfmt(clamp_value(scaleo(func(x, clipb)), mi, ma))) return lut f = clipa.format bitsa = f.bits_per_sample bitsb = None if not isinstance(clipb, vs.VideoNode) else clipb.format.bits_per_sample numplanes = f.num_planes mode = mode.lower() full = f.color_family in (vs.RGB, vs.YCOCG) planes = list(range(numplanes)) if planes is None else [planes] if isinstance(planes, int) else planes bits = bitsa if bits is None else bits flt = True if bits==32 else flt if flt is not None else False mi = min ma = max if not flt: mi = max(mi, 0) if mi is not None else 0 ma = min(ma, (1<<bits)-1) if ma is not None else (1<<bits)-1 lut = fill_lut(clipa, clipb, mode, bits, bitsa, bitsb, full, False, flt) lutc = fill_lut(clipa, clipb, mode, bits, bitsa, bitsb, full, True, flt) args = dict(bits=bits, floatout=flt) split = False for i in range(len(lut)): if lut[i] != lutc[i]: split = True if split and 0 in planes and any_of(planes, '>', 0): if isinstance(clipb, vs.VideoNode): clipa = core.std.Lut2(clipa, clipb, 0, lut, **args) return core.std.Lut2(clipa, clipb, planes.remove(0), lutc, **args) else: clipa = core.std.Lut(clipa, 0, lut, **args) return core.std.Lut(clipa, planes.remove(0), lutc, **args) else: if isinstance(clipb, vs.VideoNode): return core.std.Lut2(clipa, clipb, planes, lut, **args) else: return core.std.Lut(clipa, planes, lut, **args) #Internal def clamp_value(val, mi, ma): val = max(val, mi) if mi is not None else val return min(val, ma) if ma is not None else val def scalef(x, i, o, f): x /= (1<<i)-1 return x if f else x * ((1<<o)-1) def scaleb(x, i, o, f): return (x - (1<<(i-4))) / (219<<(i-8)) if f else x * (1<<i) / (1<<o) def scalebc(x, i, o, f): return (x - (1<<(i-4))) / (224<<(i-8)) if f else x * (1<<i) / (1<<o) def add(x, y): return x + y def sub(x, y): return x - y def mul(x, y): return x * y def div(x, y): return x / y def root(x, y): return math.pow(x, 1/max(y, 1)) def log(x, y): return math.log(x, y) def sin(x, y): return math.sin(x) def cos(x, y): return math.cos(x) def tan(x, y): return math.tan(x) def asin(x, y): return math.asin(x) def acos(x, y): return math.acos(x) def atan(x, y): return math.atan(x) def sqrt(x, y, z): return math.sqrt(x / y) if z is None else math.sqrt(x / y) * z def dif(x, y): return abs(x - y) def avg(x, y): return (x + y)/2 def get_max(x, y): return max(x, y) def get_min(x, y): return min(x, y) def bitwise_and(x, y): return x & y def bitwise_or(x, y): return x | y def bitwise_xor(x, y): return x ^ y def bitwise_andnot(x, y): x, y = list(bin(y))[2:], list(bin(x))[2:] while len(x) > len(y): y.insert(0, '0') while len(x) < len(y): x.insert(0, '0') out = '0b' for i in range(len(x)): out += '1' if (x[i], y[i]) == ('1', '0') else '0' return int(out, base=2) def any_of(arr, mode, val): def ts(x, m, y): return x in y if m=='in' else x not in y if mode=='not in' else isinstance(x, y) if mode=='isinstance' else not isinstance(x, y) mode = mode.lower() if mode in ('isinstance', 'not isinstance', 'in', 'not in'): for obj in arr: if ts(obj, mode, val): return True return False else: op_table = op_table = {'==': operator.eq, '!=': operator.ne, '>': operator.gt, '<': operator.lt, '>=': operator.ge, '<=': operator.le, 'is': operator.is_, 'is not': operator.is_not} return any(map(lambda x: op_table[mode](x, val), arr)) def get_func(mode, bits, flt): return {'and': bitwise_and, '&': bitwise_and, 'or': bitwise_or, '|': bitwise_or, 'xor': bitwise_xor, '^': bitwise_xor, 'andn': bitwise_andnot, 'andnot': bitwise_andnot, 'max': get_max, 'min': get_min, 'add': add, '+': add, 'sub': sub, '-': sub, 'mul': mul, '*': mul, 'div': div, '/': div, 'exp': math.pow, 'pow': math.pow, '**': math.pow, 'root': root, 'sin': sin, 'cos': cos, 'tan': tan, 'asin': asin, 'acos': acos, 'atan': atan, 'diff': dif, 'dif': dif, 'abs': dif, 'avg': avg, 'average': avg, 'mean': avg, 'sqrt': partial(sqrt, z=None if flt else (1<<bits)-1)}.get(mode, 'and')
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Untitled
9 hours ago | 1.88 KB
Untitled
9 hours ago | 0.67 KB
Untitled
9 hours ago | 3.33 KB
Untitled
9 hours ago | 1.00 KB
Untitled
9 hours ago | 0.33 KB
Untitled
9 hours ago | 1.55 KB
disable countdown timer in cart for drop pric...
PHP | 17 hours ago | 0.23 KB
bcachefs strange error
20 hours ago | 1.29 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!