Created
December 23, 2022 03:59
-
-
Save MisterSirCode/3af3fa8a4834bf3823ad8df907ab332d to your computer and use it in GitHub Desktop.
Bulk convert WAV to CAF and sustain directory structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
shopt -s globstar | |
src_dir="audio" | |
dest_dir="audio_new" | |
for orig_path in "${src_dir}"/**/*.wav; do | |
new_path=${orig_path/$src_dir/$dest_dir} | |
dir_hier=${new_path%/*} | |
new_path=${new_path%.*} | |
mkdir -p "$dir_hier" | |
ffmpeg -i "$orig_path" "${dest_dir}.caf" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment