x265-720p-function

This commit is contained in:
Jan Jastrow 2024-08-25 02:07:19 +02:00
parent 51865ae6c7
commit d76591cf66

View File

@ -97,6 +97,25 @@ ff-x265-scale720p() {
pushover "FFmpeg done ✔" pushover "FFmpeg done ✔"
} }
# Recompress input MP4 to 720p x265 MP4 (copy audio)
ff-x265-scale720p() {
local crf=${1-20}
for input in *.mp4; do
if [[ -f "$input" ]]; then
tempfile="temp_${input%.mp4}"
ffmpeg -hide_banner -loglevel info -i "$input" -map 0 -c:v libx265 -x265-params strong-intra-smoothing=0:rect=0:aq-mode=1:rd=4:psy-rd=0.75:psy-rdoq=4.0:rdoq-level=1:rskip=2 -vf scale=1280:-2 -crf "$crf" -tag:v hvc1 -c:s copy -c:a copy -movflags faststart "$tempfile.mp4"
if [[ $? -eq 0 ]]; then
mv "$input" "_$input"
mv "$tempfile.mp4" "$input"
echo "Conversion successful: $input"
else
echo "Conversion failed for: $input"
fi
fi
done
pushover "FFmpeg done ✔"
}
# Recompress input MP4 to 720p AV1 MP4 (copy audio) # Recompress input MP4 to 720p AV1 MP4 (copy audio)
ff-av1-scale720p() { ff-av1-scale720p() {
local crf=${1-23} local crf=${1-23}