My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change file pick method to fzf in ffmpeg.cheat

Lily Hannah 829b6a7c 98e56b57

+5 -1
+5 -1
images/ffmpeg.cheat
··· 1 1 % ffmpeg 2 2 3 3 # Convert a .gif into an animated .avif 4 - ffmpeg -i "<file_name>.gif" -strict -1 -f yuv4mpegpipe -pix_fmt yuva444p - | avifenc --stdin "<file_name>-c.avif" 4 + ffmpeg -i "<gif_file>" -strict -1 -f yuv4mpegpipe -pix_fmt yuva444p - | avifenc --stdin "<gif_file_convert>-c.avif" 5 + 6 + 7 + $ gif_file: fd -tf --maxdepth 1 --glob "*.gif" . | fzf 8 + $ gif_file_convert: echo "<gif_file>" | sed -e 's/\.gif *$//'