Multiple changes
This commit is contained in:
14
scripts/.bin/deshake-video.sh
Executable file
14
scripts/.bin/deshake-video.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
# Encode a video in DVD quality (-crf 23) and use the video stabilization/deshaking plugin
|
||||
# https://ffmpeg.org/ffmpeg-filters.html#toc-vidstabdetect-1
|
||||
for VIDEO in "$@"
|
||||
do
|
||||
DEST=converted/$VIDEO
|
||||
if [ -f $DEST ]; then
|
||||
echo "File $VIDEO already converted"
|
||||
continue
|
||||
fi
|
||||
mkdir -p converted
|
||||
ffmpeg -i $VIDEO -vf vidstabdetect -f null -
|
||||
ffmpeg -i $VIDEO -vf vidstabtransform=smoothing=30:input="transforms.trf" -crf 23 $DEST
|
||||
done
|
Reference in New Issue
Block a user