From 1c281cead5b3464df1cbb43ba609807626ecfb3a Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Sat, 8 Jan 2022 03:14:30 +0000 Subject: [PATCH] style(u/bk_export_audio.sh):Minor comment --- unitproc/bk_export_audio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unitproc/bk_export_audio.sh b/unitproc/bk_export_audio.sh index 5c615e8..7befc0b 100755 --- a/unitproc/bk_export_audio.sh +++ b/unitproc/bk_export_audio.sh @@ -1,7 +1,7 @@ #!/bin/bash # Desc: Extracts audio from video files # Usage: bk_export_audio.sh [input_dir] ([output_dir]) -# Version: 0.0.1 +# Version: 0.0.2 declare -Ag appRollCall # Associative array for storing app status declare -Ag fileRollCall # Associative array for storing file status @@ -231,7 +231,7 @@ extract_audio_file() { # Extract audio file file_in_basename="$(basename "$file_in")"; ffmpeg -i "$file_in" -vn -acodec copy "$dir_out"/"$file_in_basename"."$file_in_ext"; -} +} # Create audio file from video file main() { script_pwd="$(pwd)"; -- 2.30.2