feat(user/mp4_make480.sh):Do .MP4 as well as .mp4 files
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Thu, 11 Apr 2024 19:02:55 +0000 (19:02 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Thu, 11 Apr 2024 19:02:55 +0000 (19:02 +0000)
user/mp4_make480.sh

index abe5120a888f5b6b71770e477320e7137426945e..e460449bc65a3aa0ad7dab7ca27053aedecbdbcf 100644 (file)
@@ -5,7 +5,7 @@
 #        arg2  dir  output dir (optional)
 # Output: dir   ./out/
 #         file  ./out/[files]_480.mp4
-# Version: 0.1.0
+# Version: 0.1.1
 # Depends: GNU parallel 20161222, ffmpeg 4.3.6-0
 # Ref/Attrb: [1]: FFmpeg wiki: https://trac.ffmpeg.org/wiki/Scaling
 declare -g dir_in dir_out;
@@ -24,7 +24,7 @@ check_input() {
     declare -p dir_in dir_out;  # debug
 };
 convert_video() {
-    find "$dir_in" -mindepth 1 -maxdepth 1 -type f -name "*.mp4" | \
+    find "$dir_in" -mindepth 1 -maxdepth 1 -type f -iname "*.mp4" | \
         parallel job_ffmpeg "{}" "$path_out";
 };
 job_ffmpeg() {