Compare commits

..

No commits in common. "master" and "3e76fc49b06ef126bf54c8c0401142cb28a16704" have entirely different histories.

2 changed files with 3 additions and 5 deletions

2
.gitignore vendored
View file

@ -1,2 +0,0 @@
archives/
previews/

View file

@ -8,8 +8,8 @@ check_dependencies() {
if ! mkdir -p "$preview_dir"; then if ! mkdir -p "$preview_dir"; then
echo "ERROR: Unable to create preview directory" echo "ERROR: Unable to create preview directory"
exit 1 exit 1
elif ! command -v ffmpeg xargs 2>&1 >/dev/null; then elif ! command -v ffmpeg 2>&1 >/dev/null; then
echo "ERROR: FFmpeg and xargs must be installed" echo "ERROR: FFmpeg must be installed"
exit 1 exit 1
fi fi
} }
@ -23,7 +23,7 @@ check_input() {
# Search for videos recursively using the MIME type # Search for videos recursively using the MIME type
find_videos() { find_videos() {
video_list=$(find ${search_dir} -type f -print0 | xargs -0 file -i | grep -oP '.*(?=:\s+video/)') video_list=$(find "${search_dir}" -type f -exec file -i {} \; | grep -oP '.*(?=: video/)')
echo "${video_list}" >&2 echo "${video_list}" >&2
} }