operating wrong enough – Telegram
operating wrong enough
91 subscribers
92 photos
35 videos
1 file
15 links
glitches of my life / @speginel
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
creepy experiment with a flashlight and cellular automaton on bright pixels
lace in space
noise() in p5js
🔥1
adorable facade in Yerevan, which is also a #reference
2
debugging ever first raymarched 3D object
(my mistake was to assume .33*3==1)
🔥1
— for this to work, you need an integer number of quotes"
— r u drunk?
just a pretty xorg glitch I fixed by removing intel video driver
2
cheat sheet for quick video edits

trim to first 10 seconds:
ffmpeg -i input.mp4 -t 10 output.mp4

trim from 24 seconds in, for 10 seconds:
ffmpeg -i input.mp4 -ss 24 -t 10 output.mp4

slow down video (e.g., 2x slower):
ffmpeg -i input.mp4 -vf "setpts=PTS*2" output.mp4

speed up video (e.g., 1.3x faster):
ffmpeg -i input.mp4 -vf "setpts=PTS/1.3" output.mp4

resize video to 700px wide, keeping aspect ratio:
ffmpeg -i input.mp4 -vf "scale=700:-2" output.mp4

combine resize and speed up options:
ffmpeg -i input.mp4 -vf "scale=700:-2,setpts=PTS/1.3" output.mp4

remove audio:
ffmpeg -i input.mp4 -an -c:v copy output.mp4

get detailed video file info:
ffprobe input.mp4
1