Son aktif a month ago

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

Revizyon 48d05ea

.bash_aliases Ham
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. Inspired 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"