Compare commits

...

6 Commits

Author SHA1 Message Date
Jan Jastrow
b9fce71df9 pushover notifiction after ffmpeg script by default 2024-08-10 00:53:03 +02:00
Jan Jastrow
0f3778ba72 Change order of parameters 2024-08-10 00:50:58 +02:00
Jan Jastrow
1c10548a77 only offer pushover if token variable set 2024-08-10 00:50:36 +02:00
Jan Jastrow
4edf109dcd rename png2jpeg function 2024-08-10 00:50:08 +02:00
Jan Jastrow
49b9c9f0d2 Fix typo, fix if condition 2024-08-10 00:49:46 +02:00
Jan Jastrow
6a4d49cb73 Add custom CRF to AV1 functions 2024-08-10 00:28:47 +02:00
2 changed files with 21 additions and 15 deletions

View File

@ -80,10 +80,11 @@ ff-x264-scale540p() {
# Recompress input MP4 to 720p AV1 MP4 (copy audio)
ff-av1-scale720p() {
local crf=${1-23}
for input in *.mp4; do
if [[ -f "$input" ]]; then
tempfile="temp_${input%.mp4}"
ffmpeg -hide_banner -loglevel info -i "$input" -vf format=yuv420p10le,scale=1280:-2 -c:v libsvtav1 -preset 6 -crf 23 -g 30 -svtav1-params tune=0 -c:a copy -c:s copy "$tempfile.mp4"
ffmpeg -hide_banner -loglevel info -i "$input" -vf format=yuv420p10le,scale=1280:-2 -c:v libsvtav1 -preset 6 -crf "$crf" -g 30 -svtav1-params tune=0 -c:a copy -c:s copy "$tempfile.mp4"
if [[ $? -eq 0 ]]; then
mv "$input" "_$input"
mv "$tempfile.mp4" "$input"
@ -93,14 +94,16 @@ ff-av1-scale720p() {
fi
fi
done
pushover "FFmpeg done ✔"
}
# Recompress input MP4 to 540p AV1 MP4 (copy audio)
ff-av1-scale540p() {
local crf=${1-23}
for input in *.mp4; do
if [[ -f "$input" ]]; then
tempfile="temp_${input%.mp4}"
ffmpeg -hide_banner -loglevel info -i "$input" -vf format=yuv420p10le,scale=960:-2 -c:v libsvtav1 -preset 6 -crf 23 -g 30 -svtav1-params tune=0 -c:a copy -c:s copy "$tempfile.mp4"
ffmpeg -hide_banner -loglevel info -i "$input" -vf format=yuv420p10le,scale=960:-2 -c:v libsvtav1 -preset 6 -crf "$crf" -g 30 -svtav1-params tune=0 -c:a copy -c:s copy "$tempfile.mp4"
if [[ $? -eq 0 ]]; then
mv "$input" "_$input"
mv "$tempfile.mp4" "$input"
@ -110,6 +113,7 @@ ff-av1-scale540p() {
fi
fi
done
pushover "FFmpeg done ✔"
}
#

View File

@ -39,18 +39,20 @@ function manp() {
man -t $1 | pstopdf -o $TMPDIR/$1.pdf && open $TMPDIR/$1.pdf && sleep 1 && rm $TMPDIR/$1.pdf
}
# pushover notification
function pushover() {
curl -s \
--form-string "token=$pushover_token" \
--form-string "user=$pushover_user" \
--form-string "title=$HOST" \
--form-string "message=$1" \
https://api.pushover.net/1/messages.json
}
# Send pushover notification (if set)
if [[ -z "$pushover_token" ]]; then
function pushover() {
curl -s \
--form-string "token=$pushover_token" \
--form-string "user=$pushover_user" \
--form-string "title=$HOST" \
--form-string "message=$1" \
https://api.pushover.net/1/messages.json
}
fi
# png to jpg 95
function png2web() {
# png to jpeg 95
function png2jpeg() {
findpath=$1
: "${findpath:="."}"
find "$findpath" -name '*.png' | while read -r f ; do
@ -63,7 +65,7 @@ function png2web() {
}
function jpeg1024() {
magick "$1" -resize '1024x1024\>' -background black -flatten TGA:- | cjpeg -targo -quality 90 -optimize -progressive -outfile "$1".jpg
magick "$1" -resize '1024x1024\>' -background black -flatten TGA:- | cjpeg -targo -optimize -progressive -quality 90 -outfile "$1".jpg
}
# Make PDFs look like scanned
@ -105,7 +107,7 @@ function dl() {
echo "usage: dl url (directory)"
return
fi
if [[ -x $(which aria2) ]]; then
if [[ -x $(which aria2c) ]]; then
aria2c --dir="$HOME/Downloads" --continue=true --max-connection-per-server=5 "$1"
else
(cd "$HOME/Downloads" && curl -O "$1")