Skip to content

Instantly share code, notes, and snippets.

@TaylorBurnham
Created August 30, 2023 20:36
Show Gist options
  • Save TaylorBurnham/ac8f4eca694cbdadb287885d65d42cde to your computer and use it in GitHub Desktop.
Save TaylorBurnham/ac8f4eca694cbdadb287885d65d42cde to your computer and use it in GitHub Desktop.
Recursively convert OGG to WAV
# Recursively converts OGG files to single channel 16kHz WAV
find . -type f -iname '*.ogg' | \
parallel -j8 --bar --eta --progress \
ffmpeg -i "{}" -ar 16000 -ac 1 -c:a pcm_s16le {.}.wav
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment