diff --git a/code/Bash/find_ffmpeg.sh b/code/Bash/find_ffmpeg.sh new file mode 100644 index 0000000..63cb2a9 --- /dev/null +++ b/code/Bash/find_ffmpeg.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +find . -name "*.avi" -exec sh -c 'ffmpeg -n -i "$1" -c:v libx264 -preset veryfast -c:a copy $(basename "$1" .avi).mp4' _ {} \;