Skip to content

Instantly share code, notes, and snippets.

@MisterSirCode
Created December 23, 2022 03:59
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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