Skip to content

Instantly share code, notes, and snippets.

@Keycatowo
Last active December 3, 2021 03:49
Show Gist options
  • Save Keycatowo/983be5ea8b4c033b37d06e2933b1f092 to your computer and use it in GitHub Desktop.
Save Keycatowo/983be5ea8b4c033b37d06e2933b1f092 to your computer and use it in GitHub Desktop.
bash-批量mp3轉wav
#!/bin/sh
mkdir -p output;
for i in ./*.mp3;
do
ffmpeg -i "$i" -f wav "output/${i}.wav";
done
cd output;
rename 's/\.mp3\.wav/\.wav/' *
# find *.mp3|xargs rm -rm #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment