Last active 1741877163

These are my number one bash scripts. I can't live without them.

Revision cc2b4d635ef97f8203f705e5b3e2345c9604956b

.bash_aliases Raw
1# Compress a video with CUDA acceleration (GPU from NVIDIA is required)
2function reducevideo {
3 ffmpeg -hwaccel cuda -i "$1" -c:v libx265 -vtag hvc1 -c:a copy "$2"
4}
5
6alias reducevideo="reducevideo"
7
8
9# Compress an image by reducing size and quality and remove all metadata. Inspiration from Telegram.
10function reduceimage {
11 convert -resize 2000x2000 -quality 70 "$1" "$1".r && exiftool -all= "$1".r && exiftool -delete_original "$1".r
12}
13
14alias reduceimage="reduceimage"