Skip to content

Instantly share code, notes, and snippets.

@tatmos
Created December 13, 2021 03:32
Show Gist options
  • Save tatmos/a8bcec6d10bc7de55df9bb50c1a57c1f to your computer and use it in GitHub Desktop.
Save tatmos/a8bcec6d10bc7de55df9bb50c1a57c1f to your computer and use it in GitHub Desktop.
C:/test以下にあるSDIR,aifをffmpeg利用してwav変換し、C:/test/out/以下に出力するバッチ
for /R "C:/test" %%f in (*.SDIR) do ffmpeg -i "%%f" -acodec pcm_s16le -f wav "C:/test/out/%%~nf.wav"
for /R "C:/test" %%f in (*.aif) do ffmpeg -i "%%f" -acodec pcm_s16le -f wav "C:/test/out/%%~nf.wav"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment