1
0
Fork 0

add stabilise

This commit is contained in:
VirtuBox 2019-12-16 12:48:51 +01:00
parent f83a7760b6
commit 8d9058a563
Signed by: virtubox
GPG Key ID: 22EB296C97BAD476
1 changed files with 10 additions and 0 deletions

View File

@ -701,6 +701,16 @@ _CLEAN_PPA() {
rm -f /etc/apt/sources.list.d/{jonathonf-ubuntu-backports*,jonathonf-ubuntu-ffmpeg-4*} rm -f /etc/apt/sources.list.d/{jonathonf-ubuntu-backports*,jonathonf-ubuntu-ffmpeg-4*}
} }
_STABILISE_VIDEO() {
for i in $PWD/*.MP4; do
echo "Processing vid $i ...${i%.*}"
ffmpeg -i "$i" -vf vidstabdetect=stepsize=6:shakiness=4:accuracy=15:result=/tmp/transform_vectors.trf -f null -
ffmpeg -i "$i" -vf vidstabtransform=input=/tmp/transform_vectors.trf:zoom=2:smoothing=10,unsharp=5:5:0.8:3:3:0.4 -c:v libx265 -crf 28 -c:a aac -b:a 128k "${i%.*}-stable.mp4"
rm /tmp/transform_vectors.trf
done
}
# enable color support of ls and also add handy aliases # enable color support of ls and also add handy aliases
# some more ls aliases # some more ls aliases
#alias wp='/usr/bin/wp --allow-root' #alias wp='/usr/bin/wp --allow-root'