最后活跃于 1741877163

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

修订 48d05ea4f4697ce667fd01a7e02ae71caf4a5214

.bash_aliases 原始文件
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"