Created
August 30, 2023 20:36
-
-
Save TaylorBurnham/ac8f4eca694cbdadb287885d65d42cde to your computer and use it in GitHub Desktop.
Recursively convert OGG to WAV
This file contains hidden or 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
# 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