Last active 1741877163

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

Revision e38ad0d9a41860d128e2912422105d80a777a28c

.bash_aliases Raw
1alias install_no="sudo pacman -Sy"
2alias install_ya="yay -S --noconfirm"
3
4
5# Compress a video with CUDA acceleration (GPU from NVIDIA is required)
6function reducevideo {
7 ffmpeg -hwaccel cuda -i "$1" -c:v libx265 -vtag hvc1 -c:a copy "$2"
8}
9
10alias reducevideo="reducevideo"
11
12
13# Download videos from YouTube in full HD. Creates an JSON file with all the information about the video, includes the chapters, and more.
14function ytdl {
15 yt-dlp --check-formats --progress -f "bv*[height<1080][ext=mp4]+ba" --write-info-json --embed-metadata --convert-thumbnail jpg --embed-thumbnail --embed-chapters --embed-info-json --sponsorblock-mark all -o "/mnt/Storage/YouTube/videos/%(channel)s/%(upload_date>%Y-%m-%d)s - %(title)s.%(ext)s" "$1"
16}
17
18alias ytdl="ytdl"
19
20
21# Download a video from YouTube and convert it to a MP3 file. Embed the cover to the file.
22function ytdla {
23 yt-dlp --no-call-home --no-part --add-metadata --embed-thumbnail --audio-format "mp3" --extract-audio --format bestaudio/best -x -w -o "/mnt/Storage/YouTube/audio/%(uploader)s/%(upload_date>%Y-%m-%d)s - %(title)s (%(id)s).%(ext)s" "$1"
24}
25
26alias ytdla="ytdla"
27
28
29# Compress an image by reducing size and quality and remove all metadata. Inspired from Telegram.
30function reduceimage {
31 convert -resize 2000x2000 -quality 70 "$1".jpg "$1"-r.webp
32 exiftool -overwrite_original -all= "$1"-r.webp
33}
34
35alias reduceimage="reduceimage"