diff --git a/mybashrc b/mybashrc index ef7bc29..9295e67 100644 --- a/mybashrc +++ b/mybashrc @@ -703,12 +703,13 @@ _CLEAN_PPA() { _STABILISE_VIDEO() { -for i in $PWD/*.MP4; do +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