airikr / Compress images

0 polubień
0 forków
1 plików
Ostatnio aktywne 5 days ago
Use this command to compress an image and strip all metadata from it.
1 function reduceimage {
2 magick "$1" \
3 -resize "${2:-2000}x${2:-2000}>" \
4 -strip \
5 -quality 45 \
6 -define webp:lossless=false \
7 "${1%.*}-r.webp"
8 }

airikr / YouTube video downloader

0 polubień
0 forków
8 plików
Ostatnio aktywne 1 month ago
A YouTube downloader created by ChatGPT. See the docblock for more information

Preview not available

airikr / Download videos from YouTube (not AI, my own)

0 polubień
0 forków
1 plików
Ostatnio aktywne 1 month ago
This script downloads videos from 7 days to today from selected YouTube channels. Downloaded videos will be logged in download.txt to prevent re-downloading them.
1 #!/bin/bash
2 path="/path/to/youtube-folder"
3
4 sudo chown -R user:user "${path}"
5
6 yt-dlp --config-location "ytdlp-config.txt" -a "${path}/channels.txt"
7
8 echo
9 echo "Deleting JSON files"
10 echo
Nowsze Starsze