💾 Archived View for metasyn.pw › spellbook.gmi captured on 2023-03-20 at 17:42:48. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
Notes for things I find myself searching for over and over. I know they're faster to find here than somewhere else.
- convert a bunch of stils into a webm file
ffmpeg -framerate 30 -i name%4d.webp -c:v libvpx-vp9 -pix_fmt yuva420p -lossless 1 out.webm
- reverse
ffmpeg -i input.webm -vf reverse reverse.webm
- stitch two files together
> cat input.txt file 'one.webm' file 'two.webm' ffmpeg -f concat -i input.txt -c copy output.webm
- see [tkacz.pro] also
- rotate
convert INPUT_FILE -rotate "+90" OUTPUT_FILE
- resize
convert INPUT_FILE -resize 70% OUTPUT_FILE convert INPUT_FILE -resize 640x480 OUTPUT_FILE
use `mogrify` for processing multiple files at once generally
- invert colors
convert INPUT -channel RGB -negate OUTPUT
- make transparent
convert INPUT -transparent white OUTPUT
Gemini Links:
Web Links: