ffmpeg compress alias

This commit is contained in:
Ivan Dimitrov 2023-11-19 13:29:07 +02:00
parent 3c496153c0
commit 834a8a27a1

View File

@ -11,6 +11,7 @@
PASSWORD_STORE_DIR = "$HOME/.password-store"; PASSWORD_STORE_DIR = "$HOME/.password-store";
}; };
shellAliases = { shellAliases = {
compress = "ffmpeg -vcodec libx265 -crf 28 compressed.mp4 -i";
cal = "cal $(date +%Y)"; cal = "cal $(date +%Y)";
ssh = "TERM=xterm-256color ssh"; ssh = "TERM=xterm-256color ssh";
GG = "git add . && git commit -m 'GG' && git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)"; GG = "git add . && git commit -m 'GG' && git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)";