inkeso

joined 9 months ago
[–] inkeso@feddit.org 5 points 2 months ago

Ich wusste bis eben nicht, daß man Maimais auch durchspielen kann.

4
wir🎼🎶iel (www.youtube.com)
 

ich wünschte eddy würde sein kram auf ein(er|igen) nichtkapitalistischen (bestenfalls föderierten) alternativseite(n) spiegeln. es behagt mir nicht hier auf eine kapitalistenseite zu verweisen, gleichzeitig möchte ich uns dieses eingängige kampflied aber nicht auch nicht vorenthalten...

[–] inkeso@feddit.org 3 points 4 months ago (1 children)

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

[–] inkeso@feddit.org 1 points 5 months ago (2 children)

Ha! Na das nenne ich mal ne produktive Mittagspause ;p

auflösung

aber wie?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