Skip to content

Instantly share code, notes, and snippets.

@MisterSirCode
Created December 23, 2022 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MisterSirCode/3af3fa8a4834bf3823ad8df907ab332d to your computer and use it in GitHub Desktop.
Save MisterSirCode/3af3fa8a4834bf3823ad8df907ab332d to your computer and use it in GitHub Desktop.
Bulk convert WAV to CAF and sustain directory structure
#!/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