Skip to content

Instantly share code, notes, and snippets.

View Loskir's full-sized avatar
:bowtie:

Kirill Loskutov Loskir

:bowtie:
View GitHub Profile
@u-ndefine
u-ndefine / 50_lines.pde
Last active June 13, 2024 08:03
Sketch of my generative art, "50 Lines"
float decel(float x) { // as an easing function
return 1-(x-1)*(x-1);
}
void setup() {
background(255);
size(750,750,P2D);
PImage img = loadImage("image.png");
strokeWeight(2);
noFill();
@maximal
maximal / ffmpeg-hints.sh
Last active April 22, 2021 22:27
Шпаргалка по `ffmpeg`
# Слоумо
ffmpeg -i 'input.mp4' -f rawvideo -b 100000000 -vcodec rawvideo -s 1280x720 -y - | ffmpeg -f rawvideo -r 100 -s 1280x720 -i - -b 8000000 -y output.mp4
# Таймлапс из видео (ускорить видео)
## 0.125 — в 8 раз
ffmpeg -i input.mp4 -filter:v "setpts=0.125*PTS" -r 60 -an output.mp4
@neretin-trike
neretin-trike / stylus.md
Last active June 28, 2024 21:02
Туториал по CSS препроцессору Stylus