Compare commits

..

No commits in common. "b9fce71df9c3f53391f43204b3d6c3c7e1193208" and "9f2b194021f54d1762d80c08b54a8fcb11946eae" have entirely different histories.

2 changed files with 15 additions and 21 deletions

View File

@ -80,11 +80,10 @@ 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 "$crf" -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 23 -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"
@ -94,16 +93,14 @@ 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 "$crf" -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 23 -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"
@ -113,7 +110,6 @@ ff-av1-scale540p() {
fi
fi
done
pushover "FFmpeg done ✔"
}
#

View File

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