cutAndShrinkVideo

This commit is contained in:
gutmet 2020-05-02 11:16:05 +02:00
parent 85a8688776
commit 6d0f3e3e0d
2 changed files with 9 additions and 1 deletions

8
cutAndShrinkVideo Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
cutFile="$(cutVideo $1 $2 $3)"
status=$?
if [ $status -eq 0 ]; then
shrinkVideo "$cutFile"
fi

View File

@ -12,4 +12,4 @@ outfile="$dir/$filename""Shrunk.mp4"
echo "$outfile"
ffmpeg -i "$fullpath" -s ega "$outfile"
ffmpeg -y -i "$fullpath" -s ega "$outfile"