From a081d3fd236811e03cb329d9d1a4cde0ca3c7fa2 Mon Sep 17 00:00:00 2001 From: Dave Rice Date: Sat, 8 Jul 2023 12:48:19 -0400 Subject: [PATCH] recursive processing --- astataudit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astataudit b/astataudit index 1a104c5..0387a41 100755 --- a/astataudit +++ b/astataudit @@ -869,7 +869,7 @@ elif [[ -d "${INPUT}" || ( -f "${INPUT}" && "${INPUT_EXT}" == "txt" ) ]] ; then else _report -d "Skipping: ${FILE} (no audio stream found)" fi - done < <(find "${INPUT}" -maxdepth 1 -type f ! -name ".*") + done < <(find "${INPUT}" -type f ! -name ".*") else while read FILE ; do IS_AUDIO="$(ffprobe "${FFMPEG_VERBOSE[@]}" -v 0 "${FILE}" -show_entries stream=codec_type -select_streams a:0 -of default=nk=1:nw=1)"