

Ich wusste bis eben nicht, daß man Maimais auch durchspielen kann.
The very basic version only allowing for one filter would be EasyEffects. If you want to use different filters for different programs you can install some LV2-plugins or bundles and then configure LV2-Plugins directly in pipewire (which is a bit of a pain) or use a GUI plugin-host like Calf and probably some patchbay (qpwgraph, patchmatrix, …)
Or even better: try Carla, it may be a exactly what you want and can be remote controlled via MIDI or OSC
Ha! Na das nenne ich mal ne produktive Mittagspause ;p
Die versteckte Botschaft ist im letzten Bit pro Farbkanal…
python
from PIL import Image
from numpy import array, vectorize
i = array(Image.open("stego.png"))
n = vectorize(lambda p: (p & 0x01) * 255)(i)
Image.fromarray(n).save("antistego-py.png")
R
library(png)
i <- readPNG("stego.png")
for (p in 1:3) i[,,p] <- (i[,,p] * 255) %% 2
writePNG(i, "antistego-r.png")
imagemagick
magick stego.png -fx "(p * 255) % 2" antistego-magick.png
Die Zahl sagt, wieviele von 100 Frauen im Schnitt trotzdem schwanger werden. Kondom ist vermutlich wegen der hohen Fehlanwendungsquote so hoch? keine ahnung. aber die 1. Zeile sollte/müsste (is aber leider nich) 0 sein ;)