From f86a577d262aaef078aa9c34f4bc176ad6d35c12 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Thu, 14 May 2020 17:08:55 -0400 Subject: [PATCH] Convert capitalized mp4 files --- scripts/convert-mp4-to-resolve.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/convert-mp4-to-resolve.sh b/scripts/convert-mp4-to-resolve.sh index de66776..d07fc55 100644 --- a/scripts/convert-mp4-to-resolve.sh +++ b/scripts/convert-mp4-to-resolve.sh @@ -4,6 +4,6 @@ mkdir -p ./converted # Convert files -for file in *.mp4; do +for file in *.mp4 *.MP4; do ffmpeg -i $file -acodec pcm_s16le -vcodec copy ./converted/${file%%.*}.mov done