This media is not supported in your browser
VIEW IN TELEGRAM
creepy experiment with a flashlight and cellular automaton on bright pixels
— for this to work, you need an integer number of quotes"
— r u drunk?
— r u drunk?
cheat sheet for quick video edits
trim to first 10 seconds:
trim from 24 seconds in, for 10 seconds:
slow down video (e.g., 2x slower):
speed up video (e.g., 1.3x faster):
resize video to 700px wide, keeping aspect ratio:
combine resize and speed up options:
remove audio:
get detailed video file info:
trim to first 10 seconds:
ffmpeg -i input.mp4 -t 10 output.mp4trim from 24 seconds in, for 10 seconds:
ffmpeg -i input.mp4 -ss 24 -t 10 output.mp4slow down video (e.g., 2x slower):
ffmpeg -i input.mp4 -vf "setpts=PTS*2" output.mp4speed up video (e.g., 1.3x faster):
ffmpeg -i input.mp4 -vf "setpts=PTS/1.3" output.mp4resize video to 700px wide, keeping aspect ratio:
ffmpeg -i input.mp4 -vf "scale=700:-2" output.mp4combine resize and speed up options:
ffmpeg -i input.mp4 -vf "scale=700:-2,setpts=PTS/1.3" output.mp4remove audio:
ffmpeg -i input.mp4 -an -c:v copy output.mp4get detailed video file info:
ffprobe input.mp4❤1