bash-folders/bash-folders-video-optimizer.sh

89 lines
2.1 KiB
Bash
Raw Normal View History

2023-04-04 09:13:39 +02:00
#!/usr/bin/env bash
# --
2023-04-18 12:56:23 +02:00
# Description: Script that watches when new videos are added to a folder and optimizes them.
2023-04-04 09:13:39 +02:00
# --
# Requirements: Install inotify-tools and ffmpeg
2023-05-02 16:18:26 +02:00
# Example Debian: $sudo apt install ffmpeg
2023-04-04 09:13:39 +02:00
# --
2023-04-19 22:03:36 +02:00
# Cron: @reboot bash-folders-video-optimizer.sh >/dev/null 2>&1 &
2023-04-04 09:13:39 +02:00
# --
# START
set -e
# VARIABLES
PROGNAME=$(basename "$0")
FOLDER_ORIGIN="$2"
EXTENSIONS_TO_WATCH=("mkv" "mp4" "avi" "mov")
2023-05-01 18:59:06 +02:00
MESSAGE_WAITING="optimizing_please_wait"
2023-04-04 09:13:39 +02:00
# FUNCTIONS
usage() {
if [ "$*" != "" ] ; then
echo "Error: $*"
fi
cat << EOF
Usage: $PROGNAME [OPTION]
2023-04-18 12:56:23 +02:00
Watches when new videos are added to a folder and optimizes them.
2023-04-04 09:13:39 +02:00
Options:
--folder [path] Folder path where new video will be monitored and optimized
--help Display this usage message and exit
EOF
exit 1
}
start() {
# Monitors the selected folder
2023-04-18 15:32:42 +02:00
inotifywait -m -e create,moved_to --format '%f' "$FOLDER_ORIGIN" |
2023-04-04 09:13:39 +02:00
while read -r filename; do
# Gets the file extension
extension="${filename##*.}"
# Checks if the extension is in the extension list
for ext in "${EXTENSIONS_TO_WATCH[@]}"; do
if [[ "$ext" = "$extension" ]]; then
# Check if the file name starts with "optimized"
if [[ "$filename" != optimized* ]]; then
2023-05-01 19:30:37 +02:00
filename_output="optimized_${filename%.*}.mp4"
2023-05-01 18:59:06 +02:00
# Displays a flat file of information
touch "$FOLDER_ORIGIN/$MESSAGE_WAITING"
# Convert the file to MP4 format using ffmpeg in /tmp/
2023-05-01 19:30:37 +02:00
ffmpeg -i "$FOLDER_ORIGIN/$filename" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -nostdin -shortest "/tmp/$filename_output"
2023-05-01 18:59:06 +02:00
# When finished move the optimized file
2023-05-01 19:30:37 +02:00
mv "/tmp/$filename_output" "$FOLDER_ORIGIN/$filename_output"
2023-05-01 18:59:06 +02:00
# Remove a flat file of information
rm "$FOLDER_ORIGIN/$MESSAGE_WAITING"
2023-04-04 09:13:39 +02:00
fi
fi
done
done
}
# CONTROLE ARGUMENTS
isArg=""
while [ $# -gt 0 ] ; do
case "$1" in
--help)
usage
;;
--folder)
isArg="1"
if [ $# -eq 2 ]; then
start
else
usage "You need to specify the path of the folder to watch."
fi
;;
*)
esac
shift
done
if [ -z $isArg ] ; then
usage "Not enough arguments"
fi